:root {
    --bg-color: #0b0f19;
    --panel-bg: rgba(20, 26, 43, 0.6);
    --panel-border: rgba(255, 255, 255, 0.08);
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --accent: #0ea5e9;
    --success: #10b981;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --input-bg: rgba(15, 23, 42, 0.8);
    --input-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: block;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 50px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 98%;
    padding: 2rem 3rem;
    margin: 5vh auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}

header {
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
}

.header-left,
.header-right {
    flex: 1;
    display: flex;
}

.header-right {
    justify-content: flex-end;
}

.modal-content {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
}

.banner-modal {
    max-width: 900px;
}

.top-bar {
    width: 100%;
    background: var(--panel-bg);
    border-bottom: 1px solid var(--panel-border);
    backdrop-filter: var(--glass-blur);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    animation: slideDown 0.8s ease-out;
}

.top-bar-inner {
    padding: 0 2rem;
    max-width: 98%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* Space out nav and dashboard */
    align-items: center;
}

.top-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.logo i {
    color: var(--accent);
}

.logo span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
}

.hero-media {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.demo-gif {
    max-width: 100%;
    width: 800px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--panel-border);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* User Dashboard & Auth */
.user-dashboard {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.plan-details-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.plan-details-badge span:first-child {
    font-weight: 600;
}

.quota-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.quota-badge {
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.upgrade-link {
    color: var(--success);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.upgrade-link:hover {
    color: #34d399;
    text-decoration: underline;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: #ef4444;
}

.login-btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Glass Panels */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--panel-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
#scraper-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 0.75rem;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.input-wrapper input:focus+i,
.input-wrapper input:focus~i {
    color: var(--accent);
}

input::placeholder {
    color: #475569;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--input-bg);
    padding: 1rem;
    border: 1px solid var(--input-border);
    border-radius: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--text-muted);
    border-radius: 0.25rem;
    outline: none;
    cursor: pointer;
    position: relative;
    background: transparent;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Buttons */
.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary);
}

.primary-btn:active {
    transform: translateY(1px);
}

.primary-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.secondary-btn {
    background: var(--input-bg);
    color: var(--text-main);
    border: 1px solid var(--input-border);
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

.secondary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loader inside button */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
}

.hidden {
    display: none !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Progress Section */
#progress-container {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--panel-border);
    animation: fadeIn 0.5s ease-out;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: var(--input-bg);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Modal / Popup Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: scaleUp 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-main);
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Results Panel */
.results-panel {
    display: flex;
    flex-direction: column;
    animation-delay: 0.2s;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--panel-border);
}

.results-header h2 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.results-header h2 i {
    color: var(--primary);
}

.table-container {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: auto;
    max-height: 500px;
    border-radius: 0.5rem;
}

/* Custom Scrollbar */
.table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--panel-border);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

th {
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(5px);
    padding: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--panel-border);
    z-index: 10;
}

td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.95rem;
    color: #cbd5e1;
    transition: background 0.2s;
}

tbody tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.hidden-col {
    display: none !important;
}

/* Table specific styling */
.company-name {
    font-weight: 600;
    color: var(--text-main);
}

.email-tag {
    color: var(--accent);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}

.status-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.website-link {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
}

.website-link:hover {
    color: #818cf8;
}

/* Empty State */
.empty-state {
    text-align: center;
}

.empty-state:hover td {
    background: transparent;
}

.empty-state-content {
    padding: 4rem 2rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.empty-state-content i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

/* Results Footer */
.results-footer {
    padding-top: 1rem;
    margin-top: auto;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--panel-border);
}

/* Row entrance animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.new-row {
    animation: slideInRight 0.4s ease-out forwards;
}

/* Pricing Section */
.pricing-section {
    margin-top: 4rem;
    animation: fadeIn 1s ease-out;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Pricing Tabs styling */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tab-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--panel-border);
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.tier-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tier-content.active {
    display: block;
}

/* Pricing Card styling */
.pricing-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: var(--glass-blur);
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(82, 0, 255, 0.05) 0%, var(--panel-bg) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--panel-border);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.target-audience {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price span {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.features li i {
    color: var(--success);
    background: rgba(16, 185, 129, 0.15);
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 0.7rem;
}

.plan-btn {
    width: 100%;
}

/* Home View 20/80 Sidebar Layout */
#home-view main {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 5vh auto;
}

.home-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.scraper-panel {
    flex: 0 0 320px;
    position: sticky;
    top: 6rem;
}

.results-panel {
    flex: 1;
    min-width: 0;
}

/* Leads List Layout */
#results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.lead-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--panel-border);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.4s ease-out forwards;
}

.lead-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 23, 42, 0.6);
    border-color: var(--accent);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.lead-card .card-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.4rem;
    flex: 1;
    min-width: 150px;
}

.lead-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.lead-card .industry-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent);
    border-radius: 2rem;
    font-weight: 500;
    white-space: nowrap;
}

.lead-info-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex: 3;
    justify-content: center;
}

.lead-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.lead-info-item i {
    color: var(--text-muted);
    width: 16px;
    text-align: center;
}

.lead-card .card-actions {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
}

/* Responsive adjustment */
@media (max-width: 1100px) {
    #home-view main {
        flex-direction: column;
    }

    .scraper-panel {
        flex: 1;
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .lead-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .lead-info-list {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Trial Disclaimer */
#trial-disclaimer {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(82, 0, 255, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid var(--accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.5s ease-out;
}

#trial-disclaimer i {
    font-size: 1.5rem;
    color: var(--accent);
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-text h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
    color: var(--text-main);
}

.disclaimer-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.disclaimer-cta {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.2s;
    white-space: nowrap;
}

.disclaimer-cta:hover {
    transform: translateY(-2px);
    background: #0284c7;
}

/* --- LEADS DATA TABLE --- */
.table-responsive {
    width: 100%;
    margin-top: 1.5rem;
    overflow-x: auto;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--panel-border);
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.leads-table thead th {
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-muted);
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--panel-border);
    white-space: nowrap;
}

.leads-table tbody td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--panel-border);
    font-size: 0.95rem;
    color: var(--text-muted);
    vertical-align: middle;
}

.leads-table tbody tr.lead-row {
    transition: background 0.2s ease;
    opacity: 0;
    animation: fadeInRow 0.4s ease forwards;
}

.leads-table tbody tr.lead-row:hover {
    background: rgba(79, 70, 229, 0.08);
}

.leads-table tbody tr:last-child td {
    border-bottom: none;
}

@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}