/* Базовые стили и переменные */
:root {
    --color-black: #000000;
    --color-dark-grey: #1A1A1A; /* Для фонов блоков */
    --color-yellow: #FFD700;   /* Яркий акцентный желтый */
    --color-white: #FFFFFF;
    --color-light-grey: #D0D0D0; /* Для основного текста */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif; /* Использовать выбранный шрифт */
    background-color: var(--color-black);
    color: var(--color-light-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Градиент на фоне (если нужен, можно добавить к body или отдельному div) */
/* Пример:
body {
    background: linear-gradient(180deg, var(--color-black) 0%, #333333 100%);
}
*/

/* Header */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--color-yellow); /* Название компании желтым */
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav a {
    color: var(--color-light-grey);
    text-decoration: none;
    margin-left: 35px;
    font-size: 17px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--color-yellow);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 80px;
    color: var(--color-white);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* Легкое свечение текста */
}

.hero-subtitle {
    font-size: 32px;
    color: var(--color-yellow); /* Подзаголовок желтым */
    margin-bottom: 50px;
    max-width: 900px;
    font-weight: 400;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 900px; /* Ограничение ширины иллюстрации */
    height: auto;
    margin: 0 auto;
    padding-bottom: 50px; /* Отступ под иллюстрацией */
}

.hero-illustration img {
    width: 100%;
    height: auto;
    display: block;
    /* Если у иллюстрации нет своего свечения, можно добавить здесь */
    filter: drop-shadow(0 0 25px rgba(255, 255, 0, 0.3));
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--color-black); /* Или var(--color-dark-grey) для секции */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--color-dark-grey); /* Фон для карточек услуг */
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Тонкая рамка для глубины */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.15); /* Желтая тень при наведении */
}

.service-icon {
    width: 100px; /* Размер иконок-уточек */
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.4)); /* Свечение уточек */
}

.service-item h3 {
    font-size: 26px;
    color: var(--color-yellow); /* Названия услуг желтым */
    margin-bottom: 10px;
    font-weight: 700;
}

.service-item p {
    font-size: 17px;
    color: var(--color-light-grey);
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-black);
}

.contact-title {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.phone-number {
    font-size: 48px;
    color: var(--color-yellow); /* Номер телефона желтым */
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.under-development-note {
    font-size: 18px;
    color: var(--color-light-grey);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--color-dark-grey); /* Темно-серый фон футера */
    padding: 30px 0;
    font-size: 15px;
    color: var(--color-light-grey);
}

/* Адаптивность */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: center;
    }
    .nav {
        margin-top: 20px;
        text-align: center;
    }
    .nav a {
        margin: 0 15px;
        display: inline-block;
    }
    .hero-title {
        font-size: 50px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
    }
    .service-icon {
        width: 80px;
    }
    .service-item h3 {
        font-size: 22px;
    }
    .service-item p {
        font-size: 16px;
    }
    .contact-title {
        font-size: 32px;
    }
    .phone-number {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }
    .logo {
        font-size: 22px;
    }
    .nav a {
        margin: 0 8px;
        font-size: 15px;
    }
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .hero-illustration {
        padding-bottom: 30px;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .service-icon {
        width: 70px;
    }
    .service-item h3 {
        font-size: 20px;
    }
    .phone-number {
        font-size: 30px;
    }
    .under-development-note {
        font-size: 16px;
    }
    .footer {
        padding: 20px 0;
    }
}