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

:root {
    --bg-primary: #090909;
    --bg-elevated: #111111;
    --bg-glass: rgba(17, 17, 17, 0.55);
    --gold: #d8aa3c;
    --gold-glow: rgba(216, 170, 60, 0.25);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --shadow-glass: 0 12px 48px rgba(0, 0, 0, 0.7);
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ОБЩИЕ УТИЛИТЫ ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(216, 170, 60, 0.08);
    padding: 4px 18px;
    border-radius: 100px;
    border: 1px solid rgba(216, 170, 60, 0.12);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 12px;
}

.section-title .gold {
    color: var(--gold);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    font-weight: 400;
}

.section-header {
    margin-bottom: 48px;
}

/* ===== НОВАЯ ШАПКА С МЕНЮ ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(9, 9, 9, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(9, 9, 9, 0.94);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.header-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090909;
    font-size: 1.1rem;
}

.header-logo span {
    color: var(--gold);
}

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

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: #fff;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    background: transparent;
    color: #fff;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-login i {
    color: var(--gold);
}

/* Бургер-меню (мобилка) */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== 1. ГЕРОЙ ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    animation: orbFloat 16s infinite alternate ease-in-out;
}

.hero-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #d8aa3c, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a77d2a, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 4s;
    opacity: 0.15;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, -30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-text h1 .gold {
    background: linear-gradient(135deg, #d8aa3c, #f0d060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-gold {
    background: var(--gold);
    color: #090909;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(216, 170, 60, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold i {
    transition: transform 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(216, 170, 60, 0.35);
    background: #e8c04a;
}

.btn-gold:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: var(--shadow-glass);
    transition: transform 0.4s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
}

.hero-card .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-card .stat-row:last-child {
    border-bottom: none;
}

.hero-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-card .stat-value {
    font-weight: 700;
    color: #fff;
}

.hero-card .stat-value .gold {
    color: var(--gold);
}

.hero-card .badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-card .badge-row span {
    background: rgba(216, 170, 60, 0.08);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--gold);
    border: 1px solid rgba(216, 170, 60, 0.08);
}

/* ===== 2. ТОП ОБЪЕКТОВ ===== */
.objects {
    padding: 30px 0 60px;
}

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

.card-modern {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(216, 170, 60, 0.0), rgba(216, 170, 60, 0.0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s;
}

.card-modern:hover::before {
    background: linear-gradient(135deg, rgba(216, 170, 60, 0.3), rgba(216, 170, 60, 0.05));
}

.card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 170, 60, 0.15);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.card-img-wrap {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-img-wrap .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 4px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.04em;
}

.card-img-wrap .fav {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
    cursor: pointer;
}

.card-img-wrap .fav:hover {
    background: var(--gold);
    color: #090909;
}

.card-body-modern {
    padding: 22px 24px 26px;
}

.card-body-modern h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-body-modern .address {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-body-modern .address i {
    color: var(--gold);
    font-size: 0.75rem;
}

.card-body-modern .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

.card-body-modern .price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-footer-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px;
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.card-footer-meta i {
    color: var(--gold);
    margin-right: 6px;
}

/* ===== 3. О НАС ===== */
.about {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 400;
}

.about-text .highlight {
    color: var(--gold);
    font-weight: 600;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    text-align: center;
    transition: 0.3s;
}

.stat-glass:hover {
    border-color: rgba(216, 170, 60, 0.15);
    transform: scale(1.02);
}

.stat-glass .number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-glass .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ===== 4. ШАГИ ===== */
.steps {
    padding: 90px 0 70px;
}

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

.step-modern {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.step-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: 0.4s;
}

.step-modern:hover::after {
    opacity: 1;
}

.step-modern:hover {
    border-color: rgba(216, 170, 60, 0.1);
    transform: translateY(-4px);
}

.step-modern .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(216, 170, 60, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.4rem;
}

.step-modern h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-modern p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== 5. ПРЕИМУЩЕСТВА ===== */
.advantages {
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: radial-gradient(ellipse at 50% 0%, rgba(216, 170, 60, 0.02), transparent 70%);
}

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

.adv-modern {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.4s;
}

.adv-modern:hover {
    border-color: rgba(216, 170, 60, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.adv-modern .icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.adv-modern h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.adv-modern p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== 6. ПАРТНЕРЫ ===== */
.partners {
    padding: 80px 0 60px;
    overflow: hidden;
}

.partners-strip {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.partner-pill {
    background: var(--bg-elevated);
    padding: 14px 32px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 600;
    color: var(--text-secondary);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.partner-pill i {
    color: var(--gold);
    font-size: 1rem;
}

.partner-pill:hover {
    border-color: var(--gold);
    color: #fff;
    background: rgba(216, 170, 60, 0.04);
    transform: translateY(-2px);
}

/* ===== 7. ЗАЯВКА ===== */
.cta {
    padding: 100px 0 80px;
}

.cta-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    box-shadow: var(--shadow-glass);
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.cta-text h2 .gold {
    color: var(--gold);
}

.cta-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.cta-form {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-form input {
    padding: 16px 24px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1rem;
    min-width: 210px;
    outline: none;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-form input:focus {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
}

.cta-form button {
    background: var(--gold);
    border: none;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: #090909;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-form button:hover {
    background: #e8c04a;
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(216, 170, 60, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(9, 9, 9, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 32px 32px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        font-size: 1.1rem;
        width: 100%;
        padding: 6px 0;
    }

    .burger {
        display: flex;
    }

    .grid-3x2 {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .cta-glass {
        padding: 36px 28px;
        flex-direction: column;
        align-items: stretch;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        min-width: auto;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 500px) {
    .grid-3x2 {
        grid-template-columns: 1fr;
    }

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

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

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-card .stat-row {
        flex-direction: column;
        gap: 2px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-gold,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .header-logo {
        font-size: 1.1rem;
    }

    .header-logo .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .btn-login {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}