:root {
    --dark: #07111f;
    --dark-light: #0e1d30;
    --blue: #1687ff;
    --white: #ffffff;
    --gray: #b8c2cf;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.header {
    align-items: center;
    background: rgba(7, 17, 31, 0.95);
    display: flex;
    justify-content: space-between;
    padding: 20px 7%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
}

.navigation {
    display: flex;
    gap: 24px;
}

.navigation a {
    color: var(--white);
    text-decoration: none;
}

.hero {
    align-items: center;
    background:
        linear-gradient(rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.9)),
        url("images/cameras.jpg") center/cover;
    display: flex;
    min-height: 82vh;
    padding: 80px 7%;
}

.hero-content {
    max-width: 700px;
}

.eyebrow {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.05;
    margin: 14px 0 20px;
}

h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.hero p {
    color: var(--gray);
    font-size: 20px;
    max-width: 600px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.button {
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
    padding: 14px 25px;
    text-decoration: none;
}

.primary {
    background: var(--blue);
    color: var(--white);
}

.secondary {
    border: 1px solid var(--white);
    color: var(--white);
}

.section {
    padding: 85px 7%;
    text-align: center;
}

.cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
}

.card {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 25px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p,
.section > p {
    color: var(--gray);
}

.financing {
    background: var(--dark-light);
}

.financing .button {
    margin-top: 25px;
}

.phone {
    color: var(--blue);
    display: inline-block;
    font-size: 30px;
    font-weight: 800;
    margin-top: 20px;
    text-decoration: none;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    padding: 28px;
    text-align: center;
}

@media (max-width: 760px) {
    .navigation {
        display: none;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 75vh;
    }

    h2 {
        font-size: 32px;
    }
}
