:root {
    --primary: #e85d04;
    --primary-light: #f4845f;
    --accent: #7b2cbf;
    --accent-light: #c77dff;
    --bg: #fef7f0;
    --bg-white: #ffffff;
    --surface: #fff5ee;
    --border: #f0e6de;
    --text: #1a1a2e;
    --text-muted: #5a5a72;
    --text-dim: #72726e;
    --success: #059669;
    --error: #dc2626;
    --warning: #d97706;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(254,247,240,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-weight: 700; font-size: 1.1rem; color: var(--text); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.nav-active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: rgba(232, 93, 4, 0.08);
    color: #c85000;
    text-decoration: none; font-size: 0.85rem; font-weight: 600;
    transition: background 0.18s, box-shadow 0.18s;
    border: 1.5px solid rgba(232, 93, 4, 0.2);
}
.btn-nav:hover { background: rgba(232, 93, 4, 0.15); box-shadow: 0 2px 8px rgba(160,82,45,0.12); color: #c85000; }
/* ── Hamburger ── */
.hamburger {
    display: none; background: none; border: 1px solid var(--border);
    border-radius: 8px; padding: 7px 9px; cursor: pointer;
    color: var(--text); line-height: 0;
}
/* ── Mobile menu ── */
.mobile-menu {
    display: none; flex-direction: column; gap: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 13px 24px; color: var(--text-muted);
    text-decoration: none; font-size: 0.95rem; font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--surface); color: var(--text); }
.mobile-menu .mobile-signin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s, border-color 0.2s;
    margin-top: 4px;
}
.mobile-menu .mobile-signin:hover {
    border-color: #bbb;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border: none; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #d00000);
    color: white;
    box-shadow: 0 4px 20px rgba(232,93,4,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,93,4,0.4);
    color: white;
}
.btn-outline {
    background: var(--bg-white); color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--text); }
.btn-sm-outline {
    padding: 7px 16px; border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--bg-white); color: var(--text-muted);
    font-size: 0.82rem; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: all 0.18s; white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.btn-sm-outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 2px 8px rgba(232,93,4,0.1); }
/* File upload label styled as a button */
/* ── File Upload Button ── */
.upload-file-label {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer; user-select: none;
    transition: border-color .15s, color .15s, background .15s;
    white-space: nowrap;
}
.upload-file-label svg { flex-shrink: 0; opacity: .75; }
.upload-file-label:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 120, 212, 0.05);
}
.upload-file-label:hover svg { opacity: 1; }
.upload-file-label:active { transform: scale(0.97); }
/* Row containing upload button + hint text */
.bulk-upload-row {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
}
.bulk-upload-hint { font-size: 0.78rem; color: var(--text-muted); }
/* ── Hero ── */
.hero { padding: 140px 0 80px; }
.hero-badge {
    display: inline-flex; align-items: center;
    padding: 6px 16px; border-radius: var(--radius-full);
    background: var(--surface); border: 1px solid var(--border);
    font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
    margin-bottom: 20px; gap: 6px;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.hero-left h1 {
    font-size: clamp(2.8rem, 5vw, 4rem); line-height: 1.15;
    font-weight: 400; margin-bottom: 24px; letter-spacing: -0.01em;
}
.hero-subtitle {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 24px; max-width: 440px;
}
.hero-perks {
    display: flex; flex-wrap: wrap; gap: 16px;
    font-size: 0.82rem; color: var(--text-dim);
}
.hero-perks span { display: flex; align-items: center; gap: 5px; }
/* ── Stats ── */
.stats-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
    text-align: center;
}
.stat-num {
    font-size: 2.2rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-family: 'Inter', sans-serif;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
/* ── Test box ── */
.test-box {
    background: var(--bg-white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); padding: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.test-box-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.test-box-header h3 {
    font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
}
.checks-remaining {
    font-size: 0.75rem; color: var(--text-dim);
    background: var(--surface); padding: 4px 10px;
    border-radius: var(--radius-full);
}
.test-tabs {
    display: flex; margin-bottom: 16px;
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.tab-btn {
    flex: 1; padding: 10px; border: none;
    background: var(--surface); font-size: 0.85rem; font-weight: 600;
    color: var(--text-dim); cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.tab-btn.active { background: var(--bg-white); color: var(--text); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.test-input-wrap { display: flex; gap: 8px; margin-bottom: 12px; }
.test-input-wrap input {
    flex: 1; padding: 14px 16px;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 0.9rem; font-family: inherit;
    background: var(--surface); color: var(--text);
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.test-input-wrap input:focus { border-color: var(--primary); }
.test-input-wrap input::placeholder { color: var(--text-dim); }
.btn-verify { padding: 14px 20px; white-space: nowrap; }
#bulk-emails {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 0.85rem; font-family: 'Inter', monospace;
    background: var(--surface); color: var(--text);
    outline: none; resize: vertical; min-height: 120px; margin-bottom: 12px;
    transition: border-color 0.2s, box-shadow 0.2s; line-height: 1.6;
}
#bulk-emails:focus { border-color: var(--primary); }
#bulk-emails::placeholder { color: var(--text-dim); }
.btn-verify-bulk { width: 100%; justify-content: center; padding: 12px 24px; }
.test-result {
    min-height: 40px; padding: 10px 14px; border-radius: var(--radius);
    font-size: 0.85rem; font-weight: 500; display: none;
}
.test-result.show { display: block; }
.test-result.valid  { background: #d1fae5; color: #065f46; }
.test-result.invalid { background: #fee2e2; color: #991b1b; }
.test-result.error  { background: #fef3c7; color: #92400e; }
.test-result.loading { background: var(--surface); color: var(--text-muted); }
.test-divider { text-align: center; margin: 20px 0; position: relative; }
.test-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: var(--border);
}
.test-divider span {
    position: relative; background: var(--bg-white);
    padding: 0 12px; font-size: 0.8rem; color: var(--text-dim);
}
.btn-google {
    width: 100%; display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 12px 20px;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--bg-white); font-size: 0.9rem; font-weight: 600;
    color: var(--text); cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-google:hover { border-color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.test-note { text-align: center; font-size: 0.75rem; color: var(--text-dim); margin-top: 12px; }
.bulk-results { margin-top: 12px; max-height: 200px; overflow-y: auto; display: none; }
.bulk-results.show { display: block; }
.bulk-result-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 12px; border-radius: 8px; margin-bottom: 4px; font-size: 0.82rem;
}
.bulk-result-item.valid    { background: #d1fae5; }
.bulk-result-item.invalid  { background: #fee2e2; }
.bulk-result-item.unknown  { background: #fef3c7; }
.bulk-result-item .email   { font-weight: 500; color: var(--text); }
.bulk-result-item .status  { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; }
.bulk-result-item.valid .status   { color: #065f46; }
.bulk-result-item.invalid .status { color: #991b1b; }
.bulk-result-item.unknown .status { color: #92400e; }
/* ── Logos ── */
.logos { padding: 60px 0; border-bottom: 1px solid var(--border); }
.logos-label {
    text-align: center; font-size: 0.8rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px;
}
.logos-grid {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.logo-item {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-dim); font-weight: 700; font-size: 1.1rem;
    opacity: 0.5; transition: opacity 0.3s;
}
.logo-item:hover { opacity: 0.9; }
/* ── Features ── */
.features { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-size: clamp(2rem,4vw,2.8rem); font-weight: 500;
    line-height: 1.2; margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); font-size: 1rem; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.feature-card {
    padding: 36px 30px 30px;
    border-radius: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* Subtle colored gradient wash in top-right corner */
.fc-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.feature-card:hover .fc-glow { opacity: 0.14; }
.fc-orange .fc-glow { background: radial-gradient(circle, #e85d04 0%, transparent 70%); }
.fc-purple .fc-glow { background: radial-gradient(circle, #7b2cbf 0%, transparent 70%); }
.fc-green  .fc-glow { background: radial-gradient(circle, #059669 0%, transparent 70%); }
.fc-blue   .fc-glow { background: radial-gradient(circle, #2563eb 0%, transparent 70%); }

/* Colored top accent bar */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}
.fc-orange::before { background: linear-gradient(90deg, #e85d04, #f4845f); }
.fc-purple::before { background: linear-gradient(90deg, #7b2cbf, #c77dff); }
.fc-green::before  { background: linear-gradient(90deg, #059669, #34d399); }
.fc-blue::before   { background: linear-gradient(90deg, #2563eb, #60a5fa); }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.10);
    border-color: transparent;
}
.fc-orange:hover { box-shadow: 0 20px 48px rgba(232,93,4,0.12); }
.fc-purple:hover { box-shadow: 0 20px 48px rgba(123,44,191,0.12); }
.fc-green:hover  { box-shadow: 0 20px 48px rgba(5,150,105,0.12); }
.fc-blue:hover   { box-shadow: 0 20px 48px rgba(37,99,235,0.12); }

.feature-icon {
    width: 54px; height: 54px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; flex-shrink: 0;
    position: relative; z-index: 0;
}
.fc-orange .feature-icon { background: #fff3e0; color: #e85d04; }
.fc-purple .feature-icon { background: #f3e8ff; color: #7b2cbf; }
.fc-green  .feature-icon { background: #d1fae5; color: #059669; }
.fc-blue   .feature-icon { background: #dbeafe; color: #2563eb; }

.fc-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.55;
}
.fc-orange .fc-label { color: #e85d04; }
.fc-purple .fc-label { color: #7b2cbf; }
.fc-green  .fc-label { color: #059669; }
.fc-blue   .fc-label { color: #2563eb; }

.feature-card h3 {
    font-family: 'Inter', sans-serif; font-size: 1.08rem;
    font-weight: 700; margin-bottom: 10px; color: var(--text);
    line-height: 1.3;
}
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; flex: 1; }
/* ── How it works ── */
.how-section {
    padding: 100px 0; background: var(--bg-white);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step-card {
    padding: 32px; border-radius: var(--radius-lg);
    background: var(--surface); border: 1px solid var(--border);
}
.step-num {
    font-size: 2.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 16px; font-family: 'Inter', sans-serif;
}
.step-card h3 { font-family:'Inter',sans-serif; font-size:1.1rem; font-weight:700; margin-bottom:8px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }
/* ── Pricing (homepage preview) ── */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-note { text-align: center; margin-top: 36px; }
.price-card {
    padding: 36px; border-radius: var(--radius-lg);
    background: var(--bg-white); border: 1px solid var(--border);
    position: relative; transition: all 0.3s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(232,93,4,0.12);
}
.price-card.featured-green {
    border-color: #059669;
    box-shadow: 0 8px 32px rgba(5,150,105,0.12);
}
.featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), #d00000);
    color: white; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.featured-badge-green {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, #059669, #10b981);
    color: white; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.price-card h3 {
    font-family: 'Inter', sans-serif; font-size: 1rem;
    font-weight: 700; margin-bottom: 8px;
}
.price {
    font-size: 2.8rem; font-weight: 800;
    margin-bottom: 4px; font-family: 'Inter', sans-serif;
}
.price-per { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 20px; line-height: 1.5; }
.price-cpp { color: var(--text-dim); font-size: 0.78rem; }
.price-card ul { list-style: none; margin-bottom: 28px; }
.price-card ul li {
    padding: 6px 0; font-size: 0.9rem; color: var(--text-muted);
    position: relative; padding-left: 20px;
}
.price-card ul li::before {
    content: "✓"; position: absolute; left: 0;
    color: var(--success); font-weight: 700;
}
.price-card .btn { width: 100%; justify-content: center; }
/* ── Pricing page full (4-col) ── */
.page-hero {
    padding: 120px 0 56px;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-size: clamp(2.2rem,4.5vw,3.2rem); font-weight: 400;
    line-height: 1.2; margin-bottom: 16px;
}
.page-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }
.free-banner {
    display: inline-block; margin-top: 24px;
    padding: 14px 24px; border-radius: var(--radius);
    background: #d1fae5; border: 1px solid #6ee7b7;
    font-size: 0.9rem; color: #065f46;
}
.pricing-page { padding: 60px 0 80px; }
.pricing-grid-4 { grid-template-columns: repeat(4,1fr); }
.guarantees-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px 40px; margin-top: 48px;
}
.guarantee-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--text-muted);
}
/* ── Modal ── */
.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.45); z-index: 2000;
    align-items: center; justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-box {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 40px 36px; max-width: 400px; width: 90%;
    text-align: center; position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.modal-close-x {
    position: absolute; top: 16px; right: 16px;
    background: var(--surface); border: none; border-radius: 8px;
    width: 32px; height: 32px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; color: var(--text-muted);
    transition: color 0.2s;
}
.modal-close-x:hover { color: var(--text); }
.modal-box h3 {
    font-family: 'Inter', sans-serif; font-size: 1.15rem;
    font-weight: 700; margin-bottom: 6px;
}
.modal-plan { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.modal-methods { display: flex; flex-direction: column; gap: 12px; }
.modal-method-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 20px; border: 2px solid var(--border);
    border-radius: var(--radius); background: var(--bg-white);
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    font-family: inherit; color: var(--text); transition: all 0.2s;
}
.modal-method-btn:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(232,93,4,0.12); }
.modal-method-btn:disabled { opacity: 0.6; cursor: wait; }
.login-prompt {
    display: none; margin-top: 16px; padding: 12px;
    background: #fef3c7; border: 1px solid #fcd34d;
    border-radius: 8px; font-size: 0.85rem; color: #92400e;
}
.login-prompt.show { display: block; }
.login-prompt a { color: #92400e; font-weight: 700; }
/* ── FAQ ── */
.faq {
    padding: 100px 0; background: var(--bg-white);
    border-top: 1px solid var(--border);
}
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-toggle {
    width: 100%; padding: 20px 0; background: none; border: none;
    text-align: left; font-size: 1rem; font-weight: 600;
    color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: inherit;
}
.faq-toggle span { font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-item.open .faq-toggle span { transform: rotate(45deg); }
/* ── Footer ── */
.footer { padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; }
.footer-col h4 {
    font-family: 'Inter', sans-serif; font-size: 0.85rem;
    font-weight: 700; margin-bottom: 12px; color: var(--text);
}
.footer-col a {
    display: block; color: var(--text-muted); text-decoration: none;
    font-size: 0.9rem; padding: 4px 0;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    padding: 20px 0; border-top: 1px solid var(--border);
    text-align: center; color: var(--text-dim); font-size: 0.85rem;
}
/* ── Extract page ── */
.extract-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge {
    padding: 6px 14px; border-radius: var(--radius-full);
    background: var(--surface); border: 1px solid var(--border);
    font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.extract-section { padding: 56px 0 80px; }
.extract-layout { display: flex; flex-direction: column; gap: 32px; }
.extract-input-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; flex-wrap: wrap; gap: 12px;
}
.extract-input-header label {
    font-weight: 700; font-size: 1rem; color: var(--text);
    display: flex; align-items: center; gap: 7px;
}
.extract-input-actions { display: flex; gap: 8px; align-items: center; }

/* ── Upload button — styled pill with icon ── */
.upload-file-label {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg-white);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: border-color .18s, color .18s, background .18s, box-shadow .18s;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.upload-file-label svg { flex-shrink: 0; opacity: .65; transition: opacity .18s; }
.upload-file-label:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(232,93,4,0.04);
    box-shadow: 0 2px 8px rgba(232,93,4,0.12);
}
.upload-file-label:hover svg { opacity: 1; }
.upload-file-label:active { transform: scale(0.97); }

/* ── Clear button ── */
#extract-clear {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dim);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .18s, color .18s;
    white-space: nowrap;
}
#extract-clear:hover { border-color: #dc2626; color: #dc2626; }

/* ── Extract Emails button — bold pill ── */
#extract-btn {
    padding: 9px 22px !important;
    border-radius: var(--radius-full) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    box-shadow: 0 3px 12px rgba(232,93,4,0.25) !important;
}
#extract-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,93,4,0.35) !important;
}
#extract-input {
    width: 100%; min-height: 220px; padding: 16px;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    font-size: 0.9rem; font-family: 'Inter', monospace;
    background: var(--bg-white); color: var(--text);
    outline: none; resize: vertical; line-height: 1.6;
    transition: border-color 0.2s;
}
#extract-input:focus { border-color: var(--primary); }
#extract-input::placeholder { color: var(--text-dim); }
.extract-stats-bar {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px;
}
.estat {
    display: flex; flex-direction: column; align-items: center;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px 20px; min-width: 80px;
}
.estat-num {
    font-size: 1.6rem; font-weight: 800; font-family: 'Inter', sans-serif;
    color: var(--text);
}
.estat.microsoft .estat-num { color: #0078d4; }
.estat.google .estat-num    { color: #ea4335; }
.estat.yahoo .estat-num     { color: #6001d2; }
.estat.other .estat-num     { color: var(--text-muted); }
.estat.business .estat-num  { color: var(--success); }
.estat.personal .estat-num  { color: #d97706; }
.estat-label { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }
.extract-results { }
.extract-results-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
}
.extract-results-header h3 {
    font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
}
.extract-export-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.extract-categories { display: flex; flex-direction: column; gap: 16px; }
.ecat {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
}
.ecat-header {
    display: flex; align-items: center; gap: 10px; padding: 14px 18px;
    border-bottom: 1px solid var(--border); background: var(--surface);
}
.ecat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ecat-name { font-weight: 700; font-size: 0.9rem; flex: 1; }
.ecat-count {
    font-size: 0.8rem; font-weight: 700; color: var(--text-dim);
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-full); padding: 2px 10px;
}
.ecat-copy { margin-left: auto; }
.ecat-body {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 14px 18px; max-height: 180px; overflow-y: auto;
}
.ecat-email {
    padding: 4px 10px; background: var(--surface);
    border-radius: 6px; font-size: 0.82rem; font-family: monospace;
    color: var(--text); border: 1px solid var(--border);
}
.extract-verify-cta {
    margin-top: 32px; padding: 28px 32px;
    background: linear-gradient(135deg, rgba(232,93,4,0.06), rgba(123,44,191,0.06));
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.extract-verify-cta p { font-size: 0.95rem; color: var(--text-muted); }
/* ── Content pages (about, privacy, terms) ── */
.content-section { padding: 60px 0 80px; }
.content-narrow { max-width: 760px; }
.content-block { margin-bottom: 40px; }
.content-block h2 {
    font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700;
    margin-bottom: 12px; color: var(--text);
}
.content-block p {
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
}
.text-link { color: var(--primary); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
/* ── Responsive ── */
@media (max-width: 1100px) {
    .pricing-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 968px) {
    .hero-grid         { grid-template-columns: 1fr; gap: 40px; }
    .features-grid     { grid-template-columns: repeat(2,1fr); }
    .steps-grid        { grid-template-columns: 1fr; }
    .pricing-grid      { grid-template-columns: 1fr; }
    .footer-grid       { grid-template-columns: 1fr 1fr; }
    .nav-links         { display: none; }
    .hamburger         { display: flex; }
    .logos-grid        { justify-content: center; }
    .stats-grid        { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .pricing-grid-4    { grid-template-columns: repeat(2,1fr); }
    .extract-verify-cta { flex-direction: column; text-align: center; }
    .btn-signin        { font-size: 0.78rem; padding: 7px 12px 7px 8px; gap: 6px; }
    .btn-signin svg    { width: 14px; height: 14px; }
}
@media (max-width: 640px) {
    .features-grid     { grid-template-columns: 1fr; }
    .hero-perks        { gap: 10px; }
    .test-input-wrap   { flex-direction: column; }
    .btn-verify        { width: 100%; justify-content: center; }
    .pricing-grid-4    { grid-template-columns: 1fr; }
    .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand      { padding-bottom: 4px; }
    .footer-col        { padding-top: 4px; }
    .stats-grid        { grid-template-columns: repeat(2,1fr); }
    .extract-export-btns { flex-wrap: wrap; gap: 6px; }
    .guarantees-row    { gap: 16px; }
    .hero              { padding: 90px 0 40px; }
    .test-box          { padding: 20px 16px; }
    .container         { padding: 0 16px; }
    .nav-container     { padding: 0 16px; }
    .btn-signin        { font-size: 0.82rem; padding: 8px 14px 8px 10px; gap: 6px; }
    .btn-nav           { display: none; }
    .hero-left h1      { font-size: clamp(2rem, 8vw, 3rem); }
    .test-tabs         { width: 100%; }
    .tab-btn           { padding: 10px 8px; font-size: 0.8rem; }
    /* Features cards — compact on mobile */
    .feature-card      { padding: 24px 20px 22px; border-radius: 16px; }
    .feature-icon      { width: 46px; height: 46px; margin-bottom: 14px; border-radius: 13px; }
    .fc-label          { font-size: 0.75rem; }
    .feature-card h3   { font-size: 0.97rem; }
    .feature-card p    { font-size: 0.84rem; }
    /* Pricing — add breathing room for badges */
    .price-card        { padding: 28px 20px; }
    .featured-badge, .featured-badge-green { font-size: 0.75rem; padding: 3px 12px; }
    /* Sections — reduce padding on mobile */
    .features          { padding: 60px 0; }
    .how-section       { padding: 60px 0; }
}

/* ── Google sign-in button (top-right navbar) ── */
#login-btn, #mobile-login-btn {
    transition: opacity 0.18s ease;
}
#login-btn.auth-ready, #mobile-login-btn.auth-ready {
    opacity: 1;
}
/* On mobile the hamburger is the only nav-actions item; hide sign-in button */
/* Mobile: sign-in button stays visible but shows only the Google icon — no text */
@media (max-width: 968px) {
    .hamburger { display: flex !important; }
    /* Hide the text label, keep the G icon */
    #login-btn #login-btn-text { display: none; }
    /* Make it a compact square icon button */
    #login-btn.btn-signin {
        padding: 8px;
        min-width: 36px;
        justify-content: center;
        border-radius: 10px;
    }
    #login-btn.btn-signin svg { width: 18px; height: 18px; }
    /* When logged in it becomes btn-nav (Dashboard) — keep it hidden on mobile,
       the mobile menu already has the Dashboard link */
    #login-btn.btn-nav { display: none !important; }
}
.btn-signin {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px 9px 10px;
    border-radius: var(--radius-full);
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.btn-signin:hover {
    border-color: #aaa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--text);
}
/* When logged in, switch to solid pill */
.btn-nav {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: rgba(232, 93, 4, 0.08);
    color: #c85000;
    text-decoration: none; font-size: 0.85rem; font-weight: 600;
    transition: background 0.18s, box-shadow 0.18s; border: 1.5px solid rgba(232, 93, 4, 0.2); cursor: pointer;
}
.btn-nav:hover { background: rgba(232, 93, 4, 0.15); box-shadow: 0 2px 8px rgba(160,82,45,0.12); color: #c85000; }

/* ── Checks-remaining badge (improved) ── */
.checks-remaining {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5px 11px; border-radius: var(--radius-full);
    letter-spacing: 0.01em;
}
.checks-remaining.credits-mode {
    background: linear-gradient(135deg, rgba(232,93,4,0.08), rgba(123,44,191,0.08));
    border-color: rgba(232,93,4,0.25);
    color: var(--primary);
}

/* ── Bento features grid ── */
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
}
.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    border-color: var(--primary-light);
}
.bento-wide {
    grid-column: span 2;
}
.bento-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.bento-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
}
.bento-card p {
    color: var(--text-muted); font-size: 0.92rem; line-height: 1.65;
}
.pill-valid {
    display: inline-block; padding: 2px 10px;
    background: #d1fae5; color: #065f46;
    border-radius: 20px; font-weight: 700; font-size: 0.82rem;
}
.pill-invalid {
    display: inline-block; padding: 2px 10px;
    background: #fee2e2; color: #991b1b;
    border-radius: 20px; font-weight: 700; font-size: 0.82rem;
}

/* ── Free tier banner (pricing section) ── */
.free-tier-banner {
    display: flex; align-items: center; gap: 12px;
    background: #d1fae5; border: 1px solid #6ee7b7;
    border-radius: var(--radius); padding: 16px 20px;
    font-size: 0.9rem; color: #065f46; margin-bottom: 36px;
}
.free-tier-banner svg { flex-shrink: 0; }

/* ── Test box sign-in CTA (replaces double button) ── */
.test-signin-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
    padding: 13px 16px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.82rem;
    font-family: inherit;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.test-signin-cta:hover {
    border-color: #c0a090;
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
.test-signin-cta strong { color: var(--primary); font-weight: 700; }

/* ── Responsive bento ── */
@media (max-width: 968px) {
    .features-bento { grid-template-columns: repeat(2, 1fr); }
    .bento-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
    .features-bento { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
}

/* ── Trust Bar ── */
.trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.trust-bar-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.trust-bar-text { text-align: center; color: var(--text-muted); font-size: 0.9rem; max-width: 640px; line-height: 1.6; }
.trust-bar-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center; }
.trust-stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.trust-num { font-size: 1.05rem; font-weight: 700; color: var(--heading); }
.trust-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }
@media (max-width: 600px) { .trust-divider { display: none; } .trust-stat { padding: 8px 16px; } }

/* ── Social Proof ── */
.social-proof { padding: 80px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.proof-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.proof-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, rgba(232,93,4,0.12), rgba(123,44,191,0.12)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary); }
.proof-card h3 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.proof-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) { .proof-grid { grid-template-columns: 1fr; } }

/* ── Hero secondary subtitle ── */
.hero-subtitle-2 { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-top: 10px; margin-bottom: 6px; max-width: 500px; }
.hero-cta { margin-top: 20px; display: inline-flex; }

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 72px 0;
    text-align: center;
}
.cta-banner-inner { max-width: 620px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
.cta-banner p .text-link-light { color: rgba(255,255,255,0.9); text-decoration: underline; }
.cta-banner-btn { font-size: 1rem; padding: 14px 32px; }
.cta-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 12px; margin-bottom: 0; }

/* ── Hero CTA subtext ── */
.hero-cta-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

/* ── Test box label (replaces H3 to fix heading order) ── */
.test-box-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    margin: 0;
    line-height: 1.4;
}

/* ── Extract page new sections ── */
.extract-how-section, .extract-features-section,
.extract-why-section, .extract-privacy-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}
.extract-how-section h2, .extract-features-section h2,
.extract-why-section h2, .extract-privacy-section h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--heading);
    margin-bottom: 16px;
}
.extract-how-sub {
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.extract-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.extract-step { display: flex; gap: 16px; align-items: flex-start; }
.extract-step-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); opacity: 0.35; line-height: 1; flex-shrink: 0; }
.extract-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.extract-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 32px; }
.extract-feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.extract-feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.extract-feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.extract-why-section p, .extract-privacy-section p { color: var(--text-muted); line-height: 1.75; max-width: 800px; }
.extract-why-list { margin-top: 20px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.extract-why-list li { font-size: 0.9rem; color: var(--text-muted); padding-left: 20px; position: relative; line-height: 1.6; }
.extract-why-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
@media (max-width: 768px) {
    .extract-steps { grid-template-columns: 1fr; }
    .extract-features-grid { grid-template-columns: 1fr; }
}

/* ── Background Job Progress Bar ─────────────────────────────────────────── */
.job-progress-wrap { padding: 16px 0 8px; }
.job-progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.88rem; font-weight: 600; color: var(--heading); }
.job-eta { font-size: 0.8rem; color: var(--text-dim); font-weight: 400; }
.job-progress-bar-bg { height: 8px; border-radius: 99px; background: var(--border); overflow: hidden; }
.job-progress-bar { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--primary), #7c5cbf); transition: width 0.6s ease; }
.job-progress-count { font-size: 0.78rem; color: var(--text-dim); margin-top: 6px; }
.job-leave-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 10px; padding: 8px 12px; background: rgba(99,71,163,0.07); border-radius: 8px; border-left: 3px solid var(--primary); }
/* ── Bulk summary stats bar ───────────────────────────────────────────────── */
.bulk-summary { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.bs-stat { font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.bs-stat.valid       { background: #d1fae5; color: #065f46; }
.bs-stat.invalid     { background: #fee2e2; color: #991b1b; }
.bs-stat.unknown     { background: #fef3c7; color: #92400e; }
.bs-stat.unsupported { background: var(--border); color: var(--text-dim); }
.bulk-results { max-height: 320px; }

/* ── Offline / privacy badge strip (extract page) ── */
.offline-strip {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin: 18px 0 0;
}
.offline-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: var(--radius-full);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.01em;
    border: 1.5px solid;
}
.offline-badge.green  { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.offline-badge.blue   { background: #e0f2fe; color: #0c4a6e; border-color: #7dd3fc; }
.offline-badge.purple { background: #f3e8ff; color: #581c87; border-color: #c4b5fd; }
.offline-badge svg    { flex-shrink: 0; }

/* Privacy callout box */
.privacy-callout {
    background: var(--surface); border: 1.5px solid var(--border);
    border-radius: 14px; padding: 22px 26px; margin-top: 28px;
    display: flex; gap: 16px; align-items: flex-start;
}
.privacy-callout-icon {
    flex-shrink: 0; width: 40px; height: 40px;
    background: #d1fae5; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.privacy-callout-text h4 {
    font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; color: var(--text);
}
.privacy-callout-text p  {
    font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}
.privacy-callout-text a  { color: var(--primary); font-weight: 600; text-decoration: none; }
.privacy-callout-text a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .offline-strip    { gap: 8px; }
    .offline-badge    { font-size: 0.73rem; padding: 6px 11px; }
    .privacy-callout  { flex-direction: column; gap: 10px; padding: 16px; }
    .extract-results-header { flex-direction: column; align-items: flex-start; }
    .extract-export-btns { width: 100%; }
    .extract-export-btns .btn-sm-outline { font-size: 0.75rem; padding: 6px 10px; }
}

/* ── Partial results / stuck / streaming badges ───────────────────────────── */
.bs-stat.partial {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
  animation: pulse-partial 2s ease-in-out infinite;
}
@keyframes pulse-partial {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
.job-stuck-note {
  margin-top: 10px;
  padding: 8px 12px;
  background: #fff8e1;
  border-left: 3px solid #ffc107;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #7a5c00;
}


.extract-below-textarea {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.extract-below-textarea .upload-file-label {
    flex-shrink: 0;
}
.extract-upload-note {
    font-size: 0.73rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.55;
    padding: 0 2px;
    flex: 1;
}
@media (max-width: 600px) {
    .extract-below-textarea { flex-direction: column; align-items: flex-start; gap: 6px; }
    .extract-input-actions { flex-wrap: wrap; gap: 6px; }
    .extract-input-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
    .nav-actions .btn-signin { display: none; }

    .nav-logo { font-size: 1.05rem; }
    .nav-container { padding: 0 14px; gap: 8px; }
    
    .hero-title { font-size: 1.7rem; }
    .hero-sub { font-size: 0.85rem; }
    .hero-subtitle { font-size: 0.88rem; }
    .btn { padding: 10px 18px; font-size: 0.85rem; }
    .test-box { padding: 18px 14px; }
    .tab-btn { padding: 8px 12px; font-size: 0.8rem; }
    .stat-card { padding: 16px 12px; }
    .section-title { font-size: 1.4rem; }
    .verify-result .result-email { font-size: 0.9rem; word-break: break-all; }
}
