@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    color: #0c4a6e;
    background: #f0f9ff;
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* ── Green CTA gradient ───────────────────────── */
.cta-green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}
.cta-green:hover { opacity: 0.92; }

/* ── Blue pill / badge ────────────────────────── */
.badge-blue {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 9999px;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Accent underline ─────────────────────────── */
.accent-line {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #0369a1, #22c55e);
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* ── Hero wave bottom ─────────────────────────── */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

/* ── Coverage card ────────────────────────────── */
.coverage-card {
    background: #fff;
    border: 1.5px solid #e0f2fe;
    border-radius: 1.25rem;
    padding: 2rem;
    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(3, 105, 161, 0.12);
    border-color: #7dd3fc;
}

/* ── Testimonial card ─────────────────────────── */
.testimonial-card {
    background: #ffffff;
    border: 1.5px solid #e0f2fe;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: box-shadow 0.2s ease;
}
.testimonial-card:hover {
    box-shadow: 0 10px 32px rgba(3, 105, 161, 0.10);
}

/* ── Value card ───────────────────────────────── */
.value-card {
    background: #fff;
    border: 1.5px solid #e0f2fe;
    border-top: 4px solid #0369a1;
    border-radius: 1rem;
    padding: 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 105, 161, 0.10);
}

/* ── Form input ───────────────────────────────── */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #bae6fd;
    border-radius: 0.625rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #0c4a6e;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    border-color: #0369a1;
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15);
}

/* ── Trust badge ──────────────────────────────── */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #bae6fd;
    border-radius: 9999px;
    padding: 0.4rem 1rem;
    color: #0369a1;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(3,105,161,0.07);
}

/* ── Stat bar item ────────────────────────────── */
.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

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

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

/* ── Floating card shimmer ────────────────────── */
.float-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(3,105,161,0.13);
    border: 1px solid #e0f2fe;
}

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