* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    background-color: #0a0a0a;
    line-height: 1.4;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* типографика */
h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #f5d742;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-subhead {
    font-size: 1.1rem;
    color: #b0a790;
    margin-bottom: 2.5rem;
    border-left: 3px solid #f5d742;
    padding-left: 1rem;
}

/* шапка */
.navbar {
    padding: 1.25rem 0;
    border-bottom: 1px solid #1f1f1f;
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* БЛОК ЛОГОТИПА */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f5d742 0%, #d4b33a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(245, 215, 66, 0.3);
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5d742;
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    color: #b0a790;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #f5d742;
}

.btn-outline {
    border: 1.5px solid #f5d742;
    background: transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 40px;
    font-weight: 600;
    color: #f5d742;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #f5d742;
    color: #0a0a0a;
}

.btn-primary {
    background: #f5d742;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    color: #0a0a0a;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #d4b33a;
    transform: translateY(-2px);
    color: #0a0a0a;
}

/* hero */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, #0d0d0d 0%, #0a0a0a 100%);
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #f5d742;
}

.hero-text .badge {
    background: rgba(245, 215, 66, 0.15);
    color: #f5d742;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 215, 66, 0.3);
}

.hero-text p {
    font-size: 1.15rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 1.7rem;
    color: #f5d742;
}

.stat-item p {
    color: #b0a790;
    font-size: 0.9rem;
}

/* карточки преимуществ */
.features {
    padding: 4rem 0;
    background: #0a0a0a;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #111111;
    padding: 1.8rem;
    border-radius: 24px;
    transition: 0.2s;
    border: 1px solid #1f1f1f;
}

.feature-card:hover {
    border-color: #f5d742;
    transform: translateY(-4px);
}

.feature-card i {
    font-size: 2.2rem;
    color: #f5d742;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: #f5d742;
}

.feature-card p {
    color: #b0a790;
}

/* производство */
.production {
    background: #0d0d0d;
    padding: 4rem 0;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
}

.prod-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.prod-text {
    flex: 1;
}

.prod-text p {
    color: #c0c0c0;
}

.prod-list {
    list-style: none;
    margin-top: 1rem;
}

.prod-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.prod-list i {
    color: #f5d742;
    width: 24px;
}

.prod-image {
    flex: 1;
    background: #1a1a1a;
    border-radius: 32px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5d742;
    font-weight: 500;
    background-image: url('factory.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 1px solid #2a2a2a;
}

/* контакты */
.contact-section {
    padding: 4rem 0;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: #111111;
    border-radius: 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border: 1px solid #1f1f1f;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f5d742;
}

.contact-info p {
    color: #b0a790;
}

.contact-detail {
    margin: 1.5rem 0;
}

.contact-detail p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
}

.contact-detail i {
    width: 24px;
    color: #f5d742;
}

.contact-form {
    flex: 1.2;
}

.contact-form h3 {
    color: #f5d742;
}

.contact-form p {
    color: #b0a790;
}

.form-group {
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    background: #1a1a1a;
    font-family: inherit;
    transition: 0.2s;
    color: #e0e0e0;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f5d742;
    background: #222222;
}

input::placeholder, textarea::placeholder {
    color: #6a6a6a;
}

textarea {
    min-height: 100px;
}

.map-placeholder {
    margin-top: 2rem;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #b0a790;
    border: 1px solid #2a2a2a;
}

.map-placeholder i {
    color: #f5d742;
    margin-right: 8px;
}

footer {
    background: #050505;
    color: #8a8a8a;
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #1f1f1f;
}

.production-list-section {
    padding: 4rem 0;
    background: #0a0a0a;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
}

.production-list-section h2 {
    color: #f5d742;
}

.production-list-section .section-subhead {
    color: #b0a790;
    border-left-color: #f5d742;
}

.production-steps-list {
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
}

.production-steps-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75rem 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #1f1f1f;
}

.production-steps-list li:last-child {
    border-bottom: none;
}

.step-num {
    font-weight: 700;
    font-size: 0.85rem;
    color: #f5d742;
    background: rgba(245, 215, 66, 0.12);
    padding: 4px 10px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    min-width: 52px;
    text-align: center;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #f5d742;
    min-width: 180px;
}

.step-desc {
    flex: 1;
    color: #d0d0d0;
    line-height: 1.45;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .production-steps-list li {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .step-title {
        min-width: auto;
    }

    .step-desc {
        font-size: 0.9rem;
    }
}

/*
КЛАССЫ
*/
.markGold {
    color: #f5d742;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .nav-links {
        display: none;
    }
    .container {
        padding: 0 20px;
    }
    .contact-flex {
        flex-direction: column;
    }
    .logo-text h1 {
        font-size: 1.2rem;
    }
    .logo-image {
        width: 40px;
        height: 40px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .stat-item h3 {
        font-size: 1.3rem;
    }
}

/* Для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}