:root {
    --blue: #0f4c75;
    --sand: #f4f1ec;
    --dark: #1f2937;
    --accent: #38bdf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    color: var(--dark);
    background: white;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

h1, h2, h3 {
    color: var(--blue);
}

/* HEADER */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 120px;
}

.header-contact {
    text-align: right;
}

.phone {
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
}

/* HERO */
.hero {
    background: var(--sand);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-img {
    width: 100%;
    border-radius: 14px;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 18px 30px;
    background: var(--blue);
    color: white;
    font-weight: bold;
    border-radius: 10px;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 30px;
    background: white;
    color: var(--blue);
    font-weight: bold;
    border-radius: 10px;
}

/* SERVICES */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service {
    background: var(--sand);
    padding: 35px;
    border-radius: 16px;
}

/* LOCAL */
.local {
    background: #f8fafc;
}

.zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 30px 0;
    list-style: none;
}

.zones li {
    padding: 8px 0;
}

/* TRUST */
.trust {
    background: var(--blue);
    color: white;
}

.trust h2 {
    color: white;
}

.trust ul {
    margin-top: 20px;
    list-style: none;
}

.trust li {
    margin-bottom: 10px;
}

/* CTA */
.cta {
    background: var(--accent);
    color: white;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #020617;
    color: #cbd5f5;
    text-align: center;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .header-grid,
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-contact {
        text-align: center;
    }
}
