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

body{
    background:#08090e; 
    font-family:'Montserrat',sans-serif;
    color:white;
    overflow-x:hidden;
}

.noise{
    position:fixed;
    width:100%;
    height:100%;
    background: radial-gradient(circle at center, #0e1018, #05060a);
    z-index:-1;
}

.container{
    width:90%;
    max-width:1600px;
    margin:auto;
}

.gold-text {
    color: #c79b59;
}

.logo-text {
    font-weight: 900; 
    font-size: 24px; 
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(199, 155, 89, 0.2);
}

/* Навигационная панель */
nav{
    position:fixed;
    top:0;
    width:100%;
    padding:20px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:100;
    background:rgba(8, 9, 14, 0.85);
    backdrop-filter:blur(25px);
    border-bottom:1px solid rgba(255,255,255,.03);
}

.menu{
    display:flex;
    gap:40px;
}

.menu a{
    text-decoration:none;
    color:#9ba3b5;
    font-size:12px;
    font-weight: 600;
    letter-spacing:1.5px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu a:hover{
    color: #c79b59;
    text-shadow: 0 0 10px rgba(199, 155, 89, 0.5);
}

.phone-btn{
    padding:14px 28px;
    background:#c79b59;
    text-decoration:none;
    color:white;
    font-weight:700;
    font-size: 14px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(199, 155, 89, 0.2);
    transition: 0.3s;
    flex-shrink: 0;
}

.phone-btn:hover{
    background: #b08547;
    box-shadow: 0 6px 20px rgba(199, 155, 89, 0.4);
}

/* Секция Hero */
.hero{
    min-height:100vh;
    padding:180px 5% 100px 5%;
}

.hero-content{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:80px;
    align-items:start;
    max-width: 1600px;
    margin: 0 auto;
}

.small-title{
    color:#c79b59;
    font-size:12px;
    font-weight: 700;
    letter-spacing:3px;
    margin-bottom:25px;
    display: flex;
    align-items: center;
}

.small-title::before{
    content:'';
    display:inline-block;
    width:35px;
    height:1px;
    background:#c79b59;
    margin-right:15px;
}

.justify-center {
    justify-content: center;
}
.justify-center::before {
    margin-right: 10px;
    margin-left: -45px;
}

.hero h1{
    font-size:62px; /* Чуть уменьшили для предотвращения переноса длинных фраз */
    font-weight:900;
    line-height:1.15;
    margin-bottom:35px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: #c79b59;
    text-shadow: 0 0 30px rgba(199, 155, 89, 0.15);
}

.hero p{
    font-size:17px;
    color:#8e96a7;
    max-width:600px;
    line-height:1.8;
}

.hero-buttons{
    margin-top:45px;
    display:flex;
    gap:20px;
}

.gold-btn{
    padding:22px 40px;
    background:#c79b59;
    color:white;
    text-decoration:none;
    font-weight:700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: inline-block;
}

.glow-effect:hover {
    background: #b08547;
    box-shadow: 0 0 30px rgba(199, 155, 89, 0.6);
    transform: translateY(-3px);
}

.dark-btn{
    padding:22px 40px;
    border:1px solid rgba(255,255,255,.12);
    color:white;
    text-decoration:none;
    font-weight:700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 2px;
    display: inline-block;
}

.dark-btn:hover{
    background: rgba(255,255,255,0.04);
    border-color: #c79b59;
    box-shadow: 0 0 20px rgba(199, 155, 89, 0.15);
    transform: translateY(-3px);
}

/* Статистика */
.stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    background:rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.03);
}

.stat{
    padding:40px;
    background:#0f111a;
    transition: background 0.3s;
}
.stat:hover {
    background: #131622;
}

.stat h3{
    font-size:42px;
    font-weight: 900;
    color:#c79b59;
    margin-bottom:8px;
}

.stat p{
    font-size: 13px;
    color: #8e96a7;
    font-weight: 500;
}

/* Форма быстрой заявки */
.lead-form-container {
    margin-top: 35px;
    background: #0f111a;
    border: 1px solid rgba(255,255,255, 0.03);
    padding: 45px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c79b59;
    box-shadow: 0 2px 15px rgba(199, 155, 89, 0.6);
}

.form-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c79b59;
    margin-bottom: 25px;
}

.hero-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-form input {
    background: #08090e;
    border: 1px solid rgba(255,255,255, 0.06);
    padding: 18px 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    transition: 0.3s;
}

.hero-form input:focus {
    border-color: #c79b59;
    box-shadow: 0 0 15px rgba(199, 155, 89, 0.2);
}

.form-submit-btn {
    grid-column: span 2;
    background: #c79b59;
    color: white;
    border: none;
    padding: 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}

.form-privacy {
    margin-top: 20px;
    font-size: 11px;
    color: #525966;
    text-align: center;
    line-height: 1.5;
}

/* Шапки контентных блоков */
.section-top {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    margin-bottom:80px;
    align-items: end;
}

.section-top h2{
    font-size:52px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-top p{
    color:#8e96a7;
    font-size:17px;
    line-height:1.8;
}

.center-title {
    text-align: center;
    margin-bottom: 80px;
}
.center-title h2 {
    font-size: 52px;
    font-weight: 900;
}

/* Премиальный стиль карточек (Виден СРАЗУ, идеален на смартфонах) */
.premium-card-style {
    background: #0f111a !important; 
    border: 1px solid rgba(199, 155, 89, 0.2) !important; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 0 25px rgba(199, 155, 89, 0.04) !important; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .premium-card-style:hover {
        transform: translateY(-6px);
        border-color: rgba(199, 155, 89, 0.5) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                    0 0 35px rgba(199, 155, 89, 0.12) !important;
    }
}

/* Специализация */
.specialization, .about-section, .process-section {
    padding:140px 0;
    border-top: 1px solid rgba(255,255,255,.03);
}

/* Перестроили сетку на 2 колонки (для идеального распределения 4-х элементов) */
.services-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px; 
}

.service-item{
    padding:50px 40px;
    position:relative;
}

.number{
    position:absolute;
    right:30px;
    top:30px;
    font-size: 14px;
    font-weight: 700;
    color:#2b3147;
}

.icon{
    font-size:36px;
    color:#c79b59;
    margin-bottom:35px;
    display: inline-block;
    text-shadow: 0 0 15px rgba(199, 155, 89, 0.3);
}

.service-item h3{
    font-size:22px;
    font-weight: 700;
    margin-bottom:18px;
}

.service-item p{
    color:#8e96a7;
    font-size: 14px;
    line-height:1.7;
}

/* О компании / Преимущества */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 50px 40px;
}

.benefit-icon-svg {
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(199, 155, 89, 0.3));
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #8e96a7;
    font-size: 14px;
    line-height: 1.7;
}

/* Этапы работы */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-step {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num-box {
    width: 70px;
    height: 70px;
    background: #0f111a;
    border: 1px solid rgba(199, 155, 89, 0.3);
    box-shadow: 0 0 15px rgba(199, 155, 89, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.step-number {
    font-size: 18px;
    font-weight: 800;
    color: #c79b59;
}

.process-step h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step p {
    color: #8e96a7;
    font-size: 13px;
    line-height: 1.6;
}

.process-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(199, 155, 89, 0.2);
    margin-top: 35px;
}

/* Секция Контактов */
.contact{
    padding:140px 0;
    text-align:center;
    border-top: 1px solid rgba(255,255,255,.03);
}

.contact h2{
    font-size:52px;
    font-weight: 900;
    margin-bottom:25px;
}

.contact p{
    color:#8e96a7;
    margin-bottom:50px;
    font-size: 18px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* Подвал */
footer{
    padding:60px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.03);
    background: #050609;
    color: #525966;
    font-size: 13px;
    font-weight: 500;
}

footer p {
    margin-bottom: 12px;
}

/* Стартовая плавная анимация загрузки */
.animated-fade-in {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   Адаптивный дизайн (Mobile & Tablet)
   ========================================================================== */

@media(max-width:1300px){
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero h1 {
        font-size: 52px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .process-step {
        width: 100%;
        max-width: 400px;
    }
    .process-line {
        display: none; 
    }
}

@media(max-width:900px){
    nav {
        padding: 15px 4%;
    }
    .menu {
        display: none; 
    }
    .section-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    .section-top h2, .center-title h2, .contact h2 {
        font-size: 36px;
    }
    .hero h1 {
        font-size: 38px;
    }
    .services-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    .hero-form {
        grid-template-columns: 1fr;
    }
    .form-submit-btn {
        grid-column: span 1;
    }
    .specialization, .about-section, .process-section {
        padding: 80px 0;
    }
}

@media(max-width:480px){
    nav {
        padding: 12px 3%;
    }
    .phone-btn {
        padding: 10px 14px; 
        font-size: 11px;
        letter-spacing: 0;
    }
    .logo-text {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .gold-btn, .dark-btn {
        width: 100%;
        text-align: center;
    }
    .lead-form-container {
        padding: 30px 15px;
    }
    .stat {
        padding: 25px;
    }
    .stat h3 {
        font-size: 32px;
    }
}