/**
 * Alphalease Calculator Styles
 * Matching Innolease design system
 */

/* ==================== */
/* Variables            */
/* ==================== */
:root {
    /* Theme-aware colors - uses theme CSS vars with fallbacks */
    --al-primary: var(--primary, #22c55e);
    --al-primary-hover: var(--primary-hover, #16a34a);
    --al-primary-foreground: var(--primary-foreground, #ffffff);
    --al-secondary: var(--secondary, #A379C9);
    --al-secondary-foreground: var(--secondary-foreground, #ffffff);
    --al-foreground: var(--foreground, #313247);
    --al-background: var(--background, #ffffff);
    --al-muted: var(--muted, #F3F4F6);
    --al-muted-foreground: var(--muted-foreground, #6B7280);
    --al-border: var(--border, #E5E7EB);
    --al-card: var(--card, #ffffff);
    --al-card-foreground: var(--card-foreground, #313247);

    /* Legacy colors (for backwards compatibility) */
    --al-orange: var(--primary, #22c55e);
    --al-blue: var(--foreground, #313247);
    --al-neon-green: #4CAF50;

    /* Grays */
    --al-gray-100: var(--muted, #F3F4F6);
    --al-gray-200: var(--border, #E5E7EB);
    --al-gray-300: #D1D5DB;
    --al-gray-500: var(--muted-foreground, #6B7280);
    --al-gray-700: #374151;

    /* Kenteken colors */
    --al-kenteken-yellow: #FFE041;
    --al-kenteken-blue: #294494;

    /* UI */
    --al-white: var(--background, #FFFFFF);
    --al-radius: 12px;
    --al-radius-lg: 16px;
    --al-radius-xl: 25px;
    --al-shadow: 0 10px 10px 0px rgb(0 0 0 / 0.1), 0 0px 10px 0px rgb(0 0 0 / 0.1);
}

/* Hide elements with x-cloak until Alpine initializes */
[x-cloak] {
    display: none !important;
}

/* ==================== */
/* Fonts                */
/* ==================== */
/* Kenteken font - using system monospace as fallback since CDN font is unreliable */

/* ==================== */
/* Calculator Container */
/* ==================== */
.alphalease-calculator {
    background: var(--al-white);
    border-radius: 1rem;
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--al-gray-200);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--al-blue);
}

.alphalease-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--al-blue);
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.025em;
}

/* ==================== */
/* Form Layout          */
/* ==================== */
.calculator-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--al-blue);
    margin-bottom: 0.5rem;
}

.form-label .info-icon {
    color: var(--al-gray-500);
    flex-shrink: 0;
}

/* Two Column Grid */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Checkbox Row */
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--al-gray-500);
    cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--al-blue);
    cursor: pointer;
}

.amount-display {
    font-weight: 700;
    color: var(--al-orange);
}

/* ==================== */
/* Kenteken Input       */
/* Dutch License Plate  */
/* ==================== */
.kenteken-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.kenteken-input-wrapper {
    display: flex;
    flex: 1;
    background: var(--al-kenteken-yellow) !important;
    border: none !important;
    border-radius: var(--al-radius) !important;
    box-shadow: var(--al-shadow);
    overflow: hidden;
    height: 4rem !important;
    transition: background-color 0.2s;
}

.kenteken-input-wrapper.unknown {
    background: #9CA3AF !important;
}

.kenteken-input-wrapper .nl-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--al-kenteken-blue);
    color: var(--al-white);
    font-weight: 700;
    padding: 0 0.75rem;
    font-size: 0.875rem;
}

.kenteken-input-wrapper.unknown .nl-badge {
    background: #4B5563;
}

.kenteken-input {
    flex: 1;
    padding: 0.5rem 1rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--al-kenteken-yellow);
    border: none;
    outline: none;
    color: var(--al-blue);
}

.kenteken-input-wrapper.unknown .kenteken-input {
    background: #9CA3AF;
}

.kenteken-input::placeholder {
    color: rgba(49, 50, 71, 0.4);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: normal;
    text-transform: none;
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--al-blue);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-search:hover:not(:disabled) {
    background: #42435F;
    transform: scale(1.02);
}

.btn-search:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-search svg {
    width: 22px;
    height: 22px;
}

/* Unknown Kenteken Checkbox */
.unknown-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(49, 50, 71, 0.75);
    cursor: pointer;
}

.unknown-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--al-blue);
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--al-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Car Info Display */
.car-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--al-gray-100);
    border-radius: var(--al-radius);
}

.car-details {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.car-name {
    font-weight: 600;
    color: var(--al-blue);
}

.btn-clear-kenteken {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--al-gray-500);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.btn-clear-kenteken:hover {
    background: var(--al-gray-200);
    color: var(--al-blue);
}

.car-year {
    font-size: 0.875rem;
    color: var(--al-gray-500);
}

.badge-electric {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--al-neon-green);
    color: var(--al-white);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-electric svg {
    width: 14px;
    height: 14px;
}

/* Error Message */
.error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ==================== */
/* Money Input          */
/* ==================== */
.money-input {
    position: relative;
    display: flex;
    align-items: center;
}

.money-input::before {
    content: '€';
    position: absolute;
    left: 1rem;
    font-weight: 600;
    color: var(--al-gray-500);
    z-index: 1;
}

.money-input input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem 0 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--al-gray-200);
    border-radius: var(--al-radius);
    background: var(--al-white);
    color: var(--al-blue);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.money-input input:focus {
    outline: none;
    border-color: var(--al-orange);
    box-shadow: 0 0 0 2px rgba(246, 160, 0, 0.2);
}

/* ==================== */
/* Form Controls        */
/* ==================== */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--al-gray-200);
    border-radius: var(--al-radius);
    background: var(--al-white);
    color: var(--al-blue);
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--al-orange);
}

.form-select {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--al-gray-200);
    border-radius: var(--al-radius);
    background: var(--al-white);
    color: var(--al-blue);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-select:focus {
    outline: none;
    border-color: var(--al-orange);
    box-shadow: 0 0 0 2px rgba(246, 160, 0, 0.2);
}

/* Range Slider */
.range-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--al-gray-200);
    border-radius: 4px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--al-orange);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--al-orange);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--al-gray-500);
    margin-top: 0.25rem;
}

.hint {
    font-size: 0.75rem;
    color: var(--al-gray-500);
    margin: 0.25rem 0 0 0;
}

/* ==================== */
/* Two Column Layout    */
/* ==================== */
.form-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.form-row .form-label {
    width: 40%;
    margin-bottom: 0;
}

.form-row .form-input {
    width: 60%;
}

/* ==================== */
/* Monthly Preview      */
/* ==================== */
.monthly-preview {
    background: linear-gradient(135deg, var(--al-blue) 0%, #42435F 100%);
    color: var(--al-white);
    padding: 1.5rem;
    border-radius: var(--al-radius-lg);
    text-align: center;
    margin: 1.5rem 0;
}

.monthly-preview .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.monthly-preview .amount {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0.25rem 0;
    letter-spacing: 0.025em;
}

.monthly-preview .period {
    font-size: 0.875rem;
    opacity: 0.8;
}

.monthly-preview .electric-discount {
    display: block;
    font-size: 0.75rem;
    color: var(--al-neon-green);
    margin-top: 0.5rem;
}

/* ==================== */
/* Buttons              */
/* ==================== */
.btn-compare {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3rem;
    padding: 0 2rem;
    background: var(--al-blue);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-compare:hover:not(:disabled) {
    background: #42435F;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-compare:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-compare svg {
    flex-shrink: 0;
}

.btn-compare span {
    /* No special styling needed */
}

/* ==================== */
/* Compare Results Page */
/* ==================== */
.alphalease-compare {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--al-blue);
}

.alphalease-error {
    background: var(--al-gray-100);
    padding: 2rem;
    border-radius: var(--al-radius-lg);
    text-align: center;
    color: var(--al-gray-700);
}

/* Summary Bar */
.compare-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: var(--al-white);
    padding: 1rem 1.5rem;
    border-radius: var(--al-radius-lg);
    box-shadow: var(--al-shadow);
    margin-bottom: 1.5rem;
}

.car-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.car-summary .car-name {
    font-weight: 700;
    color: var(--al-blue);
}

.loan-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--al-gray-700);
}

.loan-summary strong {
    color: var(--al-blue);
}

/* Electric Banner */
.electric-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--al-neon-green) 0%, #388E3C 100%);
    color: var(--al-white);
    padding: 1rem;
    border-radius: var(--al-radius-lg);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Top Results Grid */
.compare-top-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Result Card */
.result-card {
    position: relative;
    background: var(--al-white);
    border-radius: var(--al-radius-xl);
    box-shadow: var(--al-shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.result-rank {
    position: absolute;
    left: -12px;
    top: 2.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--al-turquoise);
    color: var(--al-white);
    border-radius: var(--al-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.result-rank-1 .result-rank {
    background: var(--al-orange);
}

.result-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-bottom: 1rem;
    padding: 1rem;
    padding-left: 2rem;
    overflow: hidden;
}

.provider-logo {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.provider-name {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--al-blue);
}

.result-price {
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.monthly-amount {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--al-blue);
    line-height: 1;
    letter-spacing: 0.025em;
}

.monthly-label {
    font-size: 0.875rem;
    color: rgba(49, 50, 71, 0.85);
}

.result-details {
    flex: 1;
    padding: 0 1rem;
    font-size: 0.9375rem;
    color: rgba(49, 50, 71, 0.85);
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.result-rating svg {
    flex-shrink: 0;
}

.result-rating strong {
    color: var(--al-blue);
    margin-left: 0.25rem;
}

.result-info {
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.info-label {
    color: rgba(49, 50, 71, 0.85);
}

.info-value {
    font-weight: 600;
    color: var(--al-blue);
}

.result-pros,
.result-cons {
    margin-bottom: 0.75rem;
}

.pro-item,
.con-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.pro-icon {
    color: var(--al-neon-green);
    font-weight: 700;
}

.con-icon {
    color: #EF4444;
    font-weight: 700;
}

.pro-item span:last-child,
.con-item span:last-child {
    font-weight: 600;
    color: var(--al-blue);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding: 1rem;
    padding-top: 2rem;
}

.btn-request {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--al-orange);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-request::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
    border-radius: var(--al-radius);
}

.btn-request:hover::before {
    opacity: 0.15;
    transform: scale(1);
}

.btn-more-info {
    text-align: center;
    color: var(--al-blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0;
}

.btn-more-info:hover {
    text-decoration: underline;
}

/* Other Results */
.compare-other-results {
    background: var(--al-white);
    border-radius: var(--al-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--al-shadow);
}

.compare-other-results h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--al-blue);
    margin: 0 0 1rem 0;
}

.other-result-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--al-gray-200);
}

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

.other-provider {
    flex: 1;
    font-weight: 600;
    color: var(--al-blue);
}

.other-provider img {
    max-height: 30px;
    max-width: 100px;
    object-fit: contain;
}

.other-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--al-gray-700);
}

.other-monthly {
    font-size: 1.125rem;
    color: var(--al-blue);
}

.other-monthly span {
    font-size: 0.75rem;
    color: var(--al-gray-500);
}

.btn-request-small {
    padding: 0.5rem 1rem;
    background: var(--al-orange);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    font-family: 'Kanit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-request-small::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}

.btn-request-small:hover::before {
    opacity: 0.15;
    transform: scale(1);
}

/* ==================== */
/* Quote Flow Progress  */
/* ==================== */
.quote-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--al-gray-200);
    color: var(--al-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--al-orange);
    color: var(--al-white);
}

.progress-step.completed .step-number {
    background: var(--al-neon-green);
    color: var(--al-white);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--al-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--al-blue);
}

.progress-line {
    width: 4rem;
    height: 3px;
    background: var(--al-gray-200);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    transition: background 0.3s;
}

.progress-line.completed {
    background: var(--al-neon-green);
}

/* ==================== */
/* Quote Form           */
/* ==================== */
.quote-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--al-gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

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

.selected-provider-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--al-blue) 0%, #42435F 100%);
    color: var(--al-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--al-radius-lg);
    margin-bottom: 2rem;
}

.provider-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.provider-info .provider-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.provider-info .provider-name {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.monthly-info {
    text-align: right;
}

.monthly-info .monthly-amount {
    font-family: 'Kanit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    display: block;
    line-height: 1;
    color: var(--al-white);
}

.monthly-info .monthly-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.quote-form {
    background: var(--al-white);
    border-radius: var(--al-radius-xl);
    padding: 2rem;
    box-shadow: var(--al-shadow);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--al-gray-200);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--al-blue);
    margin: 0 0 1.25rem 0;
}

.section-title svg {
    color: var(--al-orange);
}

.quote-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quote-form .form-row .form-label {
    width: auto;
    font-size: 0.875rem;
}

.quote-form .form-row .form-input {
    width: 100%;
}

.quote-form .form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quote-form .form-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--al-gray-200);
    border-radius: var(--al-radius);
    background: var(--al-white);
    color: var(--al-blue);
    transition: border-color 0.2s;
}

.quote-form input:focus {
    outline: none;
    border-color: var(--al-orange);
}

.quote-form input.has-error {
    border-color: #EF4444;
}

.quote-form .required {
    color: #EF4444;
}

.quote-form .error-message {
    color: #EF4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.field-hint {
    font-size: 0.75rem;
    color: var(--al-gray-500);
    margin-top: 0.25rem;
}

/* Consent Section */
.consent-section {
    border-bottom: none;
    padding-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--al-orange);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-text {
    font-size: 0.875rem;
    color: var(--al-gray-700);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--al-orange);
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.checkbox-label.has-error .checkbox-text {
    color: #EF4444;
}

/* Submit Error */
.submit-error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #B91C1C;
    padding: 1rem;
    border-radius: var(--al-radius);
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--al-orange);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
    border-radius: var(--al-radius);
}

.btn-submit:hover:not(:disabled)::before {
    opacity: 0.15;
    transform: scale(1);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ==================== */
/* Quote Success        */
/* ==================== */
.quote-success-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--al-neon-green) 0%, #388E3C 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.success-icon svg {
    color: var(--al-white);
}

.success-title {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--al-blue);
    margin: 0 0 1rem 0;
}

.success-message {
    font-size: 1rem;
    color: var(--al-gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-summary {
    background: var(--al-white);
    border-radius: var(--al-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--al-shadow);
    margin-bottom: 2rem;
    text-align: left;
}

.quote-summary h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--al-blue);
    margin: 0 0 1rem 0;
}

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

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label {
    font-size: 0.75rem;
    color: var(--al-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-value {
    font-weight: 600;
    color: var(--al-blue);
}

.contact-info {
    background: var(--al-gray-100);
    border-radius: var(--al-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--al-blue);
    margin: 0 0 0.5rem 0;
}

.contact-info p {
    font-size: 0.875rem;
    color: var(--al-gray-700);
    margin: 0 0 1rem 0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--al-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-method:hover {
    color: var(--al-orange);
}

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

.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--al-gray-200);
    color: var(--al-blue);
    border: none;
    border-radius: var(--al-radius);
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-home:hover {
    background: var(--al-gray-300);
}

.btn-new-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--al-orange);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-new-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
    border-radius: var(--al-radius);
}

.btn-new-quote:hover::before {
    opacity: 0.15;
    transform: scale(1);
}

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 768px) {
    .alphalease-calculator {
        padding: 1.5rem;
        border-radius: var(--al-radius-lg);
    }

    .monthly-preview .amount {
        font-size: 2.5rem;
    }

    .compare-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .loan-summary {
        flex-direction: column;
        gap: 0.5rem;
    }

    .compare-top-results {
        grid-template-columns: 1fr;
    }

    .result-rank {
        left: auto;
        right: 1rem;
        top: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }

    .result-header {
        padding-left: 1rem;
    }

    .other-result-row {
        flex-wrap: wrap;
    }

    .other-provider {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-row .form-label,
    .form-row .form-input {
        width: 100%;
    }

    /* Quote Progress */
    .quote-progress {
        gap: 0;
    }

    .progress-line {
        width: 2rem;
    }

    .step-label {
        font-size: 0.625rem;
    }

    /* Quote Form */
    .selected-provider-summary {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .monthly-info {
        text-align: center;
    }

    .quote-form {
        padding: 1.5rem;
    }

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

    /* Quote Success */
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-home,
    .btn-new-quote {
        width: 100%;
    }
}

/* ==================== */
/* New Compare Layout   */
/* ==================== */

/* Page Layout */
.alphalease-compare-page {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--al-blue);
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.compare-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Sidebar */
.compare-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: var(--al-white);
    border-radius: var(--al-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--al-shadow);
}

.sidebar-title {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    color: var(--al-blue);
}

.sidebar-divider {
    height: 1px;
    background: var(--al-gray-200);
    margin: 1rem 0;
}

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

.filter-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--al-blue);
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--al-gray-500);
    cursor: pointer;
}

.car-info-display {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--al-gray-100);
    border-radius: var(--al-radius);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    gap: 0.25rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--al-gray-200);
    border-radius: var(--al-radius);
    background: var(--al-white);
    font-size: 1rem;
    color: var(--al-blue);
    cursor: pointer;
}

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

/* Main Content */
.compare-main {
    flex: 1;
    min-width: 0;
}

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

.section-header .section-title {
    margin: 0;
}

.section-header .sorting-buttons {
    display: flex;
    gap: 0.5rem;
}

.section-title {
    font-family: 'Kanit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: var(--al-blue);
}

.section-title-small {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    color: var(--al-blue);
}

/* Top Results */
.top-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.result-card-top {
    position: relative;
    background: var(--al-white);
    border-radius: var(--al-radius-xl);
    box-shadow: var(--al-shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s;
}

.result-card-top:hover {
    transform: translateY(-5px);
}

.rank-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--al-secondary);
    color: var(--al-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
}

.rank-badge.rank-first {
    background: var(--al-orange);
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.provider-logo-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.provider-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.provider-name-text {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.provider-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--al-blue) 0%, #42435F 100%);
    color: var(--al-white);
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--al-radius);
    text-transform: uppercase;
}

.provider-logo-placeholder.large {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
}

/* Link style for more info */
.link-more-info {
    background: none;
    border: none;
    color: var(--al-blue);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
}

.link-more-info:hover {
    color: var(--al-orange);
}

.card-divider {
    height: 1px;
    background: var(--al-gray-200);
    margin: 0.5rem 0 1rem 0;
}

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

.price-amount {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--al-blue);
    line-height: 1;
}

.price-label {
    font-size: 0.875rem;
    color: var(--al-gray-500);
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--al-gray-500);
    margin-bottom: 1rem;
}

.star-icon {
    width: 16px;
    height: 16px;
}

.details-rows {
    background: var(--al-gray-100);
    padding: 1rem;
    border-radius: var(--al-radius);
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--al-gray-500);
}

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

.detail-row strong {
    color: var(--al-blue);
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-choose {
    width: 100%;
    padding: 0.75rem;
    background: var(--al-orange);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-choose:hover {
    background: #E59500;
}

/* All Results List */
.all-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-row {
    background: var(--al-white);
    border-radius: var(--al-radius);
    padding: 1.5rem;
    box-shadow: var(--al-shadow);
    display: grid;
    grid-template-columns: 40px 120px 140px 1fr 140px;
    gap: 1.5rem;
    align-items: center;
}

.row-rank {
    width: 32px;
    height: 32px;
    background: var(--al-gray-200);
    color: var(--al-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.row-logo {
    display: flex;
    align-items: center;
}

.row-logo img {
    max-height: 50px;
    max-width: 100%;
}

.row-price .price-amount {
    font-size: 2rem;
}

.row-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.row-info .row-info-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--al-gray-100);
    padding: 1rem;
    border-radius: var(--al-radius);
}

.row-info .rating-row {
    justify-content: flex-start;
    margin-bottom: 0;
}

.row-info .detail-row {
    margin-bottom: 0;
}

.row-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Detail Slide-out */
.detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 99999;
    backdrop-filter: blur(0);
    opacity: 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, opacity 0.3s ease;
}

.detail-overlay[style*="display: block"],
.detail-overlay:not([style*="display: none"]):not([x-cloak]) {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    opacity: 1;
}

.detail-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 500px;
    max-width: 100%;
    background: var(--al-white);
    z-index: 99999;
    box-shadow: -10px 0 20px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.detail-panel.open {
    transform: translateX(0);
    z-index: 100000;
}

/* Animate content inside panel */
.detail-panel .detail-header,
.detail-panel .detail-body {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.detail-panel.open .detail-header {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
}

.detail-panel.open .detail-body {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--al-gray-100);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--al-gray-500);
    z-index: 10;
    transition: all 0.2s ease;
}

.detail-close:hover {
    background: var(--al-gray-200);
    color: var(--al-blue);
    transform: scale(1.1);
}

.detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 0.75rem;
    background: var(--al-gray-100);
    border-bottom: 1px solid var(--al-gray-200);
}

.detail-logo-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.detail-title {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--al-blue);
}

.detail-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--al-gray-500);
}

.detail-score strong {
    color: var(--al-blue);
}

.detail-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}

.detail-info-section {
    margin-bottom: 2rem;
}

.detail-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--al-blue);
}

.detail-info-grid {
    background: var(--al-gray-100);
    border-radius: var(--al-radius);
    padding: 1rem;
}

.detail-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--al-gray-200);
    font-size: 0.875rem;
}

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

.detail-info-row span {
    color: var(--al-gray-500);
}

.detail-info-row strong {
    color: var(--al-blue);
}

.detail-pros-cons-section {
    margin-bottom: 1rem;
}

.pros-cons-grid h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--al-gray-500);
}

.pros-cons-grid .no-items {
    font-size: 0.875rem;
    color: var(--al-gray-500);
    margin: 0;
}

.detail-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--al-gray-200);
    background: var(--al-white);
}

.btn-choose-large {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros-section h4, .cons-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--al-gray-500);
}

.pros-section ul, .cons-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.pros-section li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--al-neon-green);
    font-weight: bold;
}

.cons-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.cons-section li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
}

/* ==================== */
/* Sorting Buttons      */
/* ==================== */
.sorting-buttons {
    display: flex;
    gap: 0.5rem;
}

.sort-btn {
    flex: 1;
    padding: 0.625rem 1rem;
    background: var(--al-gray-100);
    border: 2px solid var(--al-gray-200);
    border-radius: var(--al-radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--al-gray-500);
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:hover {
    border-color: var(--al-gray-300);
    color: var(--al-blue);
}

.sort-btn.active {
    background: var(--al-orange);
    border-color: var(--al-orange);
    color: var(--al-white);
}

/* ==================== */
/* Electric Toggle      */
/* ==================== */
.checkbox-electric {
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--al-radius);
    margin-top: 0;
}

.electric-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--al-neon-green);
    font-weight: 600;
}

.electric-label svg {
    flex-shrink: 0;
}

.filter-hint {
    font-size: 0.75rem;
    color: var(--al-gray-500);
    margin: 0.5rem 0 0 0;
}

.electric-badge-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--al-neon-green) 0%, #388E3C 100%);
    color: var(--al-white);
    border-radius: var(--al-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.electric-badge-display svg {
    flex-shrink: 0;
}

/* ==================== */
/* Loading Spinner      */
/* ==================== */
.compare-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
    color: var(--al-gray-500);
    font-size: 1rem;
}

.spinner-large {
    width: 48px;
    height: 48px;
    border: 4px solid var(--al-gray-200);
    border-top-color: var(--al-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.capitalize {
    text-transform: capitalize;
}

/* Responsive */
@media (max-width: 1024px) {
    .compare-container {
        flex-direction: column;
    }

    .compare-sidebar {
        width: 100%;
        position: static;
    }

    .result-row {
        grid-template-columns: 40px 1fr 1fr;
        gap: 1rem;
        text-align: center;
    }

    .row-rank {
        grid-row: span 2;
        align-self: center;
    }

    .row-logo {
        justify-content: center;
    }

    .row-info, .row-actions {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

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

    .modal-provider-summary {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .quote-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==================== */
/* Maandlasten Calculator */
/* ==================== */
.maandlasten-calculator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--al-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--al-gray-200);
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--al-blue);
}

.calc-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.calc-value-primary {
    color: var(--al-primary);
}

.calc-value-secondary {
    color: var(--al-secondary);
}

/* Slider styling */
.calc-slider-wrapper {
    position: relative;
    height: 8px;
}

.calc-slider {
    position: absolute;
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--al-white);
    border: 2px solid var(--al-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s, box-shadow 0.15s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--al-white);
    border: 2px solid var(--al-orange);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.calc-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--al-gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.calc-slider-fill {
    height: 100%;
    background: var(--al-primary);
    border-radius: 4px;
    transition: width 0.1s;
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--al-gray-500);
    margin-top: 0.5rem;
}

/* Result box */
.calc-result {
    background: var(--al-muted);
    border-radius: var(--al-radius);
    padding: 1.5rem;
    text-align: center;
}

.calc-result-label {
    font-size: 0.875rem;
    color: var(--al-gray-500);
    margin: 0 0 0.5rem 0;
}

.calc-result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--al-blue);
    margin: 0 0 0.5rem 0;
}

.calc-result-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--al-gray-500);
}

.calc-result-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--al-gray-500);
}

.calc-result-hint svg {
    flex-shrink: 0;
}

/* Button */
.calc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3rem;
    padding: 0 2rem;
    background: var(--al-blue);
    color: var(--al-white);
    border: none;
    border-radius: var(--al-radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calc-button:hover {
    background: #42435F;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: var(--al-white);
}

/* ==================== */
/* Quote Page           */
/* ==================== */
.quote-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.quote-loading,
.quote-no-data {
    text-align: center;
    padding: 4rem 2rem;
}

.quote-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--al-gray-200);
    border-top-color: var(--al-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.quote-no-data .no-data-icon {
    color: var(--al-gray-500);
    margin-bottom: 1.5rem;
}

.quote-no-data h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--al-foreground);
    margin: 0 0 0.5rem;
}

.quote-no-data p {
    color: var(--al-muted-foreground);
    margin: 0 0 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-back-to-compare {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--al-muted);
    color: var(--al-foreground);
    border-radius: var(--al-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-back-to-compare:hover {
    background: var(--al-gray-200);
}

/* Quote Page Title */
.quote-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--al-foreground);
    margin: 0 0 0.5rem;
}

.quote-page-subtitle {
    color: var(--al-muted-foreground);
    margin: 0 0 1.5rem;
    font-size: 1.125rem;
}

/* Quote Grid Layout */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

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

    .quote-summary-section {
        order: -1;
    }
}

/* Form Column */
.quote-form-column {
    display: flex;
    flex-direction: column;
}

/* Form Card */
.quote-form-section {
}

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

.quote-form .form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--al-foreground);
    margin: 0 0 1rem;
}

.quote-form .form-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 1rem;
}

.quote-form .form-row label {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--al-foreground);
    margin-bottom: 0.375rem;
}

.quote-form .form-row label .required {
    color: #ef4444;
}

.quote-form .form-row input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--al-background);
    color: var(--al-foreground);
}

.quote-form .form-row input:focus {
    outline: none;
    border-color: var(--al-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.quote-form .form-row input.has-error {
    border-color: #ef4444;
}

.quote-form .field-error {
    display: block;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

.quote-form .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .quote-form .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Consent Section */
.quote-form .consent-section {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--al-border);
}

.quote-form .checkbox-wrapper {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
}

.quote-form .checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    accent-color: var(--al-primary);
}

.quote-form .checkbox-label-text {
    font-size: 0.875rem;
    color: var(--al-muted-foreground);
    line-height: 1.5;
}

.quote-form .checkbox-label-text a {
    color: var(--al-primary);
    text-decoration: underline;
}

/* Submit Error */
.quote-form .submit-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--al-radius);
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Submit Button */
.quote-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--al-primary);
    color: var(--al-primary-foreground);
    border: none;
    border-radius: var(--al-radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.quote-form .btn-submit:hover:not(:disabled) {
    background: var(--al-primary-hover);
    transform: translateY(-1px);
}

.quote-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.quote-form .loading-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-form .spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Summary Section */
.quote-summary-section {
    position: sticky;
    top: 2rem;
}

.quote-summary-card {
    background: var(--al-card);
    border-radius: var(--al-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--al-shadow);
    border: 1px solid var(--al-border);
}

.quote-summary-card .summary-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--al-foreground);
    margin: 0 0 1.25rem;
}

.quote-summary-card .summary-provider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--al-border);
    margin-bottom: 1rem;
}

.quote-summary-card .provider-logo {
    max-height: 32px;
    max-width: 100px;
    object-fit: contain;
}

.quote-summary-card .provider-initials {
    width: 40px;
    height: 40px;
    background: var(--al-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--al-muted-foreground);
}

.quote-summary-card .provider-name {
    font-weight: 600;
    color: var(--al-foreground);
}

.quote-summary-card .summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quote-summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-summary-card .summary-label {
    font-size: 0.875rem;
    color: var(--al-muted-foreground);
}

.quote-summary-card .summary-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--al-foreground);
}

.quote-summary-card .summary-value-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--al-primary);
}

.quote-summary-card .summary-kenteken {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--al-kenteken-yellow);
    color: #000;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-transform: uppercase;
}

.quote-summary-card .summary-car {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--al-border);
}

.quote-summary-card .summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    padding: 0.375rem 0.75rem;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.quote-summary-card .change-selection-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--al-border);
    color: var(--al-muted-foreground);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.quote-summary-card .change-selection-link:hover {
    color: var(--al-primary);
}

/* Quote Success */
.quote-success {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.quote-success .success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #16a34a;
}

.quote-success .success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--al-foreground);
    margin: 0 0 0.75rem;
}

.quote-success .success-message {
    color: var(--al-muted-foreground);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.quote-success .success-summary {
    background: var(--al-muted);
    border-radius: var(--al-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.quote-success .success-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--al-border);
}

.quote-success .success-summary-row:last-child {
    border-bottom: none;
}

.quote-success .success-summary-row span {
    color: var(--al-muted-foreground);
    font-size: 0.875rem;
}

.quote-success .success-summary-row strong {
    color: var(--al-foreground);
    font-size: 0.875rem;
}

.quote-success .btn-back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--al-primary);
    color: var(--al-primary-foreground);
    border-radius: var(--al-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.quote-success .btn-back-home:hover {
    background: var(--al-primary-hover);
}

/* ==================== */
/* Providers Comparison */
/* ==================== */
.providers-comparison {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--al-foreground);
}

/* Mobile Cards (default) */
.providers-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .providers-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .providers-cards {
        display: none;
    }
}

.provider-card {
    position: relative;
    background: var(--al-card);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--al-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.provider-card--recommended {
    border-color: var(--al-primary);
    border-width: 2px;
}

.provider-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--al-primary);
    color: var(--al-primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.provider-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.provider-card--recommended .provider-card-header {
    padding-top: 0.75rem;
}

.provider-card-logo {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
}

.provider-card-initials {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--al-foreground) 0%, #42435F 100%);
    color: var(--al-background);
    border-radius: var(--al-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.provider-card-info {
    flex: 1;
}

.provider-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--al-foreground);
    margin: 0 0 0.25rem;
}

.provider-card-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--al-muted-foreground);
}

.provider-card-rating svg {
    flex-shrink: 0;
}

.provider-card-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--al-muted);
    padding: 0.75rem 1rem;
    border-radius: var(--al-radius);
    margin-bottom: 1rem;
}

.provider-card-highlight .highlight-label {
    font-size: 0.875rem;
    color: var(--al-muted-foreground);
}

.provider-card-highlight .highlight-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--al-primary);
}

.provider-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.provider-card-features .feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--al-border);
}

.provider-card-features .feature-row:last-child {
    border-bottom: none;
}

.provider-card-features .feature-label {
    font-size: 0.875rem;
    color: var(--al-muted-foreground);
}

.provider-card-features .feature-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--al-foreground);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
}

.feature-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
}

.provider-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--al-foreground);
    color: var(--al-background);
    border: none;
    border-radius: var(--al-radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.provider-card-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.provider-card--recommended .provider-card-cta {
    background: var(--al-primary);
}

/* Desktop Table */
.providers-table-wrapper {
    display: none;
    overflow: visible;
    padding-top: 1rem;
}

@media (min-width: 1024px) {
    .providers-table-wrapper {
        display: block;
    }
}

.providers-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--al-card);
    border-radius: var(--al-radius-lg);
}

.providers-table th,
.providers-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--al-border);
}

.providers-table th {
    background: var(--al-muted);
    font-weight: 600;
    color: var(--al-foreground);
    vertical-align: top;
}

.providers-table-feature-col {
    text-align: left !important;
    width: 200px;
    min-width: 200px;
}

.providers-table-provider-col {
    position: relative;
    min-width: 180px;
    padding-top: 1.5rem !important;
}

.providers-table-provider-col--recommended {
    background: rgba(34, 197, 94, 0.05) !important;
    border-top: 2px solid var(--al-primary);
    border-left: 2px solid var(--al-primary);
    border-right: 2px solid var(--al-primary);
}

.providers-table-provider-col--recommended .provider-badge {
    top: -0.75rem;
}

.table-provider-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.table-provider-logo {
    max-width: 100px;
    max-height: 36px;
    object-fit: contain;
}

.table-provider-initials {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--al-foreground) 0%, #42435F 100%);
    color: var(--al-background);
    border-radius: var(--al-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.table-provider-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--al-foreground);
}

.table-provider-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--al-muted-foreground);
}

.feature-label-cell {
    text-align: left !important;
    font-weight: 500;
    color: var(--al-foreground);
    font-size: 0.875rem;
}

.feature-value-cell {
    font-size: 0.875rem;
    color: var(--al-foreground);
}

.feature-value-cell--recommended {
    background: rgba(34, 197, 94, 0.05);
    border-left: 2px solid var(--al-primary);
    border-right: 2px solid var(--al-primary);
}

.providers-table tbody tr:last-child .feature-value-cell--recommended {
    border-bottom: 2px solid var(--al-primary);
    border-bottom-left-radius: var(--al-radius-lg);
    border-bottom-right-radius: var(--al-radius-lg);
}

.feature-value-cell .feature-check,
.feature-value-cell .feature-cross {
    margin: 0 auto;
}

.table-rate {
    font-weight: 700;
    color: var(--al-primary);
    font-size: 1rem;
}

.cta-row td {
    padding: 1.25rem 1rem;
    border-bottom: none;
}

.table-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--al-foreground);
    color: var(--al-background);
    border: none;
    border-radius: var(--al-radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.table-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.table-cta-btn--primary {
    background: var(--al-primary);
}

/* ==================== */
/* Elementor Button Types */
/* ==================== */
.elementor .elementor-button.elementor-button-white,
.elementor .elementor-widget-button .elementor-button.elementor-button-white,
.elementor .elementor-button-wrapper .elementor-button.elementor-button-white,
.elementor-button-link.elementor-button-white {
    background-color: #ffffff;
}
