:root {
    --blue: #1f3c88;
    --dark: #1c1c1c;
    --gray: #f4f6f8;
    --orange: #f59e0b;
}

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

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

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

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

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

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

.logo {
    width: 110px;
}

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

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

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

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

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

/* BUTTONS */
.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 28px;
    background: var(--orange);
    color: white;
    font-weight: bold;
    border-radius: 8px;
}

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

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.trust h2 {
    color: white;
}

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

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

/* LOCAL */
.local {
    background: white;
}

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

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

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

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