/* Car Comparison Tool Styles */

.car-comparison-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
}

/* Hero Section */
.car-hero {
    padding: 4rem 0 3rem;
    background: transparent;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.car-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
}

.car-hero .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.hero-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.hero-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.hero-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.hero-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hero-subgrid .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.hero-subnumber {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

/* Floating Controls */
.floating-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.controls-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.controls-title i {
    font-size: 1.5rem;
    color: #667eea;
}

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

.small-ghost {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Calculator Section */
.calculator-shell {
    background: #f8fafc;
    padding: 4rem 0;
    min-height: 60vh;
}

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

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.car-option-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.option-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.option-badge {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.option-title input {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.25rem 0;
    width: 100%;
    transition: all 0.2s;
}

.option-title input:focus {
    outline: none;
    border-bottom-color: #667eea;
}

.remove-option {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.2s;
}

.remove-option:hover {
    transform: scale(1.1);
}

/* Purchase Type Selector */
.purchase-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.type-btn {
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.type-btn:hover {
    background: #e2e8f0;
}

.type-btn.active {
    background: #ede9fe;
    border-color: #667eea;
    color: #667eea;
}

/* Form Fields */
.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-field input,
.form-field select {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #667eea;
}

.form-field small {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.input-prefix {
    position: relative;
}

.input-prefix input {
    padding-left: 2rem;
}

.input-prefix::before {
    content: '$';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-weight: 600;
}

.help-icon {
    color: #94a3b8;
    font-size: 0.875rem;
    cursor: help;
}

/* Comparison Section */
.comparison-section {
    margin-top: 4rem;
}

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

.comparison-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.time-selector {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    padding: 0.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.time-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.time-btn:hover {
    background: #f1f5f9;
}

.time-btn.active {
    background: #667eea;
    color: #fff;
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.summary-card.winner {
    border-color: #10b981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.winner-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: #10b981;
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.summary-type {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.summary-total {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.summary-period {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-label {
    font-size: 0.875rem;
    color: #64748b;
}

.breakdown-value {
    font-weight: 600;
    color: #1a202c;
}

.summary-monthly {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.monthly-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.monthly-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

/* Chart Cards */
.chart-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

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

.chart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.muted {
    font-size: 0.875rem;
    color: #94a3b8;
}

.chart-container {
    position: relative;
    height: 400px;
}

/* Table Card */
.table-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

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

.table-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.875rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table td {
    font-size: 0.9375rem;
    color: #1a202c;
}

.comparison-table tr:hover {
    background: #f8fafc;
}

.comparison-table tr.total-row {
    font-weight: 700;
    background: #f8fafc;
    border-top: 2px solid #667eea;
}

.comparison-table tr.total-row td {
    font-size: 1.125rem;
    padding-top: 1.25rem;
    color: #1a202c;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.insight-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1rem;
    padding: 1.5rem;
    color: #fff;
}

.insight-card.warning {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.insight-card.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.insight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.insight-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.insight-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Education Section */
.education-section {
    background: #fff;
    padding: 4rem 0;
}

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

.edu-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
}

.edu-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.guidance-list {
    list-style: none;
    padding: 0;
}

.guidance-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #475569;
}

.guidance-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.guidance-list li strong {
    color: #1a202c;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f8fafc;
    padding: 2rem 0;
}

.disclaimer-box {
    background: #fff;
    border-left: 4px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.disclaimer-box i {
    font-size: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.disclaimer-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.disclaimer-box p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: #fff;
}

.ghost-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #f1f5f9;
    border: none;
    color: #667eea;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .floating-controls {
        flex-direction: column;
        align-items: stretch;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

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

@media (max-width: 768px) {
    .car-hero h1 {
        font-size: 2rem;
    }

    .car-hero .lead {
        font-size: 1rem;
    }

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

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

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

    .comparison-header {
        flex-direction: column;
        gap: 1rem;
    }

    .time-selector {
        width: 100%;
        justify-content: space-between;
    }

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

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

    .chart-container {
        height: 300px;
    }
}

/* Dark Mode Styles */
body.car-comparison-page.dark-mode {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body.car-comparison-page.dark-mode .calculator-shell {
    background: #0f172a;
}

body.car-comparison-page.dark-mode .education-section {
    background: #1e293b;
}

body.car-comparison-page.dark-mode .disclaimer-section {
    background: #0f172a;
}

body.car-comparison-page.dark-mode .car-option-card,
body.car-comparison-page.dark-mode .hero-card,
body.car-comparison-page.dark-mode .summary-card,
body.car-comparison-page.dark-mode .chart-card,
body.car-comparison-page.dark-mode .table-card,
body.car-comparison-page.dark-mode .edu-card,
body.car-comparison-page.dark-mode .disclaimer-box,
body.car-comparison-page.dark-mode .floating-controls {
    background: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.car-comparison-page.dark-mode h1,
body.car-comparison-page.dark-mode h2,
body.car-comparison-page.dark-mode h3,
body.car-comparison-page.dark-mode h4 {
    color: #f1f5f9;
}

body.car-comparison-page.dark-mode p,
body.car-comparison-page.dark-mode .label,
body.car-comparison-page.dark-mode .form-field label,
body.car-comparison-page.dark-mode .breakdown-label,
body.car-comparison-page.dark-mode .breakdown-value,
body.car-comparison-page.dark-mode .monthly-label {
    color: #cbd5e1;
}

body.car-comparison-page.dark-mode .muted,
body.car-comparison-page.dark-mode .section-subtitle,
body.car-comparison-page.dark-mode .hero-label,
body.car-comparison-page.dark-mode .summary-type,
body.car-comparison-page.dark-mode .summary-period,
body.car-comparison-page.dark-mode small {
    color: #94a3b8;
}

body.car-comparison-page.dark-mode .lead,
body.car-comparison-page.dark-mode .hero-meta {
    color: rgba(255, 255, 255, 0.9);
}

body.car-comparison-page.dark-mode .form-field input,
body.car-comparison-page.dark-mode .form-field select {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

body.car-comparison-page.dark-mode .form-field input:focus,
body.car-comparison-page.dark-mode .form-field select:focus {
    border-color: #667eea;
    background: #1e293b;
}

body.car-comparison-page.dark-mode .form-field input::placeholder {
    color: #64748b;
}

body.car-comparison-page.dark-mode .input-prefix::before {
    color: #64748b;
}

body.car-comparison-page.dark-mode .option-title input {
    color: #f1f5f9;
    background: #1e293b;
    border-bottom-color: transparent;
}

body.car-comparison-page.dark-mode .option-title input:focus {
    border-bottom-color: #818cf8;
    background: #334155;
}

body.car-comparison-page.dark-mode .type-btn {
    background: #0f172a;
    border-color: transparent;
    color: #cbd5e1;
}

body.car-comparison-page.dark-mode .type-btn:hover {
    background: #334155;
}

body.car-comparison-page.dark-mode .type-btn.active {
    background: #312e81;
    border-color: #667eea;
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .form-section-title {
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .time-btn {
    color: #94a3b8;
    background: transparent;
}

body.car-comparison-page.dark-mode .time-btn:hover {
    background: #334155;
}

body.car-comparison-page.dark-mode .time-btn.active {
    background: #667eea;
    color: #fff;
}

body.car-comparison-page.dark-mode .time-selector {
    background: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.car-comparison-page.dark-mode .summary-card {
    background: #1e293b;
    border-color: transparent;
}

body.car-comparison-page.dark-mode .summary-card.winner {
    border-color: #10b981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    background: #1e293b;
}

body.car-comparison-page.dark-mode .breakdown-row {
    border-bottom-color: #334155;
}

body.car-comparison-page.dark-mode .summary-monthly {
    background: #0f172a;
}

body.car-comparison-page.dark-mode .monthly-value {
    color: #f1f5f9;
}

body.car-comparison-page.dark-mode .summary-total {
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .hero-number,
body.car-comparison-page.dark-mode .hero-subnumber {
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .comparison-table th {
    background: #0f172a;
    color: #94a3b8;
    border-bottom-color: #334155;
}

body.car-comparison-page.dark-mode .comparison-table td {
    color: #cbd5e1;
    border-bottom-color: #334155;
}

body.car-comparison-page.dark-mode .comparison-table tr:hover {
    background: #334155;
}

body.car-comparison-page.dark-mode .ghost-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
}

body.car-comparison-page.dark-mode .ghost-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

body.car-comparison-page.dark-mode .btn-secondary {
    background: #1e293b;
    color: #a5b4fc;
    border-color: #667eea;
}

body.car-comparison-page.dark-mode .btn-secondary:hover {
    background: #667eea;
    color: #fff;
}

body.car-comparison-page.dark-mode .icon-btn {
    background: #0f172a;
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .icon-btn:hover {
    background: #334155;
}

body.car-comparison-page.dark-mode .insight-card {
    background: linear-gradient(135deg, #4c1d95, #312e81);
}

body.car-comparison-page.dark-mode .insight-card.warning {
    background: linear-gradient(135deg, #92400e, #7c2d12);
}

body.car-comparison-page.dark-mode .insight-card.success {
    background: linear-gradient(135deg, #065f46, #064e3b);
}

body.car-comparison-page.dark-mode .guidance-list li {
    color: #94a3b8;
}

body.car-comparison-page.dark-mode .guidance-list li strong {
    color: #f1f5f9;
}

body.car-comparison-page.dark-mode .guidance-list li::before {
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .disclaimer-box {
    background: #1e293b;
    border-left-color: #f59e0b;
}

body.car-comparison-page.dark-mode .disclaimer-box p,
body.car-comparison-page.dark-mode .disclaimer-box h4 {
    color: #cbd5e1;
}

body.car-comparison-page.dark-mode .help-icon {
    color: #64748b;
}

body.car-comparison-page.dark-mode .controls-title i {
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .controls-title strong {
    color: #f1f5f9;
}

body.car-comparison-page.dark-mode .controls-title .eyebrow {
    color: #a5b4fc;
}

body.car-comparison-page.dark-mode .remove-option {
    color: #f87171;
}

body.car-comparison-page.dark-mode .remove-option:hover {
    color: #ef4444;
}

body.car-comparison-page.dark-mode .option-badge {
    background: linear-gradient(135deg, #818cf8, #a78bfa);
}

body.car-comparison-page.dark-mode .comparison-table tr.total-row {
    background: #0f172a;
    border-top-color: #818cf8;
}

body.car-comparison-page.dark-mode .comparison-table tr.total-row td {
    color: #f1f5f9;
    font-weight: 700;
}
