@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Sora:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    color: #111827;
    background: #ffffff;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

/* ── Nav ──────────────────────────────────────── */
#site-header {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
}
#site-header.nav-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── Red gradient CTA ─────────────────────────── */
.red-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* ── Section label ────────────────────────────── */
.label-red {
    display: inline-block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 9999px;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── Accent bar ───────────────────────────────── */
.accent-bar {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #dc2626;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* ── Coverage cards ───────────────────────────── */
.coverage-card {
    border: 1.5px solid #f3f4f6;
    border-radius: 1.25rem;
    padding: 2rem;
    background: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}
.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(220,38,38,0.1);
    border-color: #fca5a5;
}

/* ── Step cards ───────────────────────────────── */
.step-num {
    width: 3rem;
    height: 3rem;
    background: #dc2626;
    color: #fff;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px rgba(220,38,38,0.3);
}

/* ── Value cards ──────────────────────────────── */
.value-card {
    border-left: 4px solid #dc2626;
    background: #fff;
    border-radius: 0 1rem 1rem 0;
    padding: 1.75rem;
    border-top: 1.5px solid #f3f4f6;
    border-right: 1.5px solid #f3f4f6;
    border-bottom: 1.5px solid #f3f4f6;
    transition: box-shadow 0.2s;
}
.value-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); }

/* ── Testimonial cards ────────────────────────── */
.testimonial-card {
    background: #fff;
    border: 1.5px solid #f3f4f6;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); }

/* ── Form inputs ──────────────────────────────── */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.625rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}

/* ── Trust pill ───────────────────────────────── */
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 9999px;
    padding: 0.35rem 0.875rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Prose ────────────────────────────────────── */
.prose h2 { color: #b91c1c; font-family: 'Sora', sans-serif; }
.prose p  { line-height: 1.85; margin-bottom: 1.5rem; color: #374151; }

/* ── Addr hidden ──────────────────────────────── */
.site-addr.hidden { display: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
