/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Color Variables */
:root {
    --primary-color: #6bb96b;
    --primary-hover: #5ea85e;
    --secondary-color: #6b7280;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --background-color: #ffffff;
    --surface-color: #f9fafb;
    --border-color: #e5e7eb;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
}

/* Page Control */
.hidden {
    display: none !important;
}

/* Sign In Page Styles */
.sign-in-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    padding: 2rem 1rem;
}

.sign-in-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.sign-in-left {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sign-in-right {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sign-in-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sign-in-logo {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.sign-in-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sign-in-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 185, 107, 0.1);
}

.sign-in-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

.back-link:hover {
    color: var(--primary-color);
}

.benefits-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Demo Page Styles */
.demo-page {
    min-height: 100vh;
    background: #f8f9fa;
}

.demo-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.demo-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-content {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.2;
}

.demo-nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.demo-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

.demo-tab {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.demo-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: #f8f9fa;
}

.demo-tab:hover {
    color: var(--primary-color);
    background: #f8f9fa;
}

.demo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: none;
}

.demo-content.active {
    display: block;
}

/* Metrics Cards */
.demo-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.metric-icon.blue { color: #3b82f6; }
.metric-icon.green { color: #10b981; }
.metric-icon.purple { color: #8b5cf6; }
.metric-icon.red { color: #ef4444; }

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.metric-value.blue { color: #3b82f6; }
.metric-value.green { color: #10b981; }
.metric-value.purple { color: #8b5cf6; }
.metric-value.red { color: #ef4444; }

/* Dashboard Grid */
.demo-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-section {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Bills Container */
.bills-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bill-card {
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background: #f8f9fa;
}

.bill-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.bill-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.bill-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

.bill-badges {
    display: flex;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.active {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-badge.completed {
    background: #d1fae5;
    color: #047857;
}

.bill-progress {
    margin-top: 0.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.progress-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.progress-bar {
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 0.25rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

/* Tasks Container */
.tasks-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-card {
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background: #f8f9fa;
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.task-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.task-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.task-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.task-date i {
    width: 0.75rem;
    height: 0.75rem;
}

.priority-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.priority-badge.high {
    background: #fee2e2;
    color: #dc2626;
}

.priority-badge.medium {
    background: #fef3c7;
    color: #d97706;
}

/* Bills Page Styles */
.bills-filter-section {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.bills-search-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-input-container {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--text-secondary);
}

.bills-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #f8f9fa;
    transition: border-color 0.2s ease;
}

.bills-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.filter-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: white;
    color: var(--text-primary);
    cursor: pointer;
}

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

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
}

.filter-btn i {
    width: 1rem;
    height: 1rem;
}

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

.bill-detail-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.bill-detail-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bill-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.bill-number-section h3.bill-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.bill-number-section h4.bill-full-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.bill-status-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.bill-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.bill-progress-section {
    margin-bottom: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-percentage {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.bill-meta-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bill-assignee,
.bill-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.meta-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--text-secondary);
}

.bill-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

.action-btn {
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    flex: 1;
}

.action-btn.primary:hover {
    background: var(--primary-hover);
}

.action-btn.secondary {
    background: #f8f9fa;
    color: var(--text-secondary);
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e9ecef;
}

.action-btn.secondary:hover {
    background: #e9ecef;
    color: var(--text-primary);
}

.action-btn.secondary i {
    width: 1rem;
    height: 1rem;
}

/* Status Badge Variants */
.status-badge.monitoring {
    background: #fff4ed;
    color: #ea580c;
}

/* Responsive Bills Grid */
@media (max-width: 768px) {
    .bills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bills-search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input-container {
        min-width: auto;
    }

    .filter-controls {
        flex-wrap: wrap;
    }

    .bill-detail-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .bill-status-badges {
        flex-direction: row;
        align-items: flex-start;
    }

    .bill-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Clients Page Styles */
.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.clients-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.add-client-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-client-btn:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.add-client-btn i {
    width: 1rem;
    height: 1rem;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.client-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.client-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.client-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-avatar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

.avatar-circle.blue {
    background: #3b82f6;
}

.avatar-circle.green {
    background: #10b981;
}

.avatar-circle.orange {
    background: #f59e0b;
}

.avatar-circle.purple {
    background: #8b5cf6;
}

.client-info h3.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.client-info p.client-industry {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.client-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
}

.client-status-badge.active {
    background: #d1fae5;
    color: #047857;
}

.client-status-badge.prospect {
    background: #e0e7ff;
    color: #4f46e5;
}

.client-metrics {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.metric-row:last-child {
    margin-bottom: 0;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.metric-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.client-contact {
    margin-bottom: 1.5rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.client-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

/* Responsive Clients Grid */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .clients-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .add-client-btn {
        justify-content: center;
    }

    .client-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .client-status-badge {
        align-self: flex-start;
    }
}

/* Legislators Page Styles */
.legislators-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.legislators-title-section h2.legislators-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.legislators-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.add-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-contact-btn:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.add-contact-btn i {
    width: 1rem;
    height: 1rem;
}

/* Legislators Filter Section */
.legislators-filter-section {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.legislators-search-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.legislators-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #f8f9fa;
    transition: border-color 0.2s ease;
}

.legislators-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

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

.legislator-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.legislator-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.legislator-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.legislator-avatar {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.avatar-photo {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-circle.gray {
    background: #6b7280;
}

.legislator-info h3.legislator-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.legislator-info p.legislator-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 0.125rem 0;
}

.legislator-info p.legislator-district {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.legislator-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.party-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.party-badge.democrat {
    background: #dbeafe;
    color: #1d4ed8;
}

.party-badge.republican {
    background: #fee2e2;
    color: #dc2626;
}

.party-badge.independent {
    background: #f3e8ff;
    color: #7c3aed;
}

.relationship-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.relationship-badge.strong {
    background: #d1fae5;
    color: #047857;
}

.relationship-badge.moderate {
    background: #fef3c7;
    color: #d97706;
}

.relationship-badge.weak {
    background: #fee2e2;
    color: #dc2626;
}

.relationship-badge.none {
    background: #f1f5f9;
    color: #64748b;
}

.legislator-contact {
    margin-bottom: 1rem;
}

.committees-section {
    margin-bottom: 1rem;
}

.committees-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.committees-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.committee-tag {
    padding: 0.25rem 0.5rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.legislator-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meta-text {
    white-space: nowrap;
}

.legislator-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #e9ecef;
    color: var(--text-primary);
}

.social-btn i {
    width: 0.875rem;
    height: 0.875rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: var(--primary-hover);
}

.contact-btn i {
    width: 0.875rem;
    height: 0.875rem;
}

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-btn:hover {
    background: #e9ecef;
    color: var(--text-primary);
}

.calendar-btn i {
    width: 1rem;
    height: 1rem;
}

/* Responsive Legislators Grid */
@media (max-width: 1200px) {
    .legislators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .legislators-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .add-contact-btn {
        justify-content: center;
    }

    .legislators-search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .legislator-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .legislator-badges {
        flex-direction: row;
        align-items: flex-start;
    }

    .legislator-meta {
        flex-direction: column;
        gap: 0.25rem;
    }

    .legislator-actions {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .social-icons {
        order: 2;
    }

    .contact-btn {
        order: 1;
        flex: 1;
        justify-content: center;
    }

    .calendar-btn {
        order: 3;
    }
}



.demo-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface-color);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.demo-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.demo-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.demo-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}


.bill-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.bill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bill-title {
    font-weight: 700;
    color: var(--text-primary);
}

.bill-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(107, 185, 107, 0.1);
    color: var(--primary-color);
}

.bill-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-bar {
    flex: 1;
    height: 0.5rem;
    background: var(--border-color);
    border-radius: 9999px;
    overflow: hidden;
    margin: 0 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sign-in-container {
        grid-template-columns: 1fr;
        margin: 1rem;
    }

    .sign-in-right {
        order: -1;
        padding: 2rem;
    }

    .sign-in-left {
        padding: 2rem;
    }

    .demo-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 1rem;
    }

    .demo-tab {
        display: inline-block;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        min-width: auto;
    }

    .demo-content {
        padding: 1rem;
    }

    .demo-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .demo-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .demo-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .demo-nav-actions {
        width: 100%;
        justify-content: center;
    }

    .brand-name {
        font-size: 1.125rem;
    }

    .brand-tagline {
        font-size: 0.8rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.nav-brand .brand-name {
    margin-left: -0.5rem;
}

.brand-icon {
    padding: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon.with-background {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.brand-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.logo-image {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-subtitle {
    display: block;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--surface-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-icon-blue { background-color: #dcf4dc; color: #6bb96b; }
.feature-icon-green { background-color: #d1fae5; color: #10b981; }
.feature-icon-purple { background-color: #e9d5ff; color: #8b5cf6; }
.feature-icon-orange { background-color: #fed7aa; color: #f97316; }
.feature-icon-red { background-color: #fecaca; color: #ef4444; }
.feature-icon-teal { background-color: #ccfbf1; color: #14b8a6; }

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Demo Section */
.demo {
    padding: 6rem 0;
}


.demo-text h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.demo-text > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.demo-feature-icon {
    background-color: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-feature-icon i {
    width: 1rem;
    height: 1rem;
}

.demo-feature h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.demo-feature p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.demo-video {
    position: relative;
}

.demo-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    border: 2px dashed var(--border-color);
}

.demo-placeholder i {
    width: 4rem;
    height: 4rem;
    color: var(--text-muted);
}

.demo-placeholder span {
    font-weight: 600;
    color: var(--text-secondary);
}

.demo-btn {
    width: 100%;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--surface-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card-popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.pricing-description {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--success-color);
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a934a 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .brand-icon {
    width: fit-content;
}

.footer-brand .brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-left: -0rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 0;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-social a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: white;
}

.footer-social i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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


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

    .pricing-card-popular {
        transform: none;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features,
    .demo,
    .pricing,
    .cta {
        padding: 4rem 0;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
    }
}

/* App Interface Styles */
.app-interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-interface.hidden {
    display: none;
}

/* App Header */
.app-header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    flex-shrink: 0;
}

.app-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.app-nav-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* App Content */
.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
}

/* App Tabs */
.app-tabs {
    display: flex;
    gap: 0.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.app-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.app-tab:hover {
    background-color: var(--surface-color);
    color: var(--text-primary);
}

.app-tab.active {
    background-color: var(--primary-color);
    color: white;
}

/* Tab Content */
.tab-content {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 2rem;
}

.tab-content.active {
    display: block;
}

/* Dashboard Styles */
.dashboard-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-color);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.dashboard-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Bill Items */
.bill-list, .task-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bill-item, .task-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.bill-item:hover, .task-item:hover {
    border-color: var(--primary-color);
    background-color: var(--surface-color);
}

.bill-info, .task-info {
    flex: 1;
}

.bill-info h4, .task-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.975rem;
}

.bill-info p, .task-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bill-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    flex: 1;
    height: 0.375rem;
    background-color: var(--surface-color);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 9999px;
    transition: width 0.3s ease;
}

/* Priority and Status Badges */
.priority-badge, .status-badge, .task-priority {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-badge.high, .task-priority.high {
    background-color: #fef2f2;
    color: #dc2626;
}

.priority-badge.medium, .task-priority.medium {
    background-color: #fef3c7;
    color: #d97706;
}

.priority-badge.low, .task-priority.low {
    background-color: #f0f9ff;
    color: #0284c7;
}

.status-badge.active {
    background-color: #dcf4dc;
    color: #6bb96b;
}

.status-badge.monitoring {
    background-color: #e0e7ff;
    color: #6366f1;
}

.status-badge.completed {
    background-color: #f0fdf4;
    color: #16a34a;
}

/* Bills Section */
.bills-section {
    flex: 1;
    overflow-y: auto;
}

.app-interface .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.app-interface .section-header h2 {
    color: var(--text-primary);
    margin-bottom: 0;
}

.filters-section {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-box i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 1rem;
    height: 1rem;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.filter-controls {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: white;
}

.bills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.bill-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.bill-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.bill-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.bill-header h3 {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 1.25rem;
}

.bill-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bill-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.bill-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.bill-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.bill-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bill-meta i {
    width: 0.875rem;
    height: 0.875rem;
}

.bill-actions {
    display: flex;
    gap: 0.5rem;
}

/* AI Assistant Styles */
.ai-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ai-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    margin-bottom: 0;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.ai-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    flex: 1;
    overflow: hidden;
}

.ai-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.ai-sidebar h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quick-prompts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.prompt-btn {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1.4;
}

.prompt-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prompt-btn i {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.ai-chat {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 400px;
}

.message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message.user .message-avatar {
    background-color: var(--text-secondary);
}

.message-avatar i {
    width: 1rem;
    height: 1rem;
}

.message-content {
    flex: 1;
    max-width: 70%;
}

.message.user .message-content {
    text-align: right;
}

.message-content p {
    background-color: var(--surface-color);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.message.user .message-content p {
    background-color: var(--primary-color);
    color: white;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-input {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

/* Coming Soon Styles */
.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.coming-soon i {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.coming-soon h3 {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.coming-soon p {
    margin-bottom: 0;
}

/* Responsive Design for App */
@media (max-width: 1024px) {
    .ai-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ai-sidebar {
        order: 2;
    }

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

    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .app-nav-container {
        padding: 0 1rem;
    }

    .app-content {
        padding: 0 1rem;
    }

    .app-tabs {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .app-tab {
        flex-shrink: 0;
    }

    .filters-section {
        padding: 1rem;
    }

    .filter-controls {
        flex-direction: column;
    }

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

    .app-interface .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .app-nav-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn-sm {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .dashboard-grid {
        gap: 1rem;
    }

    .metric-card {
        padding: 1rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* AI Assistant Styles */
.ai-assistant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.ai-title-section {
    flex: 1;
}

.ai-main-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ai-title-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.ai-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.ai-status-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: #dcfce7;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.ai-status-badge i {
    width: 1rem;
    height: 1rem;
}

.ai-assistant-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Quick Insights Section */
.quick-insights-section {
    background: var(--surface-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: fit-content;
}

.insights-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.insights-title i {
    width: 1.25rem;
    height: 1.25rem;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insight-prompt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.insight-prompt:hover {
    border-color: var(--primary-color);
    background: #f8fdf8;
}

.insight-prompt i {
    width: 1rem;
    height: 1rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Legislative Intelligence Chat */
.legislative-chat-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
}

.chat-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}

.chat-container {
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 0 1.5rem;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.message-avatar {
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    width: 1rem;
    height: 1rem;
    color: white;
}

.message-content {
    flex: 1;
}

.message-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.message-timestamp {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-input-section {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--surface-color);
}

.chat-input-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: white;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-send-btn {
    padding: 0.75rem;
    background: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.chat-send-btn:hover {
    background: var(--primary-hover);
}

.chat-send-btn i {
    width: 1rem;
    height: 1rem;
}

.chat-suggestions {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* AI Capabilities Section */
.ai-capabilities-section {
    margin-top: 3rem;
}

.capabilities-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.capability-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.capability-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 3rem;
    height: 3rem;
    background: var(--surface-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.capability-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
}

.capability-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.capability-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ai-assistant-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .ai-assistant-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chat-container {
        height: 400px;
    }

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

/* Tasks Management Styles */
.tasks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.tasks-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.add-task-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-task-btn:hover {
    background: #111827;
}

.add-task-btn i {
    width: 1rem;
    height: 1rem;
}

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.task-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.task-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
}

.task-main {
    flex: 1;
}

.task-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.task-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.task-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.priority-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: capitalize;
}

.priority-badge.high {
    background: #fef2f2;
    color: #dc2626;
}

.priority-badge.medium {
    background: #fef3c7;
    color: #d97706;
}

.priority-badge.low {
    background: #f0f9ff;
    color: #0284c7;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
}

.status-badge.pending {
    background: #f3f4f6;
    color: #6b7280;
}

.status-badge.in-progress {
    background: #dbeafe;
    color: #2563eb;
}

.status-badge.completed {
    background: #dcfce7;
    color: #16a34a;
}

.task-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.task-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.task-assignee,
.task-due-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.meta-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.task-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.task-action-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.task-action-btn.edit {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
}

.task-action-btn.edit:hover {
    color: var(--primary-color);
    background: var(--surface-color);
}

.task-action-btn.complete {
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.task-action-btn.complete:hover {
    color: var(--success-color);
    background: #f0fdf4;
}

.task-action-btn i {
    width: 1rem;
    height: 1rem;
}

/* Mobile Responsive for Tasks */
@media (max-width: 768px) {
    .tasks-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .task-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .task-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .task-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .task-actions {
        margin-left: 0;
        align-self: flex-end;
    }

    /* ============================================ */
/* DEMO REQUEST PAGE STYLES */
/* ============================================ */

.demo-request-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
}

.demo-request-container {
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.demo-request-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.demo-request-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.demo-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 0.25rem;
}

.demo-close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.demo-close-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

.demo-request-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.demo-request-header p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.demo-request-form {
    padding: 2rem;
}

.demo-request-form .form-section {
    margin-bottom: 2rem;
}

.demo-request-form .form-section:last-of-type {
    margin-bottom: 1.5rem;
}

.demo-request-form .form-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.demo-request-form .section-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6bb96b;
}

.demo-request-form .form-section-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.demo-request-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
}

.demo-request-form .form-row .form-group {
    margin-bottom: 0 !important;
}

.demo-request-form .form-group {
    margin-bottom: 1rem;
    width: 100%;
}

.demo-request-form .form-group label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.demo-request-form input[type="text"],
.demo-request-form input[type="email"],
.demo-request-form input[type="tel"],
.demo-request-form select,
.demo-request-form textarea {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.375rem !important;
    font-size: 0.875rem !important;
    transition: all 0.2s ease;
    font-family: inherit;
    background: #f9fafb !important;
    box-sizing: border-box !important;
}

.demo-request-form input:focus,
.demo-request-form select:focus,
.demo-request-form textarea:focus {
    outline: none !important;
    border-color: #6bb96b !important;
    box-shadow: 0 0 0 3px rgba(107, 185, 107, 0.1) !important;
    background: white !important;
}

.demo-request-form textarea {
    resize: vertical;
    min-height: 80px;
}

.demo-request-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem !important;
}

.demo-request-form .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.demo-request-form .checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #1f2937;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
    position: relative;
}

.demo-request-form .checkbox-item:hover {
    background: #f9fafb;
}

.demo-request-form .checkbox-item input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    opacity: 0;
    position: absolute;
    left: 0.5rem;
    padding: 0 !important;
}

.demo-request-form .checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: white;
}

.demo-request-form .checkbox-item input[type="checkbox"]:checked + .checkmark {
    background-color: #6bb96b;
    border-color: #6bb96b;
}

.demo-request-form .checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.demo-request-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.demo-request-form .form-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.demo-request-form .form-actions .btn-outline {
    background: white;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.demo-request-form .form-actions .btn-outline:hover {
    background: #f9fafb;
    color: #1f2937;
    transform: none;
}

.demo-request-form .form-actions .btn-primary {
    background: #6bb96b;
    color: white;
    border: none;
}

.demo-request-form .form-actions .btn-primary:hover {
    background: #5ea85e;
}

.demo-request-form .form-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-request-page {
        padding: 1rem;
    }

    .demo-request-container {
        max-height: 95vh;
    }

    .demo-request-header,
    .demo-request-form {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .demo-request-form .form-row {
        grid-template-columns: 1fr !important;
    }

    .demo-request-form .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .demo-request-form .form-actions {
        flex-direction: column-reverse;
    }

    .demo-request-form .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features,
    .cta {
        padding: 4rem 0;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
}