/* ═══════════════════════════════════════════════
   ParkRequest - Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --success: #16a34a;
    --success-light: #dcfce7;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --error: #dc2626;
    --error-light: #fee2e2;
    --info: #0891b2;
    --info-light: #cffafe;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: 150ms ease;
}

/* ─── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
ul, ol { list-style: none; }
hr { border: none; border-top: 1px solid var(--gray-200); margin: 0.75rem 0; }

/* ─── Container ──────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Navbar ─────────────────────────────── */
.navbar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.375rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}
.navbar-brand svg { color: var(--primary); }
.navbar-logo { height: 56px !important; width: 56px !important; max-width: 56px !important; max-height: 56px !important; flex-shrink: 0; }
.navbar-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--gray-50); text-decoration: none; }

.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; background: none; border: none; font: inherit; }
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 200;
    padding: 0.25rem;
}
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    border-radius: 4px;
    text-decoration: none;
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); }

.navbar-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--gray-600); }

.property-bar {
    background: var(--primary);
    color: white;
    padding: 0.375rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* ─── Main Content ───────────────────────── */
.main-content { flex: 1; padding: 2rem 0; }

/* ─── Hero ───────────────────────────────── */
.hero { text-align: center; padding: 3rem 0 2rem; }
.hero h1 { font-size: 2.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.hero-subtitle { font-size: 1.125rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; }
.hero-actions { margin-top: 1.5rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ─── Cards ──────────────────────────────── */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.card-hover { transition: all var(--transition); }
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-50);
}
.card-header h3 { font-size: 1rem; font-weight: 600; margin: 0; }
.card-body { padding: 1.5rem; }
.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}
.card-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

/* ─── Stat Cards ─────────────────────────── */
.stat-card { text-align: center; }
.stat-card .card-body { padding: 1.25rem; }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--gray-900); line-height: 1.2; }
.stat-label { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* ─── Grid ───────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ─── Buttons ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #15803d; }
.btn-warning { background: var(--warning); color: white; }
.btn-warning:hover { background: #b45309; }
.btn-danger { background: var(--error); color: white; }
.btn-danger:hover { background: #b91c1c; }
.btn-outline { background: white; border-color: var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); }
.btn-block { width: 100%; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-sm { padding: 0.25rem 0.625rem; font-size: 0.8rem; }

/* ─── Forms ──────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}
.form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: var(--font);
    color: var(--gray-800);
    background: white;
    transition: border-color var(--transition), box-shadow var(--transition);
    line-height: 1.5;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 80px; }
input[type="file"].form-control { padding: 0.375rem; }
.form-help { display: block; font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.form-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.form-section-title:first-child { margin-top: 0; }
.search-form { display: flex; gap: 0.75rem; }
.search-form .form-control { flex: 1; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; padding-top: 1.75rem; }
.checkbox-label input[type="checkbox"] { width: 1rem; height: 1rem; }

/* ─── Tables ─────────────────────────────── */
.table-responsive { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}
.table tbody tr:hover { background: var(--gray-50); }
.table-sm th, .table-sm td { padding: 0.5rem 0.75rem; }

/* ─── Badges ─────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
}
.badge-success { background: var(--success-light); color: var(--success); }
.badge-warning { background: var(--warning-light); color: var(--warning); }
.badge-error { background: var(--error-light); color: var(--error); }
.badge-info { background: var(--info-light); color: var(--info); }
.badge-muted { background: var(--gray-100); color: var(--gray-500); }

/* ─── Alerts ─────────────────────────────── */
.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
}
.alert-success { background: var(--success-light); color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: var(--error-light); color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: var(--warning-light); color: #92400e; border: 1px solid #fde68a; }
.alert-info { background: var(--info-light); color: #155e75; border: 1px solid #a5f3fc; }
.alert-close {
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}
.alert-close:hover { opacity: 1; }

/* ─── Auth Container ─────────────────────── */
.auth-container { max-width: 480px; margin: 0 auto; }
.auth-container .card { margin-top: 1rem; }

/* ─── Page Header ────────────────────────── */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.page-header h1 { font-size: 1.5rem; font-weight: 700; }

/* ─── Filter / Pagination ────────────────── */
.filter-bar { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.pagination { display: flex; gap: 0.25rem; padding: 1rem; justify-content: center; }

/* ─── Empty State ────────────────────────── */
.empty-state { padding: 3rem 1.5rem; text-align: center; color: var(--gray-500); }

/* ─── Code Block ─────────────────────────── */
.code-block {
    background: var(--gray-800);
    color: #e2e8f0;
    padding: 1rem;
    border-radius: var(--radius);
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8rem;
    overflow-x: auto;
    line-height: 1.6;
}
code { background: var(--gray-100); padding: 0.125rem 0.375rem; border-radius: 4px; font-size: 0.85em; }

/* ─── Footer ─────────────────────────────── */
.footer {
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: auto;
}

/* ─── Landing Page ───────────────────────── */
.landing-hero {
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}
.landing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.landing-hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.landing-features {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.landing-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.landing-section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}
.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.landing-how {
    padding: 4rem 0;
}
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.step {
    text-align: center;
    max-width: 250px;
}
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.step-arrow {
    font-size: 1.5rem;
    color: var(--gray-300);
    font-weight: 300;
}
.landing-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light), #ede9fe);
    border-top: 1px solid var(--gray-200);
}
.landing-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.landing-cta p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Property card links */
.property-card-link { color: inherit; }
.property-card-link:hover { text-decoration: none; }

/* ─── FAQ Section ────────────────────────── */
.landing-faq {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--gray-100);
}
.faq-list {
    max-width: 700px;
    margin: 2rem auto 0;
}
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    background: var(--gray-50);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item[open] {
    border-color: var(--primary-light);
    background: white;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gray-800);
}
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform var(--transition);
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    padding: 0 1.25rem 1rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Landing CTA sub-link */
.landing-cta-sub {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}
.landing-cta-sub a {
    color: var(--primary);
    font-weight: 500;
}

/* ─── Services Page ──────────────────────── */
.services-hero {
    padding-bottom: 3.5rem;
}

/* Pain point cards */
.services-pain {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--gray-100);
}
.pain-card {
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}
.pain-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.pain-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.pain-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Trust / Stats */
.services-trust {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--gray-100);
}
.trust-stat {
    text-align: center;
    padding: 1.5rem 1rem;
}
.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.trust-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Contact / Quote section */
.services-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light), #ede9fe);
    border-top: 1px solid var(--gray-200);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}
.contact-info > p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.contact-detail strong {
    font-size: 0.85rem;
    color: var(--gray-700);
}
.contact-detail span {
    font-size: 0.95rem;
    color: var(--gray-600);
}
.contact-form-wrap .card {
    padding: 2rem;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.75rem;
}
.btn-block {
    display: block;
    width: 100%;
}

/* Grid helper: 4 columns */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Footer enhancements */
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.footer-links a:hover {
    color: var(--primary);
}

/* ─── Responsive: Tablet ─────────────────── */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .landing-hero h1 { font-size: 2.25rem; }
    .landing-section-title { font-size: 1.6rem; }
}

/* ─── Responsive: Services & FAQ ─────────── */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Landing hero */
    .landing-hero { padding: 2.5rem 1rem 2rem; }
    .landing-hero h1 { font-size: 1.85rem; }
    .landing-hero-subtitle { font-size: 1rem; }
    .landing-section-title { font-size: 1.4rem; }

    /* Steps: stack vertically, hide arrows */
    .steps-grid { flex-direction: column; gap: 2rem; }
    .step-arrow { display: none; }
    .step { max-width: 100%; }

    /* Feature & pain cards: 1 column handled by grid-3 rule */
    .landing-features { padding: 2.5rem 0; }
    .landing-how { padding: 2.5rem 0; }
    .landing-faq { padding: 2.5rem 0; }
    .landing-cta { padding: 2.5rem 0; }
    .landing-cta h2 { font-size: 1.35rem; }
}

/* ─── Utilities ──────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.text-warning { color: var(--warning) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-0 { padding: 0 !important; }

/* ─── Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .navbar-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 0.5rem; border-top: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }
    .navbar-menu.open { display: flex; }
    .navbar-toggle { display: block; }
    .nav-dropdown { width: 100%; }
    .dropdown-menu { position: static; box-shadow: none; border: none; }
    .nav-dropdown.open .dropdown-menu { display: block; }

    .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { flex-direction: column; align-items: flex-start; }
    .table { font-size: 0.8rem; }
    .table th, .table td { padding: 0.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .card-body { padding: 1rem; }
    .hero { padding: 2rem 0 1rem; }
    .grid-2, .grid-3, .grid-4 { gap: 1rem; }
    .landing-hero h1 { font-size: 1.5rem; }
    .landing-hero-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .feature-card { padding: 1.25rem 1rem; }
    .feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
}

/* ─── Demo Login ─────────────────────────── */
.demo-login-section { margin-top: 1.5rem; }
.demo-divider {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
}
.demo-divider span {
    background: white;
    padding: 0 0.75rem;
    position: relative;
    z-index: 1;
}
.demo-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid var(--gray-200);
}
.demo-banner {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #92400e;
    text-align: center;
    margin-bottom: 1rem;
}
