/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-primary: #1a5632;
    --color-primary-light: #238c4e;
    --color-bg: #fafafa;
    --color-bg-alt: #f0f4f1;
    --color-text: #1e1e1e;
    --color-text-muted: #555;
    --color-white: #fff;
    --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,.08);
    --max-width: 1100px;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

a { color: inherit; text-decoration: none; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .2s;
}
.btn:hover { background: var(--color-primary-light); }
.btn-sm   { padding: .5rem 1.2rem; font-size: .9rem; }
.btn-lg   { padding: .85rem 2.4rem; font-size: 1.1rem; }
.btn-full { width: 100%; text-align: center; }

/* ── Header ──────────────────────────────────────────────────────── */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.5px;
}
.logo span { color: var(--color-primary); }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-size: .95rem; }
.nav a:hover { color: var(--color-primary); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0e3a20 100%);
    color: var(--color-white);
    text-align: center;
    padding: 5rem 1.5rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.2; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; opacity: .9; }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section h2 { text-align: center; font-size: 2rem; margin-bottom: .5rem; }
.section-subtitle { text-align: center; color: var(--color-text-muted); margin-bottom: 2.5rem; }

/* ── Steps ───────────────────────────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.step { text-align: center; }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .75rem;
}
.step h3 { margin-bottom: .4rem; }
.step p  { color: var(--color-text-muted); font-size: .95rem; }

/* ── Services Grid ───────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.service-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: .5rem; }
.service-card h3 { margin-bottom: .3rem; }
.service-card p { color: var(--color-text-muted); font-size: .9rem; }

/* ── Lead Form ───────────────────────────────────────────────────── */
.lead-form {
    max-width: 680px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: .3rem;
    font-size: .9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .65rem .8rem;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .95rem;
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ── Form Success ────────────────────────────────────────────────── */
.form-success {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}
.form-success h3 { color: var(--color-primary); margin-bottom: .5rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
    background: #1e1e1e;
    color: #aaa;
    text-align: center;
    padding: 1.5rem;
    font-size: .85rem;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .nav a:not(.btn) { display: none; }
}
