/* ─── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0a1628;
    --navy-light: #132040;
    --blue: #1a56db;
    --blue-light: #3b82f6;
    --sky: #e8f0fe;
    --orange: #e67e22;
    --gold: #f0a500;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─── Navbar ─────────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
}

.nav-content { display: flex; align-items: center; justify-content: space-between; }

.logo {
    font-size: 1.5rem; font-weight: 800; color: var(--white);
    text-decoration: none; letter-spacing: -0.5px;
}

.logo::before { content: "\26F5 "; }

.nav-cta {
    background: var(--orange); color: var(--white);
    padding: 10px 24px; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: background 0.2s;
}
.nav-cta:hover { background: #d35400; }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a6b 100%);
    padding: 160px 0 120px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 80%, rgba(26, 86, 219, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    background: rgba(230, 126, 34, 0.15);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 126, 34, 0.3);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 700px;
    margin: 0 auto 20px;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.3);
}
.btn-primary:hover { background: #d35400; transform: translateY(-1px); }
.btn-primary:disabled {
    background: var(--gray-300);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; text-align: center; }

/* ─── Social Proof ───────────────────────────────────────────────── */
.social-proof {
    padding: 64px 0 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── Features ───────────────────────────────────────────────────── */
.features { padding: 96px 0; background: var(--white); }

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 56px;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── Urgency Banner ─────────────────────────────────────────────── */
.urgency-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.urgency-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(234, 179, 8, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.06) 0%, transparent 50%);
}
.urgency-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.urgency-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: rgba(234, 179, 8, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fbbf24;
    animation: pulse-soft 2s ease-in-out infinite;
}
@keyframes pulse-soft {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(234, 179, 8, 0); }
}
.urgency-text {
    flex: 1;
}
.urgency-text h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.urgency-number {
    color: #fbbf24;
    font-size: 1.3rem;
}
.urgency-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.urgency-gauge {
    flex-shrink: 0;
    width: 160px;
    text-align: center;
}
.gauge-bar {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.12);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 6px;
}
.gauge-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #16a34a 0%, #eab308 60%, #ef4444 100%);
    transition: width 1.5s ease-out;
}
.gauge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

@media (max-width: 768px) {
    .urgency-content { flex-direction: column; text-align: center; }
    .urgency-gauge { width: 200px; }
}

/* ─── Pricing ────────────────────────────────────────────────────── */
.pricing {
    padding: 96px 0;
    background: var(--gray-50);
}

.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.pricing-header {
    padding: 40px 36px 32px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.price { margin-bottom: 24px; }

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -2px;
}

.price-label {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: "\2713 ";
    color: var(--blue);
    font-weight: 700;
    margin-right: 8px;
}

.pricing-form { padding: 32px 36px 36px; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--gray-700);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus { border-color: var(--blue); }

/* ─── Upload Zone ────────────────────────────────────────────────── */
.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 16px;
    color: var(--gray-500);
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--blue);
    background: var(--sky);
    color: var(--blue);
}

.upload-text { margin-top: 12px; font-size: 0.95rem; }
.upload-link { color: var(--blue); font-weight: 600; text-decoration: underline; }
.upload-hint { font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }

/* ─── Optional Uploads ───────────────────────────────────────── */
.optional-uploads { margin-bottom: 16px; }

.optional-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.optional-row { display: flex; gap: 8px; margin-bottom: 8px; }

.btn-optional {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 12px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    background: none;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-optional:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); }
.btn-optional.has-file { border-style: solid; border-color: var(--blue); color: var(--blue); background: var(--sky); }

.file-icon { font-size: 0.8rem; font-weight: 600; color: var(--gray-500); margin-right: 4px; }

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--sky);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.file-name { font-size: 0.9rem; font-weight: 500; color: var(--blue); }

.file-remove {
    background: none; border: none; cursor: pointer;
    font-size: 1.3rem; color: var(--gray-500);
    line-height: 1;
}
.file-remove:hover { color: var(--gray-900); }

.payment-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq { padding: 96px 0; background: var(--white); }

.faq-list { max-width: 680px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-500);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ─── Preview Modal ──────────────────────────────────────────────── */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 { font-size: 1.1rem; font-weight: 700; }

.modal-close {
    background: none; border: none; cursor: pointer;
    font-size: 1.5rem; color: var(--gray-500); line-height: 1;
}
.modal-close:hover { color: var(--gray-900); }

.modal-body { padding: 24px; }

.preview-meta {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.8;
}
.preview-meta strong { color: var(--navy); }

.preview-letter {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.8;
    white-space: pre-line;
    color: var(--gray-700);
}

.preview-letter-edit {
    width: 100%;
    min-height: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gray-700);
    resize: vertical;
    transition: border-color 0.2s;
}
.preview-letter-edit:focus {
    outline: none;
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.preview-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.save-status {
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: auto;
}

.preview-attachments {
    margin-top: 16px;
    display: flex; gap: 8px; flex-wrap: wrap;
}

.attachment-tag {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--sky);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Grade badges */
.grade-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: default;
}
.grade-a { background: #dcfce7; color: #166534; }
.grade-b { background: #e0f2fe; color: #075985; }
.grade-c { background: #fef9c3; color: #854d0e; }
.grade-d { background: #fed7aa; color: #9a3412; }
.grade-f { background: #fee2e2; color: #991b1b; }

.btn-preview {
    background: none; border: none; cursor: pointer;
    color: var(--gray-400); padding: 4px;
    transition: color 0.2s;
}
.btn-preview:hover { color: var(--blue); }

/* ─── Cookie Banner ──────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-content {
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.cookie-content p {
    flex: 1;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}
.cookie-content a {
    color: var(--blue-light);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .cookie-content { flex-direction: column; text-align: center; }
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.5);
    padding: 32px 0;
    font-size: 0.85rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links {
    display: flex; gap: 20px;
}
.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
    .footer-content { flex-direction: column; gap: 12px; text-align: center; }
}

/* ─── Confirmation Page ──────────────────────────────────────────── */
.confirmation {
    padding: 80px 0;
    min-height: 70vh;
    display: flex; align-items: center;
}
.confirmation-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.confirmation-icon {
    margin-bottom: 24px;
}
.confirmation-card h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.confirmation-sub {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}
.confirmation-steps {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}
.confirmation-step {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}
.confirmation-step.done {
    background: #dcfce7;
    color: #166534;
}
.confirmation-step.next {
    background: var(--sky);
    color: var(--blue);
    font-weight: 600;
}
.step-check {
    font-weight: 700; font-size: 0.9rem;
}
.step-num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
}
.confirmation-hint {
    margin-top: 32px;
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.confirmation-link {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--gray-700);
    word-break: break-all;
    user-select: all;
}

@media (max-width: 600px) {
    .confirmation-steps { flex-direction: column; align-items: center; }
}

/* ─── Legal Pages ────────────────────────────────────────────────── */
.legal-page {
    padding: 80px 0 64px;
    max-width: 720px;
    margin: 0 auto;
}
.legal-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.legal-updated {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 32px;
}
.legal-page h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 8px;
}
.legal-page p, .legal-page li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-700);
}
.legal-page ul {
    padding-left: 24px;
    margin: 8px 0;
}
.legal-page li {
    margin-bottom: 4px;
}
.legal-page a {
    color: var(--blue);
}

/* ─── Dashboard ──────────────────────────────────────────────────── */
.dashboard-header {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 32px;
}

.dashboard-header h1 { font-size: 1.5rem; font-weight: 700; }
.dashboard-header p { color: rgba(255,255,255,0.6); margin-top: 4px; }

.dashboard-body { padding: 32px 0; }

.filters-bar {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 24px; align-items: center;
}

.filters-bar select, .filters-bar input {
    padding: 10px 14px; border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: inherit;
    font-size: 0.9rem; outline: none;
}
.filters-bar select:focus, .filters-bar input:focus { border-color: var(--blue); }
.filters-bar input { flex: 1; min-width: 200px; }

.actions-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; gap: 12px; flex-wrap: wrap;
}

.actions-bar label { font-size: 0.9rem; font-weight: 500; cursor: pointer; }
.selection-count { font-size: 0.85rem; color: var(--gray-500); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ─── Table ──────────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); }

table {
    width: 100%; border-collapse: collapse;
    font-size: 0.9rem;
}

thead { background: var(--gray-50); }

th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

td {
    padding: 12px 16px;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-700);
}

tr:hover td { background: var(--gray-50); }

tr.has-offre td { background: rgba(240, 165, 0, 0.04); }
tr.has-offre:hover td { background: rgba(240, 165, 0, 0.08); }

.offre-badge {
    display: inline-block;
    background: rgba(230, 126, 34, 0.1);
    color: var(--orange);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}
.offre-badge:hover { background: rgba(230, 126, 34, 0.2); }

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-non-envoye { background: var(--gray-100); color: var(--gray-500); }
.status-envoye { background: rgba(26, 86, 219, 0.1); color: var(--blue); }
.status-ouvert { background: rgba(16, 185, 129, 0.1); color: #059669; }
.status-reponse { background: rgba(240, 165, 0, 0.1); color: var(--orange); }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-stats { gap: 24px; }
    .pricing-header, .pricing-form { padding: 24px 20px; }
    .filters-bar { flex-direction: column; }
    .filters-bar select, .filters-bar input { width: 100%; }
    .hero { padding: 120px 0 100px; }
}
