* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
header {
    background-color: #121212;
    padding: 20px 0;
    border-bottom: 3px solid #00d2ff;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-e { color: #fff; }
.logo-778 { color: #00d2ff; }

.header-geo {
    text-align: right;
    font-weight: 600;
}

.small-text {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* Главный экран */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.8)), url('img/hero-bg.jpg') center/cover no-repeat fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    max-width: 900px;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Кнопки */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #00d2ff, #0093E9);
    color: #0d0d0d;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: #00d2ff;
    border: 2px solid #00d2ff;
    box-shadow: none;
}

.btn-outline:hover {
    background: #00d2ff;
    color: #0d0d0d;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
}

/* Секции */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00d2ff;
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title-left {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.section-title-left::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00d2ff;
    margin-top: 10px;
    border-radius: 2px;
}

.accent {
    color: #00d2ff;
    font-weight: 700;
}

/* Преимущества */
.advantages {
    background-color: #121212;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.adv-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.adv-card:hover {
    border-color: #00d2ff;
    transform: translateY(-5px);
    background: #181818;
}

.adv-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.adv-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Услуги */
.services {
    background-color: #0d0d0d;
}

.card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: #00d2ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.price {
    font-size: 24px;
    color: #00d2ff;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Блок О мастере */
.about-section {
    background-color: #121212;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #2a2a2a;
}

.about-text p {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 17px;
}

.about-text .btn {
    margin-top: 20px;
}

/* Доп услуги и марки */
.extra-services {
    background-color: #0d0d0d;
}

.extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.extra-list {
    list-style: none;
}

.extra-list li {
    background: #1a1a1a;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #00d2ff;
    font-size: 18px;
    transition: transform 0.2s;
}

.extra-list li:hover {
    transform: translateX(10px);
}

.brands-text {
    color: #ccc;
    font-size: 17px;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

/* Как мы работаем */
.how-we-work {
    background-color: #121212;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.step {
    position: relative;
    padding: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d2ff, #0093E9);
    color: #0d0d0d;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.step h3 {
    color: #fff;
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    background-color: #0d0d0d;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #333;
}

.faq-item.active {
    border-color: #00d2ff;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon {
    font-size: 24px;
    color: #00d2ff;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Превращаем + в x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

/* Форма */
.contact {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('img/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: rgba(26, 26, 26, 0.9);
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00d2ff;
}

form button {
    font-size: 16px;
    margin-top: 10px;
}

.form-message {
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
}

/* Подвал */
footer {
    background-color: #121212;
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #2a2a2a;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .hero h1 { font-size: 30px; }
    .section-title { font-size: 28px; }
    header .container { flex-direction: column; gap: 10px; }
    .header-geo { text-align: center; }
    .extra-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { max-height: 300px; margin-bottom: 20px; }
    .faq-question { font-size: 16px; }
    .hero { background-attachment: scroll; }
    .contact { background-attachment: scroll; }
}