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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.site-domain {
    letter-spacing: -0.5px;
}

header {
    backdrop-filter: blur(8px);
}

/* ── Hero ── */
.hero-gradient {
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #0d9488 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── Buttons ── */
.btn-primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(5,150,105,0.4);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5,150,105,0.5);
}

/* ── Cards ── */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.trust-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ── Badges & Labels ── */
.section-badge {
    display: inline-block;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Coverage grid ── */
.coverage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: white;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    border: 1px solid #f3f4f6;
}

.coverage-item:hover {
    background: #ecfdf5;
    color: #047857;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #a7f3d0;
}

/* ── Feature icons ── */
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
}

/* ── Prose (Privacy/Terms) ── */
.prose-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.prose-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.prose-section p {
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.prose-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.prose-section ul li {
    margin-bottom: 0.4rem;
}

/* ── Forms ── */
input, textarea, select {
    transition: all 0.2s ease;
}

input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    outline: none;
}

/* ── Stats strip ── */
.stat-strip {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

/* ── CTA gradient ── */
.cta-gradient {
    background: linear-gradient(135deg, #047857 0%, #0d9488 100%);
}

/* ── Star rating ── */
.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
