:root {
    --bg: #070b14;
    --bg-soft: #0d1424;
    --surface: rgba(16, 24, 40, 0.72);
    --surface-strong: #111827;
    --border: rgba(148, 163, 184, 0.16);
    --text: #eef2ff;
    --text-muted: #94a3b8;
    --primary: #38bdf8;
    --primary-strong: #0ea5e9;
    --accent: #f59e0b;
    --success: #22c55e;
    --error: #ef4444;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
    --radius: 20px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
}

svg.lucide,
[data-lucide] {
    width: 1.15rem;
    height: 1.15rem;
    stroke: currentColor;
    flex-shrink: 0;
}

svg.lucide {
    display: inline-block;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.12), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.08), transparent 35%);
    pointer-events: none;
    z-index: -2;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
    pointer-events: none;
    z-index: -1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(7, 11, 20, 0.72);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(245, 158, 11, 0.25));
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: var(--primary);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1rem;
}

.brand-text small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
    background: rgba(56, 189, 248, 0.12);
}

.nav-link.is-active {
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.25);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
}

.site-main {
    padding-block: 2rem 4rem;
}

.hero {
    padding-block: 1rem 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #fcd34d;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.eyebrow svg.lucide,
.eyebrow [data-lucide] {
    width: 1rem;
    height: 1rem;
}

.hero-copy h1,
.page-header h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-copy p,
.page-header p {
    margin: 0;
    color: var(--text-muted);
    max-width: 56ch;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #cbd5e1;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid var(--border);
}

.hero-features svg.lucide,
.hero-features [data-lucide] {
    color: var(--primary);
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.form-card,
.filter-card,
.table-card {
    padding: 1.5rem;
}

.card-header,
.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.card-header {
    align-items: flex-start;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    flex-shrink: 0;
}

.card-header h2,
.table-header h2 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
}

.card-header p,
.table-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.lead-form {
    display: grid;
    gap: 1rem;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
}

.filter-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
    flex: 1 1 420px;
}

.field-checkbox {
    grid-column: 1 / -1;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border);
    color: #cbd5e1;
    font-size: 0.92rem;
    cursor: pointer;
}

.checkbox-row input {
    margin-top: 0.2rem;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.info-card code {
    color: #bae6fd;
    font-size: 0.85em;
}

.filter-actions {
    flex: 0 0 auto;
}

.filter-actions .btn {
    min-width: 180px;
    white-space: nowrap;
}

.filter-card-header {
    margin-bottom: 1rem;
}

.card-header-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field > span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
}

.input-wrap {
    position: relative;
}

.input-wrap svg.lucide,
.input-wrap [data-lucide] {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.input-wrap input {
    width: 100%;
    padding: 0.9rem 0.95rem 0.9rem 2.7rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.85);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.input-wrap-date input[type='date'] {
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 0.95rem 0.9rem 2.7rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.85);
    color: var(--text);
    color-scheme: dark;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.input-wrap-date input[type='date']:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.field input[type='date']:not(.input-wrap-date input) {
    width: 100%;
    padding: 0.9rem 0.95rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.85);
    color: var(--text);
    color-scheme: dark;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.field-error {
    color: #fca5a5;
    font-size: 0.82rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 14px;
    padding: 0.95rem 1.2rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #04111d;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(14, 165, 233, 0.34);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 600;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.08);
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.alert svg.lucide,
.alert [data-lucide] {
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #bbf7d0;
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fecaca;
}

.alert p,
.alert .muted {
    margin: 0.25rem 0 0;
}

.muted {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.stats-strip {
    padding-top: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.45));
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.25);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.35);
}

.stat-card svg.lucide,
.stat-card [data-lucide] {
    margin: 0 auto 0.75rem;
    color: var(--accent);
    width: 1.5rem;
    height: 1.5rem;
}

.stat-card strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.stat-card span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.page-header {
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.page-header .container {
    max-width: 720px;
}

.page-header .eyebrow {
    margin-inline: auto;
}

.statuses-section .container {
    display: grid;
    gap: 1.25rem;
}

.id-cell {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.site-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-table tbody tr.is-highlighted {
    background: rgba(56, 189, 248, 0.1);
    box-shadow: inset 3px 0 0 var(--primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    font-size: 0.82rem;
    white-space: nowrap;
}

.table-wrap {
    overflow-x: auto;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.status-table th,
.status-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.status-table th {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.status-table tbody tr {
    transition: background var(--transition);
}

.status-table tbody tr:hover {
    background: rgba(56, 189, 248, 0.05);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: capitalize;
    background: rgba(148, 163, 184, 0.14);
}

.status-new {
    background: rgba(56, 189, 248, 0.15);
    color: #7dd3fc;
}

.status-approved,
.status-converted {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.status-rejected,
.status-failed {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.ftd-yes,
.ftd-no {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.ftd-yes {
    color: #86efac;
}

.ftd-no {
    color: var(--text-muted);
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 2.5rem 1rem !important;
}

.empty-state svg.lucide,
.empty-state [data-lucide] {
    margin: 0 auto 0.75rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding-block: 1.25rem 2rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 700ms ease forwards;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 120ms;
}

.delay-2 {
    animation-delay: 240ms;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.iti {
    width: 100%;
}

.phone-field .iti {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.85);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.phone-field .iti:focus-within {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.phone-field .iti__country-container {
    position: static;
    top: auto;
    bottom: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0;
    border-right: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.phone-field .iti__selected-country {
    background: transparent;
    height: 100%;
}

.phone-field .iti__selected-country-primary {
    padding: 0 0.35rem 0 0.75rem;
    height: 100%;
}

.phone-field .iti .iti__selected-dial-code {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
    padding-right: 0.75rem;
    white-space: nowrap;
    line-height: 1;
}

.phone-field .iti input.iti__tel-input,
.phone-field .iti input[type='tel'] {
    flex: 1;
    width: auto !important;
    min-width: 0;
    min-height: 48px;
    padding: 0.9rem 0.95rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text);
    box-shadow: none !important;
}

.phone-field .iti input.iti__tel-input:focus,
.phone-field .iti input[type='tel']:focus {
    outline: none;
    box-shadow: none !important;
}

.phone-field .iti input.iti__tel-input::placeholder,
.phone-field .iti input[type='tel']::placeholder {
    color: rgba(148, 163, 184, 0.75);
}

.iti__country-list {
    background: var(--surface-strong);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 4px;
    z-index: 30;
}

.iti__country.iti__highlight {
    background: rgba(56, 189, 248, 0.12);
}

.iti__search-input {
    background: rgba(15, 23, 42, 0.85);
    color: var(--text);
    border-color: var(--border);
    border-radius: 10px;
    margin: 0.5rem;
    width: calc(100% - 1rem);
}

.thank-you-section {
    padding-block: 2rem 4rem;
}

.thank-you-card {
    max-width: 640px;
    margin-inline: auto;
    padding: 2.5rem 2rem;
    text-align: center;
}

.thank-you-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.thank-you-icon svg.lucide,
.thank-you-icon [data-lucide] {
    width: 42px;
    height: 42px;
}

.thank-you-card h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.thank-you-card p {
    margin: 0 auto;
    max-width: 46ch;
    color: var(--text-muted);
}

.lead-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #bae6fd;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.status-unknown {
    background: rgba(148, 163, 184, 0.14);
    color: #cbd5e1;
}

.content-section {
    padding-block: 3rem;
}

.content-section-alt {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(7, 11, 20, 0.3));
    border-block: 1px solid var(--border);
}

.brand-icon svg.lucide,
.brand-icon [data-lucide] {
    width: 1.35rem;
    height: 1.35rem;
}

.nav-link svg.lucide,
.nav-link [data-lucide],
.btn svg.lucide,
.btn [data-lucide],
.footer-links svg.lucide,
.footer-links [data-lucide],
.badge svg.lucide,
.badge [data-lucide],
.lead-id-badge svg.lucide,
.lead-id-badge [data-lucide],
.card-icon svg.lucide,
.card-icon [data-lucide],
.ftd-yes svg.lucide,
.ftd-no svg.lucide {
    width: 1.1rem;
    height: 1.1rem;
}

.card-icon svg.lucide,
.card-icon [data-lucide] {
    width: 1.35rem;
    height: 1.35rem;
}

.btn svg.lucide,
.btn [data-lucide] {
    width: 1rem;
    height: 1rem;
}

.section-head {
    max-width: 640px;
    margin-bottom: 2rem;
}

.section-head.centered {
    margin-inline: auto;
    text-align: center;
}

.section-head.centered .eyebrow {
    margin-inline: auto;
}

.section-head h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
}

.section-head p {
    margin: 0;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.features-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-icon svg.lucide,
.feature-icon [data-lucide] {
    width: 1.35rem;
    height: 1.35rem;
}

.feature-card {
    padding: 1.35rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.5));
    border: 1px solid var(--border);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.2);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 16px 48px rgba(14, 165, 233, 0.12);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid var(--border);
}

.step-num {
    display: grid;
    place-items: center;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.step-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.step-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.steps-list-compact .step-item {
    padding: 1rem 1.15rem;
}

.split-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
}

.split-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.split-copy p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #cbd5e1;
}

.check-list svg.lucide,
.check-list [data-lucide] {
    color: #86efac;
    flex-shrink: 0;
}

.split-panel {
    padding: 1.5rem;
}

.quote-block svg.lucide,
.quote-block [data-lucide] {
    color: var(--accent);
    margin-bottom: 1rem;
}

.quote-block p {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #dbeafe;
}

.quote-block footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.quote-block footer span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 400;
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 1.15rem 1.15rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.cta-section {
    padding-block: 1rem 3rem;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: var(--shadow);
}

.cta-card h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.cta-card p {
    margin: 0;
    color: var(--text-muted);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.info-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.5));
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.2);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 0.85rem;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
}

.info-card-icon svg.lucide,
.info-card-icon [data-lucide] {
    width: 1.35rem;
    height: 1.35rem;
}

.info-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
}

.info-card p,
.info-card ul {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.info-card ul {
    padding-left: 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.info-card li strong {
    color: #cbd5e1;
}

.next-steps {
    max-width: 720px;
    margin: 1.25rem auto 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.5));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.next-steps h2 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    text-align: center;
}

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

    .filter-fields {
        grid-template-columns: 1fr;
        flex-basis: 100%;
    }

    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-actions,
    .filter-actions .btn {
        width: 100%;
    }

    .stats-grid,
    .features-grid,
    .features-grid-3,
    .info-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-block {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        align-items: stretch;
    }

    .table-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(1120px, calc(100% - 1.25rem));
    }

    .site-main {
        padding-block: 1.25rem 2.5rem;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .brand-text small {
        display: none;
    }

    .brand-text strong {
        font-size: 0.92rem;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        z-index: 30;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        border-radius: 16px;
        background: rgba(7, 11, 20, 0.98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        justify-content: center;
        padding: 0.85rem 1rem;
    }

    .hero {
        padding-block: 0.5rem 1.5rem;
    }

    .hero-copy h1,
    .page-header h1 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
    }

    .hero-copy p,
    .page-header p {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 1.25rem 0 1rem;
    }

    .form-card,
    .filter-card,
    .table-card,
    .next-steps,
    .thank-you-card {
        padding: 1.15rem;
    }

    .content-section {
        padding-block: 2rem;
    }

    .cta-card {
        padding: 1.25rem;
    }

    .cta-card .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .field input,
    .input-wrap input,
    .input-wrap-date input[type='date'],
    .phone-field .iti input.iti__tel-input,
    .phone-field .iti input[type='tel'] {
        font-size: 16px;
    }

    .phone-field .iti {
        min-width: 0;
    }

    .phone-field .iti .iti__selected-dial-code {
        font-size: 0.85rem;
        padding-right: 0.5rem;
    }

    .btn {
        min-height: 48px;
    }

    .stats-grid,
    .features-grid,
    .features-grid-3,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .step-num {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.85rem;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }

    .table-wrap {
        margin: 0 -0.25rem;
        padding: 0 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .status-table {
        min-width: 0;
    }

    .status-table thead {
        display: none;
    }

    .status-table tbody tr {
        display: grid;
        gap: 0.5rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--border);
    }

    .status-table tbody tr.is-highlighted {
        padding-inline: 0.65rem;
        margin-inline: -0.65rem;
        border-radius: 12px;
    }

    .status-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.75rem;
        border-bottom: 0;
        padding: 0.25rem 0;
        text-align: right;
    }

    .status-table td::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: uppercase;
        text-align: left;
        flex-shrink: 0;
        padding-top: 0.1rem;
    }

    .status-table td[data-label='ID'] {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .status-table td[data-label='ID']::before {
        margin-bottom: 0.15rem;
    }

    .status-table td.empty-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem 0.5rem !important;
    }

    .status-table td.empty-state::before {
        display: none;
    }

    .id-cell {
        justify-content: flex-end;
    }

    .badge {
        white-space: normal;
        text-align: center;
    }

    .card-header-main {
        flex-direction: column;
        gap: 0.75rem;
    }

    .filter-actions .btn {
        min-width: 0;
    }
}

@media (max-width: 380px) {
    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 0.85rem;
        max-width: 9.5rem;
        line-height: 1.25;
    }

    .eyebrow {
        font-size: 0.78rem;
        padding: 0.4rem 0.65rem;
    }
}

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

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
