/* =============================================
   PRICE FOR MY TRADE — Main Stylesheet
   ============================================= */

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

:root {
    --navy: #0a1628;
    --blue: #1a3a6b;
    --accent: #e84545;
    --accent-hover: #c93030;
    --gold: #f5a623;
    --white: #ffffff;
    --light-gray: #f4f6f9;
    --mid-gray: #e2e8f0;
    --text: #1a202c;
    --muted: #64748b;
    --border: #cbd5e1;
    --card-shadow: 0 8px 40px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- HEADER ---- */
.site-header {
    background: var(--navy);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

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

.logo-dot {
    color: var(--accent);
}

.header-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2447 60%, #1a3a6b 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,69,69,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hero-text {
    padding-top: 10px;
}

.hero-text h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* ---- FORM CARD ---- */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 32px 28px 20px;
    position: relative;
}

/* Progress Bar */
.progress-bar-wrap {
    margin-bottom: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

#step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-pct {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
}

.progress-track {
    background: var(--mid-gray);
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff6b6b);
    border-radius: 99px;
    width: 50%;
    transition: width 0.4s ease;
}

/* Form steps */
.form-step { }
.form-step.hidden { display: none; }

.form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.field-group {
    margin-bottom: 14px;
}

.field-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.field-group input,
.field-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    appearance: auto;
}

.field-group input:focus,
.field-group select:focus {
    outline: none;
    border-color: var(--blue);
}

.field-group input::placeholder {
    color: #b0bec5;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Buttons */
.btn-primary {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-submit {
    background: #1a8a3a;
}

.btn-submit:hover {
    background: #157030;
}

.btn-back {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    padding: 6px;
}

.btn-back:hover {
    color: var(--text);
}

.legal-text {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--mid-gray);
}

.trust-badges span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}

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

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ---- WHY US ---- */
.why-us {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-item {
    padding: 28px;
    border: 2px solid var(--mid-gray);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.why-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(232,69,69,0.08);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.why-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
    background: var(--navy);
    padding: 50px 0;
}

.proof-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* ---- FINAL CTA ---- */
.final-cta {
    background: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.btn-cta {
    display: inline-block;
    width: auto;
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--navy);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-area {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- THANK YOU PAGE ---- */
.thankyou-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0f2447 100%);
}

.thankyou-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 50px 40px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.check-circle {
    width: 72px;
    height: 72px;
    background: #1a8a3a;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 900;
}

.thankyou-card h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
}

.ty-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.ty-sub {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.ty-details {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.ty-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.ty-icon { font-size: 1.2rem; }

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

.ty-reminder a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* ---- ADMIN PAGE ---- */
.admin-section {
    padding: 50px 0;
    min-height: calc(100vh - 120px);
    background: var(--light-gray);
}

.admin-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
}

.lead-count {
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.88rem;
}

.leads-table th {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.leads-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--mid-gray);
    color: var(--text);
}

.leads-table tr:last-child td {
    border-bottom: none;
}

.leads-table tr:hover td {
    background: var(--light-gray);
}

.leads-table a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.date-cell { color: var(--muted); font-size: 0.8rem; }
.name-cell { font-weight: 600; }
.vehicle-cell { font-weight: 600; color: var(--blue); }

.no-leads {
    background: var(--white);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
}

/* ---- SHAKE ANIMATION ---- */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake { animation: shake 0.5s ease; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .proof-banner {
        gap: 30px;
    }

    .proof-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0 50px;
    }

    .form-card {
        padding: 24px 18px 16px;
    }

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

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-trust {
        gap: 12px;
    }

    .thankyou-card {
        padding: 36px 24px;
    }

    .btn-cta {
        padding: 16px 24px;
        font-size: 0.95rem;
    }
}

/* ---- TESTING BAR ---- */
.testing-bar {
    background: #f5a623;
    color: #1a202c;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    flex-wrap: wrap;
    z-index: 200;
    position: relative;
}

.testing-bar a {
    color: #1a202c;
    text-decoration: underline;
    font-weight: 700;
}

.testing-bar a:hover {
    color: #0a1628;
}

/* ---- ADMIN LOGIN ---- */
.login-section {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0f2447 100%);
    padding: 40px 20px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 40px 36px;
    width: 100%;
    max-width: 400px;
}

.login-card h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.login-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 24px;
}

/* ---- ADMIN HEADER LOGOUT ---- */
.btn-logout {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.btn-logout:hover {
    background: rgba(255,255,255,0.25);
}

/* ---- SETTINGS PANEL ---- */
.settings-panel {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 28px;
    overflow: hidden;
}

.settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    user-select: none;
    background: var(--light-gray);
    transition: background 0.15s;
}

.settings-toggle:hover {
    background: var(--mid-gray);
}

.settings-arrow {
    font-size: 0.75rem;
    color: var(--muted);
}

.settings-body {
    display: none;
    padding: 24px 20px 20px;
    border-top: 1px solid var(--border);
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.settings-section h3 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 14px;
}

.settings-hint {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 6px;
}

/* ---- SUCCESS / ERROR MESSAGES ---- */
.success-msg {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.error-msg {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ---- TABLE ACTIONS ---- */
.table-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.select-all-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
}

.btn-export {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.btn-export:hover {
    background: #122d57;
}

/* ---- EXPAND BUTTON ---- */
.expand-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
    font-family: 'Inter', sans-serif;
}

.expand-btn:hover {
    background: var(--mid-gray);
    color: var(--text);
}

/* ---- LEAD DETAIL ROW ---- */
.detail-row td {
    background: #f8fafc;
    padding: 16px 20px;
    border-bottom: 1px solid var(--mid-gray);
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--muted);
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.detail-value a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

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

    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- SETTINGS ACTIONS ROW ---- */
.settings-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-test-email {
    background: none;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: 'Inter', sans-serif;
}

.btn-test-email:hover {
    background: var(--blue);
    color: var(--white);
}

/* ---- ADMIN HEADER WITH SEARCH ---- */
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
}

.admin-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lead-search {
    padding: 9px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    width: 260px;
    transition: border-color 0.2s;
}

.lead-search:focus {
    outline: none;
    border-color: var(--blue);
}

.status-filter-select {
    padding: 9px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s;
}

.status-filter-select:focus {
    outline: none;
    border-color: var(--blue);
}

.filter-count {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

/* ---- STATUS SELECT (inline in table) ---- */
.status-select {
    border: none;
    border-radius: 99px;
    padding: 4px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    transition: background 0.15s;
}

.status-select.status-new {
    background: #dbeafe;
    color: #1e40af;
}

.status-select.status-contacted {
    background: #fef3c7;
    color: #92400e;
}

.status-select.status-closed {
    background: #d1fae5;
    color: #065f46;
}

.status-select.status-junk {
    background: #f1f5f9;
    color: #64748b;
}

.status-saved {
    font-size: 0.78rem;
    color: #065f46;
    font-weight: 700;
    margin-left: 4px;
    transition: opacity 0.3s;
    opacity: 0;
}

/* ---- NOTES ROW ---- */
.notes-row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--mid-gray);
}

.notes-row .detail-label {
    display: block;
    margin-bottom: 6px;
}

.notes-textarea {
    width: 100%;
    min-height: 72px;
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    resize: vertical;
    transition: border-color 0.2s;
}

.notes-textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.notes-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-save-notes {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.btn-save-notes:hover {
    background: #122d57;
}

.btn-delete-lead {
    background: none;
    border: 2px solid #fca5a5;
    color: #dc2626;
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s, color 0.15s;
    margin-left: auto;
}

.btn-delete-lead:hover {
    background: #fee2e2;
}

/* ---- PAGINATION ---- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 0;
}

.page-btn {
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--blue);
    border-radius: var(--radius-sm);
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.page-btn:hover {
    background: var(--light-gray);
    border-color: var(--blue);
}

.page-btn-disabled {
    color: var(--muted);
    cursor: default;
    pointer-events: none;
    border-color: var(--mid-gray);
}

.page-info {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
}

/* ---- HONEYPOT ---- */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}
