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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    overflow-x: hidden;
    color: #0f172a;
    background: #f8fafc;
}

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

/* Nav */
#site-header {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
#site-header.nav-scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Hero diagonal clip */
.hero-clip {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

/* Orange gradient CTA */
.cta-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

/* Shield pulse */
.shield-glow {
    filter: drop-shadow(0 0 18px rgba(59,130,246,0.55));
}

/* Coverage card hover */
.coverage-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.coverage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15,23,42,0.14);
}

/* Step connector */
.step-connector::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% + 8px);
    width: calc(100% - 16px);
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #f59e0b);
}

/* Testimonial card */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.75rem;
    transition: box-shadow 0.2s ease;
}
.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
}

/* Trust badge */
.trust-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

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

/* Form inputs */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.625rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}

/* Blue accent underline */
.accent-line {
    display: inline-block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f59e0b);
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* Value card */
.value-card {
    border-top: 4px solid #3b82f6;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(15,23,42,0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: default;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

/* Orange pill */
.pill-orange {
    background: rgba(245,158,11,0.12);
    color: #b45309;
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 9999px;
    padding: 0.25rem 0.875rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: inline-block;
}

/* Dark footer */
footer {
    background: #0f172a;
}

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

@media (max-width: 768px) {
    .hero-clip {
        clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    }
    .step-connector::after {
        display: none;
    }
}
