/* ============================================
   NOVARIDE FINANCE - APPLE/TESLA LEVEL PREMIUM
   Ultra-Premium Credit Simulator & Benefits Section
   World-Class Business Aesthetics
   ============================================ */

/* ========== FINANCE PREMIUM SECTION CONTAINER ========== */

.finance-premium-section {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(180deg,
            #0a0a0a 0%,
            #080808 50%,
            #0a0a0a 100%);
    overflow: hidden;
}

.finance-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.06) 20%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.06) 80%,
            transparent);
}

/* Subtle ambient glow - Tesla style */
.finance-premium-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ========== PREMIUM GRID LAYOUT ========== */

.finance-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .finance-premium-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ========== CREDIT SIMULATOR - APPLE LEVEL ========== */

.simulator-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px;
    background: linear-gradient(145deg,
            rgba(20, 20, 20, 0.95) 0%,
            rgba(12, 12, 12, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    box-sizing: border-box;
}

/* Elegant top shimmer line */
.simulator-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(16, 185, 129, 0.3) 30%,
            rgba(16, 185, 129, 0.5) 50%,
            rgba(16, 185, 129, 0.3) 70%,
            transparent);
}

/* Subtle inner glow */
.simulator-premium::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 27px;
    background: radial-gradient(ellipse at top center,
            rgba(16, 185, 129, 0.03) 0%,
            transparent 50%);
    pointer-events: none;
}

.simulator-header {
    margin-bottom: 40px;
}

.simulator-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.simulator-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

/* ========== PREMIUM SLIDER CONTROLS ========== */

.slider-row-premium {
    margin-bottom: 32px;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slider-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.01em;
}

.slider-amount {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nova-green);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

/* Ultra-premium range slider - Apple style */
.slider-premium {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    outline: none;
    transition: background 0.3s ease;
}

.slider-premium::-webkit-slider-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.slider-premium::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #e5e5e5 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-premium::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.35),
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.slider-premium::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: none;
}

.slider-premium::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #e5e5e5 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ========== PAYMENT RESULT - TESLA ELEGANCE ========== */

.payment-display-premium {
    position: relative;
    text-align: center;
    padding: 40px 32px;
    margin-top: 40px;
    background: linear-gradient(145deg,
            rgba(16, 185, 129, 0.06) 0%,
            rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 20px;
}

.payment-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.payment-value-premium {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.payment-value-premium .currency {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--nova-green);
    margin-left: 8px;
    vertical-align: middle;
}

.payment-period-premium {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
    letter-spacing: 0.02em;
}

/* Premium CTA Button - Business Class, No Bounce */
.cta-premium {
    display: block;
    width: 100%;
    padding: 18px 32px;
    margin-top: 32px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #0a0a0a;
    background: linear-gradient(145deg, var(--nova-green) 0%, #0d9668 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.cta-premium:hover {
    opacity: 0.92;
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.35);
}

.simulator-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    letter-spacing: 0.01em;
}

/* ========== BENEFITS CARD - MATCHING SIMULATOR CONTAINER ========== */

.benefits-card-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px;
    background: linear-gradient(145deg,
            rgba(20, 20, 20, 0.95) 0%,
            rgba(12, 12, 12, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    box-sizing: border-box;
}

/* Elegant top shimmer line - matching simulator */
.benefits-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(16, 185, 129, 0.3) 30%,
            rgba(16, 185, 129, 0.5) 50%,
            rgba(16, 185, 129, 0.3) 70%,
            transparent);
}

/* Premium Header Inside Card */
.benefits-header-premium {
    margin-bottom: 32px;
}

.benefits-eyebrow-inline {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nova-green);
    margin-bottom: 8px;
}

.benefits-title-inline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* Benefits List - Flex grow to fill space */
.benefits-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    gap: 0;
}

/* Individual Benefit Item - Compact & Aligned */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.025) 0%,
            rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(16, 185, 129, 0.12);
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.035) 0%,
            rgba(255, 255, 255, 0.015) 100%);
}

/* Compact Icon */
.benefit-icon-sm {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,
            rgba(16, 185, 129, 0.1) 0%,
            rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 12px;
}

.benefit-icon-sm svg {
    width: 20px;
    height: 20px;
    color: var(--nova-green);
}

/* Benefit Text */
.benefit-text {
    flex: 1;
    min-width: 0;
}

.benefit-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.benefit-info {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* ========== PREMIUM SVG ICONS - APPLE STYLE ========== */

/* The SVG icons are inline in HTML for maximum control */

/* ========== RESPONSIVE ADJUSTMENTS ========== */

@media (max-width: 768px) {
    .finance-premium-section {
        padding: 60px 0 80px;
    }

    .simulator-premium,
    .benefits-card-premium {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .simulator-title,
    .benefits-title-inline {
        font-size: 1.3rem;
    }

    .payment-value-premium {
        font-size: 2.8rem;
    }

    .payment-value-premium .currency {
        font-size: 1.4rem;
    }

    .benefit-item {
        padding: 14px 16px;
    }

    .benefit-icon-sm {
        width: 40px;
        height: 40px;
    }

    .benefit-icon-sm svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {

    .simulator-premium,
    .benefits-card-premium {
        padding: 28px 20px;
    }

    .payment-value-premium {
        font-size: 2.4rem;
    }

    .benefit-item {
        gap: 12px;
        padding: 12px 14px;
    }
}

/* ========== PARTNERS SECTION - PREMIUM REFRESH ========== */

.partners-premium-section {
    position: relative;
    padding: 80px 0;
    background: #070707;
}

.partners-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.04) 30%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.04) 70%,
            transparent);
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
}

.partners-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.partners-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.01em;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-badge {
    padding: 20px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.partner-badge:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.partner-name {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}