 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #FEFCF5;
            color: #1E2F2F;
            line-height: 1.4;
            scroll-behavior: smooth;
        }

        /* природная палитра: глубокий лесной зеленый, песчаный, акцент золотисто-медовый, свежий синий воды */
        :root {
            --deep-forest: #1A3A32;
            --sand-light: #F2E8CF;
            --gold-accent: #D9A13B;
            --lake-blue: #2B6F6B;
            --stone-gray: #4A5B5B;
            --cream-bg: #FEF9EF;
            --shadow-sm: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 25px 40px -12px rgba(0, 0, 0, 0.12);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* header / nav */
        .navbar {
            padding: 24px 0 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(26, 58, 50, 0.1);
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            background: linear-gradient(135deg, var(--deep-forest) 0%, var(--lake-blue) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--stone-gray);
            display: block;
        }
        .contact-header a {
            background-color: var(--gold-accent);
            color: #1E2F2F;
            padding: 10px 22px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.02);
        }
        .contact-header a:hover {
            background-color: #c28c2c;
            transform: translateY(-2px);
        }
        .tech-block {
    background: white;
    border-radius: 48px;
    padding: 40px 32px;
    margin: 40px 0 20px;
    box-shadow: var(--shadow-sm);
}

.advantages-section {
    background: linear-gradient(135deg, #1A3A32 0%, #2B6F6B 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(217,161,59,0.25), transparent 60%);
}

.advantages-header {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-section .section-title {
    color: white;
    font-size: 2.6rem;
}

.advantages-section .section-sub {
    color: #EADCB4;
    max-width: 750px;
    margin: 0 auto;
}

.advantages-section .card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    transition: 0.3s;
    position: relative;
}

.advantages-section .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.card.featured {
    border: 2px solid #D9A13B;
    /* transform: scale(1.05); */
}

.badge {
    display: inline-block;
    background: #D9A13B;
    color: #1E2F2F;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

        .lang-switch {
            display: flex;
            gap: 10px;
            margin-left: 20px;
        }
        .lang-btn a {
                text-decoration: none;   /* убирает подчеркивание */
    color: inherit;          /* наследует цвет родителя */
        }
        .lang-btn {
            background: none;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 40px;
            transition: 0.2s;
            font-family: 'Inter', sans-serif;
            color: var(--stone-gray);
        }
        .lang-btn.active {
            background: var(--deep-forest);
            color: white;
        }
        .lang-btn:not(.active):hover {
            background: rgba(26, 58, 50, 0.08);
        }


/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* ===== VIDEO ===== */
.video-block {
    margin-top: 20px;
}

.video-block video {
    width: 100%;
    border-radius: 24px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .lang-switch {
        margin-left: 0;
        justify-content: center;
    }

    .gallery {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .gallery img {
        height: 180px;
        border-radius: 14px;
    }
}

        /* hero */
        .hero {
            padding: 60px 0 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .hero-content {
            flex: 1.2;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(43, 111, 107, 0.12);
            color: var(--lake-blue);
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-bottom: 24px;
        }
        .hero-content h2 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--deep-forest);
            margin-bottom: 20px;
        }
        .hero-highlight {
            color: var(--gold-accent);
            border-bottom: 2px solid var(--gold-accent);
        }
        .hero-stats {
            display: flex;
            gap: 32px;
            margin: 32px 0 24px;
            flex-wrap: wrap;
        }
        .stat {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .stat i {
            font-size: 2rem;
            color: var(--gold-accent);
        }
        .stat p {
            font-weight: 700;
            font-size: 1.2rem;
        }
        .stat small {
            font-weight: 400;
            color: var(--stone-gray);
            font-size: 0.85rem;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .btn-primary {
            background-color: var(--deep-forest);
            color: white;
            padding: 14px 32px;
            border-radius: 48px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background-color: #0f2c25;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--deep-forest);
            color: var(--deep-forest);
            padding: 14px 32px;
            border-radius: 48px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
        }
        .btn-outline:hover {
            background: rgba(26, 58, 50, 0.05);
            transform: translateY(-2px);
        }
        .hero-image {
            flex: 1;
            background: linear-gradient(135deg, #DBE9E4, #C2D6CF);
            border-radius: 40px;
            min-height: 320px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-image i {
            font-size: 6rem;
            color: var(--deep-forest);
            opacity: 0.5;
        }
                /* ===== IMG FIX ===== */
        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 40px;
        }
        .wave-bg {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231A3A32" fill-opacity="0.05" d="M0,192L48,176C96,160,192,128,288,138.7C384,149,480,203,576,208C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        /* section common */
        section {
            padding: 40px 0;
        }
        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--deep-forest);
            margin-bottom: 16px;
        }
        .section-sub {
            color: var(--stone-gray);
            /* max-width: 700px; */
            margin-bottom: 48px;
            font-size: 1.1rem;
        }

        /* grid cards */
        .grid-2, .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .card {
            background: white;
            border-radius: 32px;
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
            border: 1px solid rgba(0,0,0,0.03);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
.card-icon {
    font-size: 1.6rem;
    color: var(--gold-accent);
    margin-bottom: 0;

    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-header h3 {
    margin: 0;
}
        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
            font-weight: 700;
            padding-top: 10px;
            color: #2d3e3b;
        }
        .card p, .card li {
            color: #2d3e3b;
            line-height: 1.5;
        }
        .feature-list {
            list-style: none;
            margin-top: 16px;
        }
        .feature-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-list li i {
            color: var(--gold-accent);
            font-size: 1rem;
            width: 20px;
        }

        /* highlight block */
        .highlight-stats {
            background: linear-gradient(110deg, #F2E8CF 0%, #E7DDBF 100%);
            border-radius: 48px;
            padding: 48px 40px;
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .stat-large {
            flex: 1;
            text-align: center;
        }
        .stat-large .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--deep-forest);
        }
        .stat-large .label {
            font-weight: 500;
            color: #2f5a51;
        }

        /* map placeholder / location */
        .location-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        .map-placeholder {
            flex: 1;
            min-height: 300px;
            background: #CFE3DE;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--deep-forest);
        }
        .map-placeholder i {
            font-size: 4rem;
            margin-bottom: 12px;
            opacity: 0.7;
        }
        .location-details {
            flex: 1;
            padding: 32px;
        }
        .location-details h4 {
            font-size: 1.8rem;
            margin-bottom: 16px;
        }
        .lake-badge {
            background: var(--lake-blue);
            color: white;
            border-radius: 60px;
            padding: 6px 16px;
            display: inline-block;
            font-size: 0.8rem;
            margin-bottom: 16px;
        }

        /* contact + final */
        .contact-block {
            background: var(--deep-forest);
            border-radius: 48px;
            padding: 56px 48px;
            color: white;
            text-align: center;
        }
        .contact-block h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .contact-phone {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: var(--gold-accent);
            display: inline-block;
            padding: 12px 36px;
            border-radius: 80px;
            color: #1E2F2F;
            margin: 24px 0;
            text-decoration: none;
        }
        .contact-phone i {
            margin-right: 12px;
        }
        .footer-links {
            margin-top: 32px;
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #FFE3A4;
            text-decoration: none;
            font-weight: 500;
        }

        /* responsive */
/* ===== MOBILE ===== */
@media (max-width: 768px) {

    /* контейнер */
    .container {
        padding: 0 16px;
    }

    /* navbar */
    .navbar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        gap: 24px;
        padding: 40px 0 20px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        width: 100%;
        min-height: auto;
        margin-top: 10px;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    /* stats */
    .hero-stats {
        gap: 16px;
    }

    .stat p {
        font-size: 1rem;
    }

    /* кнопки */
    .btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* SECTION */
    section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-sub {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    /* GRID */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CARD */
    .card {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    /* highlight stats */
    .highlight-stats {
        flex-direction: column;
        padding: 28px 20px;
        border-radius: 28px;
        text-align: center;
    }

    .stat-large .number {
        font-size: 2rem;
    }

    /* location */
    .location-card {
        flex-direction: column;
    }

    .map-placeholder {
        min-height: 200px;
    }

    .map-placeholder img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .location-details {
        padding: 20px;
    }

    .location-details h4 {
        font-size: 1.4rem;
    }

    /* contact */
    .contact-block {
        padding: 32px 20px;
        border-radius: 28px;
    }

    .contact-block h3 {
        font-size: 1.4rem;
    }

    .contact-phone {
        font-size: 1.2rem;
        padding: 10px 18px;
    }

    .footer-links {
        gap: 16px;
        flex-direction: column;
    }

    .tech-block {
        padding: 24px 16px;
        border-radius: 20px;
        margin: 20px 0;
    }

    .tech-block .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .tech-block .grid-2 {
        gap: 12px;
    }

    .tech-block .feature-list li {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .tech-block p {
        font-size: 0.9rem;
    }

    .tech-block hr {
        margin: 16px 0;
    }
}
        hr {
            margin: 20px 0;
            border: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(26,58,50,0.2), transparent);
        }
        .badge-territory {
            background-color: #EADCB4;
            color: #2b5a4e;
            border-radius: 40px;
            padding: 6px 14px;
            font-weight: 500;
        }
        .water-text {
            font-weight: 500;
            color: var(--lake-blue);
        }

        /* === НОВЫЕ СТИЛИ ДЛЯ ЗОН (ДОБАВЛЕНО) === */
        .zone-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03);
            padding: 0;
        }
        .zone-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .zone-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .zone-card-body {
            padding: 24px 28px 28px;
        }
        .zone-card h3 {
            font-size: 1.4rem;
            color: var(--deep-forest);
            margin-bottom: 10px;
        }
        .zone-card p {
            color: var(--stone-gray);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Блок безопасности */
        .security-section {
            background: #F1EFE5;
            border-radius: 48px;
            padding: 60px 0;
            margin-top: 20px;
        }
        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        .security-item {
            text-align: center;
            padding: 20px;
        }
        .security-item i {
            font-size: 2.5rem;
            color: var(--lake-blue);
            margin-bottom: 16px;
        }
        .security-item h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--deep-forest);
        }
        .security-item p {
            font-size: 0.9rem;
            color: var(--stone-gray);
        }