* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

body {
    background: #0f0f10;
    color: #fff;
    line-height: 1.5;
}

/* container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-size: 22px;
    font-weight: 800;
}

.logo span {
    color: #ffb000;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

nav ul li a:hover {
    opacity: 1;
}

.phone {
    color: #ffb000;
    font-weight: 700;
    text-decoration: none;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 40px;
}

.hero-text h1 {
    font-size: 48px;
    margin: 20px 0;
}

.hero-text p {
    opacity: 0.8;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 14px 16px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    background: #ffb000;

    color: #000;

    text-align: center;

    white-space: normal;

    line-height: 1.2;

    word-break: break-word;

    font-size: 15px;

}

.btn-light {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.hero-items {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    width: 300px;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
}

/* PORTFOLIO */
.card-work {
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
}

.card-work img {
    width: 100%;
    border-radius: 10px;
}

/* ADVANTAGES */
.advantages {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.advantage {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
}

/* CONTACTS */
.contact-buttons {
    display: flex;
    gap: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    opacity: 0.6;
    padding: 30px 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
    }

    .services {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }

    .hero-items {
        flex-direction: column;
    }

}
#lead {
    background: rgba(255,255,255,0.03);
    padding: 60px 0;
    margin-top: 40px;
}

#lead h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

#lead p {
    opacity: 0.7;
    margin-bottom: 20px;
}

#lead form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}

#lead input {
    padding: 14px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

#lead button {
    cursor: pointer;
    border: none;
}
/* ===== ФОРМА ЗАЯВКИ ===== */

textarea {

    width: 100%;
    min-height: 140px;
    padding: 15px;

    border: none;
    border-radius: 10px;

    resize: vertical;

    font-size: 16px;

    margin-bottom: 15px;

}

.upload-btn {

    display: inline-block;

    padding: 14px 22px;

    background: #2c2c2c;

    border-radius: 10px;

    cursor: pointer;

    transition: .3s;

    margin-bottom: 15px;

}

.upload-btn:hover {

    background: #3a3a3a;

}

#fileCount {

    color: #bdbdbd;

    margin-bottom: 20px;

    font-size: 14px;

}