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

:root {
    --green-dark: #074C24;
    --green-light: #62A613;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--green-dark);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo-img-header {
    height: 62px;
    width: auto;
    object-fit: contain;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}

.logo-img-footer {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--green-dark);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-300, #D1D5DB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-decoration: none;
    transition: all 0.2s;
}

.lang-link:hover {
    border-color: #9CDB6B;
    color: #9CDB6B;
}

.lang-link.active {
    border-color: var(--green-dark);
    color: var(--green-dark);
    background: rgba(7, 76, 36, 0.06);
}

.lang-divider {
    width: 1px;
    height: 16px;
    background: #9CDB6B;
}

@media (min-width: 769px) {
    .lang-link {
        width: 26px;
        height: 26px;
        font-size: 11px !important;
    }

    .lang-divider {
        height: 12px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.header-phone:hover {
    color: var(--green-light);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-dark);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.1s;
}

.header-cta:hover {
    background: #05632e;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-700);
    position: relative;
}

.mobile-menu-btn .icon-menu,
.mobile-menu-btn .icon-close {
    width: 24px;
    height: 24px;
    transition: opacity 0.25s, transform 0.25s;
}

.mobile-menu-btn .icon-menu {
    position: relative;
}

.mobile-menu-btn .icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    opacity: 0;
    transform: rotate(-90deg);
}

.mobile-menu-btn.active .icon-menu {
    opacity: 0;
    transform: rotate(90deg);
}

.mobile-menu-btn.active .icon-close {
    opacity: 1;
    transform: rotate(0);
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('main-hero.jpg') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: #9CDB6B;
}

.hero-content p {
    font-size: 29.3px;
    font-weight: 700;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-content p span {
    color: #9CDB6B;
}

.hero-mobile-img {
    display: none;
}

.hero-content .btn-primary {
    background: #66A813;
    color: #ffffff;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--green-dark);
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.hero-image-placeholder .emoji {
    font-size: 80px;
    margin-bottom: 16px;
}

.hero-image-placeholder span {
    font-size: 16px;
    opacity: 0.6;
    font-weight: 500;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    padding: 0;
    margin-top: -1px;
}

.stats-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stat-item {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    border-right: 1px solid var(--gray-100);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 28px;
    color: #66A813;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    background: rgba(98, 166, 19, 0.1);
    color: var(--green-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about .section-header {
    text-align: left;
    margin-bottom: 28px;
}

.about .section-tag {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
}

.about .section-header h2 {
    text-align: center;
}

.about .section-header p {
    max-width: 100%;
}

.about .section-header p + p {
    margin-top: 20px;
}

.about .section-header p:last-child {
    margin-bottom: -20px;
}

/* ===== ADVANTAGES ===== */
.advantages .section-header p {
    text-align: left;
    max-width: 100%;
}

.advantages {
    background: var(--gray-50);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--gray-100);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: rgba(7, 76, 36, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #66A813;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== HOW WE WORK ===== */
.how-we-work {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 16px rgba(7, 76, 36, 0.2);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 280px;
    margin: 0 auto;
}

/* ===== CATEGORIES CAROUSEL ===== */
.categories {
    background: var(--gray-50);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    min-width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

@media (min-width: 1025px) {
    .carousel-wrapper {
        padding: 0 56px;
    }

    .carousel-slide {
        min-width: 240px;
    }

    .category-img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--gray-100);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.category-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.category-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: #65A714;
    padding: 12px 8px;
    margin: 0;
    width: 100%;
}

.category-desc {
    display: none;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 2px solid var(--green-dark);
    background: var(--green-dark);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.carousel-arrow:hover {
    background: var(--white);
    color: var(--green-dark);
}

@media (min-width: 1025px) {
    .carousel-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-arrow.carousel-prev {
        left: 0;
    }

    .carousel-arrow.carousel-next {
        right: 0;
    }
}

/* ===== TRUST ===== */
.trust {
    background: var(--white);
}

.trust .section-header p {
    text-align: left;
    max-width: 100%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trust-card {
    background: linear-gradient(135deg, rgba(7, 76, 36, 0.04) 0%, rgba(98, 166, 19, 0.04) 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(7, 76, 36, 0.08);
}

.trust-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #9CDB6B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0C4522;
}

.trust-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
    color: var(--gray-500);
}

.testimonials .section-tag {
    background: rgba(98, 166, 19, 0.1);
    color: var(--green-light);
}

.testimonials .section-header h2 {
    color: var(--green-dark);
}

.testimonials .section-header p {
    color: var(--gray-500);
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews-carousel {
    overflow: hidden;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews-carousel-slide {
    width: 100%;
    flex-shrink: 0;
}

.reviews-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.reviews-carousel-wrapper .carousel-arrow {
    display: none;
}

.reviews-carousel-wrapper .carousel-arrow.carousel-prev {
    left: 0;
}

.reviews-carousel-wrapper .carousel-arrow.carousel-next {
    right: 0;
}

@media (min-width: 1025px) {
    .reviews-carousel-wrapper {
        padding: 0 56px;
        max-width: 75%;
        margin: 0 auto;
    }

    .reviews-carousel-wrapper .carousel-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    #who .fullwidth-content,
    #approach .fullwidth-content {
        text-align: left;
    }

    #who .divider,
    #approach .divider {
        margin: 0 0 28px;
    }

    #who .fullwidth-overlay,
    #approach .fullwidth-overlay {
        justify-content: flex-start;
        padding-left: 10%;
    }

    #who .fullwidth-content {
        margin: 0;
    }

}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-inner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-inner p {
    font-size: 18px;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-tagline {
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 32px;
}

.cta-inner .btn-primary {
    background: #65A714;
    color: #fff;
    padding: 18px 40px;
    font-size: 17px;
}

@media (min-width: 1025px) {
    .cta-overlay {
        justify-content: flex-start;
        padding-left: 10%;
    }

    .cta-inner {
        text-align: left;
        margin: 0;
    }

    .cta-inner .btn-primary {
        display: inline-block;
    }

    .cta-inner .divider {
        margin: 0 0 28px;
    }
}

/* ===== FAQ ===== */
.faq {
    background: var(--gray-50);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--green-dark);
}

.faq-toggle {
    font-size: 22px;
    color: var(--green-light);
    transition: transform 0.3s;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== FOOTER ===== */
.footer {
    background: #084A24;
    color: var(--white);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: var(--green-dark);
}

.footer-brand p {
    font-size: 14px;
    color: #CBCBCB;
    line-height: 1.7;
    max-width: 300px;
    margin-top: 20px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-col a {
    display: block;
    color: #CBCBCB;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green-light);
}

.footer-col a.messenger-btn {
    display: inline-flex;
    color: #ffffff;
}

.footer-col a.messenger-btn:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #CBCBCB;
}

.footer-contact-item .icon {
    font-size: 16px;
    min-width: 20px;
    color: #F3EEF6;
}

.messenger-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 30px;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.messenger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.messenger-btn i {
    font-size: 13px;
    color: #ffffff;
}

.messenger-viber {
    background: #7360F2;
}

.messenger-telegram {
    background: #2AABEE;
}

.messenger-whatsapp {
    background: #25D366;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.fullwidth-image {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.fullwidth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fullwidth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullwidth-content {
    max-width: 720px;
    text-align: center;
    color: #fff;
    padding: 32px 24px;
}

.fullwidth-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #62A613, #A3E635);
    border-radius: 2px;
    margin: 0 auto 28px;
}

.fullwidth-content p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 16px;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.who-list li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
    opacity: 1;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-list li i {
    color: var(--green-light);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #CBCBCB;
}
.footer-bottom span:last-child {
    margin-right: 26px;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-500);
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--gray-200);
}

.modal h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.modal > p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(98, 166, 19, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 8px;
}

.form-submit:hover {
    background: #05632e;
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px 80px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-mobile-img {
        display: block;
        max-width: 480px;
        margin: 0 auto;
        border-radius: 24px;
        overflow: hidden;
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .hero-mobile-img img {
        width: 100%;
        height: auto;
        display: block;
    }

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

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--gray-100);
    }

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

    .carousel-slide {
        min-width: 180px;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta.desktop {
        display: none;
    }

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

    .hero-inner {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .hero-mobile-img {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: -30px;
    }

    .section {
        padding: 60px 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .advantages-grid,
    .process-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .carousel-slide {
        min-width: 160px;
    }

    .carousel-wrapper {
        position: relative;
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .carousel-arrow.carousel-prev {
        left: 8px;
    }

    .carousel-arrow.carousel-next {
        right: 8px;
    }

    .reviews-carousel-wrapper .carousel-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .reviews-carousel-wrapper .carousel-arrow.carousel-prev {
        left: 8px;
    }

    .reviews-carousel-wrapper .carousel-arrow.carousel-next {
        right: 8px;
    }

    .cta-overlay {
        padding: 52px 24px 82px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom span:last-child {
        margin-right: 0;
    }

    .modal {
        padding: 28px;
    }

    /* Mobile language switcher below nav links */
    .lang-switcher {
        margin-top: 30px;
        justify-content: center;
    }

    .messenger-links {
        justify-content: center;
    }

    .fullwidth-content p {
        text-align: left;
    }

    #approach .fullwidth-content h2 {
        text-align: left;
    }

    #approach .divider {
        margin: 0 0 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--gray-100) !important;
    }

    .stat-item:last-child {
        border-bottom: none !important;
    }

    .carousel-slide {
        min-width: 140px;
    }

    .carousel-arrow {
        display: flex;
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        justify-content: center;
    }

    .messenger-links {
        gap: 6px;
    }

    .messenger-btn {
        padding: 5px 10px;
        font-size: 11px;
        gap: 4px;
    }

    .messenger-btn i {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .messenger-links {
        gap: 5px;
    }

    .messenger-btn {
        padding: 4px 8px;
        font-size: 10px;
        gap: 3px;
    }

    .messenger-btn i {
        font-size: 11px;
    }
}
