<!DOCTYPE html>


    
    
    
    
    Сергей Малахов - Брокер элитной недвижимости</title>
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header / Hero */
        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .hero .subtitle {
            font-size: 22px;
            color: #d4af37;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .hero p {
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #d4af37;
            color: #1a1a1a;
            padding: 15px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #e5c158;
            transform: translateY(-2px);
        }
        
        /* About section */
        .about {
            padding: 60px 20px;
            background: #f9f9f9;
        }
        
        .about h2 {
            font-size: 36px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #d4af37;
        }
        
        .about-text p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .stat-box {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .stat-box .number {
            font-size: 32px;
            font-weight: 700;
            color: #d4af37;
            margin-bottom: 10px;
        }
        
        .stat-box .label {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        /* Expertise section */
        .expertise {
            padding: 60px 20px;
        }
        
        .expertise h2 {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .expertise-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .expertise-card:hover {
            transform: translateY(-5px);
        }
        
        .expertise-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        .expertise-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* Platforms section */
        .platforms {
            background: #f9f9f9;
            padding: 60px 20px;
        }
        
        .platforms h2 {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .platforms-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .platform-item {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
        }
        
        .platform-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .platform-item a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
        }
        
        .platform-item a:hover {
            text-decoration: underline;
        }
        
        .platform-item .activity {
            font-size: 13px;
            color: #999;
            margin-top: 8px;
        }
        
        /* Contact section */
        .contact {
            padding: 60px 20px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            text-align: center;
        }
        
        .contact h2 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .contact p {
            font-size: 18px;
            margin-bottom: 40px;
            color: #ccc;
        }
        
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto 50px;
        }
        
        .contact-method {
            background: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .contact-method h3 {
            font-size: 16px;
            margin-bottom: 12px;
            color: #d4af37;
        }
        
        .contact-method a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            word-break: break-all;
        }
        
        .contact-method a:hover {
            color: #d4af37;
        }
        
        /* Footer */
        footer {
            background: #0d0d0d;
            color: #888;
            text-align: center;
            padding: 25px 20px;
            font-size: 14px;
        }
        
        footer a {
            color: #d4af37;
            text-decoration: none;
        }
        
        /* About photo */
        .about-photo {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .photo-container {
            width: 100%;
            max-width: 300px;
            position: relative;
        }
        
        .photo-bg {
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%);
            border-radius: 12px;
            z-index: 1;
        }
        
        .photo-img {
            position: relative;
            z-index: 2;
            width: 100%;
            border-radius: 8px;
            display: block;
        }
        
        /* Channels section */
        .channels {
            padding: 60px 20px;
            background: white;
        }
        
        .channels h2 {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .channels-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .channel-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
            padding: 35px;
            border-radius: 8px;
            border-left: 4px solid #d4af37;
            transition: transform 0.3s ease;
        }
        
        .channel-card:hover {
            transform: translateX(5px);
        }
        
        .channel-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        
        .channel-card p {
            color: #666;
            font-size: 15px;
            margin-bottom: 18px;
            line-height: 1.6;
        }
        
        .channel-link {
            display: inline-block;
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .channel-link:hover {
            color: #e5c158;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero .subtitle {
                font-size: 18px;
            }
            
            .about-content,
            .expertise-grid,
            .platforms-list,
            .contact-methods,
            .channels-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .photo-container {
                margin: 0 auto;
            }
        }
    </style>


    <!-- HEADER / HERO SECTION -->
    <section class="hero">
        <div class="container">
            Сергей Малахов</h1>
            <div class="subtitle">Брокер элитной и коммерческой недвижимости Москвы</div>
            14+ лет опыта в сегменте премиум и элитной жилой недвижимости, а также коммерческой недвижимости на рынке Москвы и Московской области. Специализируюсь на сложных сделках, включая работу с иностранными собственниками в соответствии с российским законодательством.</p>
            <a href="#contact" class="cta-button">Связаться со мной</a>
        </div>
    </section>
    
    <!-- ABOUT SECTION -->
    <section class="about">
        <div class="container">
            Обо мне</h2>
            <div class="about-content">
                <div class="about-photo">
                    <div class="photo-container">
                        <div class="photo-bg"></div>
                        <img src="YOUR_PHOTO_URL_HERE" alt="Сергей Малахов" class="photo-img">
                        <!-- Примечание для Tilda: загрузи фото в блок Image и укажи его URL выше -->
                    </div>
                </div>
                
                <div class="about-text">
                    Профессиональный фон</h3>
                    Высшее юридическое образование (Российская академия правосудия, специализация гражданское право) обеспечивает полное правовое сопровождение сделок, в том числе с иностранными собственниками.</p>
                    14+ лет работы в ведущих риэлторских агентствах Москвы. Опыт во всех сегментах: от comfort до deluxe класса.</p>
                    Основные направления:</strong></p>
                    Жилая недвижимость —</strong> элитные апартаменты и загородные дома премиум-класса</p>
                    Коммерческая недвижимость —</strong> офисные пространства, розница, аренда и продажа</p>
                    Сложные сделки —</strong> срочные продажи, иностранные собственники, специальные условия</p>
                </div>
                
                <div class="about-stats">
                    <div class="stat-box">
                        <div class="number">14+</div>
                        <div class="label">Лет профессионального опыта</div>
                    </div>
                    <div class="stat-box">
                        <div class="number">8 дней</div>
                        <div class="label">Рекордное время до закрытия сделки</div>
                    </div>
                    <div class="stat-box">
                        <div class="number">€6M</div>
                        <div class="label">Сумма наиболее дорогой продажи</div>
                    </div>
                    <div class="stat-box">
                        <div class="number">Москва + МО</div>
                        <div class="label">Основная территория работы</div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- EXPERTISE SECTION -->
    <section class="expertise">
        <div class="container">
            Специализация</h2>
            <div class="expertise-grid">
                <div class="expertise-card">
                    Элитная жилая недвижимость</h3>
                    Апартаменты класса люкс, загородные дома, таунхаусы премиум-сегмента. Сопровождение полного цикла сделки с нюансами высокостоимостных транзакций.</p>
                </div>
                <div class="expertise-card">
                    Коммерческая недвижимость</h3>
                    Продажа и аренда офисных пространств, торговых площадей, инвестиционных объектов. Анализ доходности, переговоры с корпоративными клиентами.</p>
                </div>
                <div class="expertise-card">
                    Правовое сопровождение</h3>
                    Работа с иностранными собственниками в соответствии с законодательством РФ. Срочные сделки, нестандартные условия, юридическое сопровождение.</p>
                </div>
            </div>
        </div>
    </section>
    
    <!-- PLATFORMS SECTION -->
    <section class="platforms">
        <div class="container">
            Основные площадки</h2>
            <div class="platforms-list">
                <div class="platform-item">
                    Cian.ru</h3>
                    <a href="https://cian.ru/company/242151" target="_blank">cian.ru/company/242151</a></p>
                    <div class="activity">14 лет на платформе</div>
                </div>
                <div class="platform-item">
                    Avito.ru</h3>
                    <a href="https://avito.ru/brands/i6789942" target="_blank">avito.ru/brands/i6789942</a></p>
                    <div class="activity">14 лет на платформе</div>
                </div>
                <div class="platform-item">
                    Domclick.ru</h3>
                    <a href="https://agencies.domclick.ru/agent/925852" target="_blank">agencies.domclick.ru/agent/925852</a></p>
                    <div class="activity">9 лет на платформе</div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- TELEGRAM CHANNELS SECTION -->
    <section class="channels">
        <div class="container">
            Мои каналы в Telegram</h2>
            <div class="channels-grid">
                <div class="channel-card">
                    Элитная недвижимость Москвы</h3>
                    Премиум-класс, люкс-апартаменты, загородные дома. Аналитика рынка, обзоры объектов, советы инвесторам.</p>
                    <a href="https://t.me/eliterealestatemoscow" target="_blank" class="channel-link">→ Перейти на канал</a>
                </div>
                <div class="channel-card">
                    Коммерческая недвижимость Москвы</h3>
                    Офисы, торговые площади, аренда и продажа. Новые объекты, инвестиционные возможности, тренды рынка.</p>
                    <a href="https://t.me/commercialrealestatemoscow" target="_blank" class="channel-link">→ Перейти на канал</a>
                </div>
            </div>
        </div>
    </section>
    
    <!-- CONTACT SECTION -->
    <section class="contact" id="contact">
        <div class="container">
            Связь со мной</h2>
            Выберите удобный способ связи</p>
            <div class="contact-methods">
                <div class="contact-method">
                    Телефон / WhatsApp</h3>
                    <a href="tel:+79856986633">+7 985 698 66 33</a>
                </div>
                <div class="contact-method">
                    Telegram</h3>
                    <a href="https://t.me/Sergy_m1" target="_blank">@Sergy_m1</a>
                </div>
                <div class="contact-method">
                    Email</h3>
                    <a href="mailto:sergeimalakhov@gmail.com">sergeimalakhov@gmail.com</a>
                </div>
            </div>
        </div>
    </section>
    
    <!-- FOOTER -->
    
        &copy; 2024–2026 Сергей Малахов. Брокер элитной и коммерческой недвижимости.</p>
    </footer>

