/* ---- Загальні стилі ---- */
:root {
    --primary-color: #00A3FF; /* Електричний синій - основний акцент */
    --background-color: #121212; /* Темний фон */
    --surface-color: #1E1E1E; /* Колір для карток та блоків */
    --text-color: #EAEAEA;
    --secondary-text-color: #A0A0A0;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

p {
    margin-bottom: 20px;
    color: var(--secondary-text-color);
}

section {
    padding: 80px 0;
}

/* ---- Навігація та Хедер ---- */
.hero {
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('https://via.placeholder.com/1920x1080.png/121212?text=Zeekr+Image') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    max-width: 800px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 20px;
}

/* ---- Кнопки ---- */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #007fcc;
    transform: translateY(-2px);
}

.nav-button {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.hero-button {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* ---- Секція послуг ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ---- Секція "Чому ми" ---- */
.why-us {
    background-color: var(--surface-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ---- Фінальний заклик ---- */
.final-cta {
    text-align: center;
}

.final-cta .container {
    max-width: 800px;
}

.final-cta .cta-button {
    margin-top: 20px;
}

/* ---- Підвал ---- */
footer {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}

footer p {
    margin-bottom: 5px;
}

/* ---- Адаптивність ---- */
@media(max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        height: auto;
        padding-bottom: 80px;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }
}