/* ===== Driver page redesign (matches Figma "Driver Portal" frame) ===== */

.drv-hero {
    background: #F1F5F9;
    padding: 140px 8% 64px;
}

.drv-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #031F41;
    max-width: 900px;
    margin-bottom: 20px;
}

.drv-hero p {
    color: #44474E;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 28px;
}

.drv-hero-buttons {
    display: flex;
    gap: 14px;
}

.drv-btn-primary,
.drv-btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
}

.drv-btn-primary {
    background: #9E2A9B;
    color: #FFFFFF;
    border: 2px solid #9E2A9B;
}

.drv-btn-outline {
    background: #FFFFFF;
    color: #0B1C30;
    border: 1px solid #C4C6CF;
}

/* ---- Why Drive (Bento) ---- */
.drv-why-section {
    padding: 80px 8%;
    background: #FFFFFF;
}

.drv-why-section .section-title {
    text-align: left;
    margin: 0 0 32px;
}

.drv-why-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

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

.drv-benefit-card {
    border-radius: 24px;
    padding: 40px;
}

.drv-benefit-1 {
    flex: 1.7;
    background: #EFF4FF;
}

.drv-benefit-2 {
    flex: 1;
    background: #131B2E;
    color: #FFFFFF;
}

.drv-benefit-3 {
    flex: 0.8;
    background: #FFFFFF;
    border: 1px solid rgba(198, 198, 205, 0.4);
}

.drv-benefit-4 {
    flex: 1;
    background: #F4E0BF;
}

.drv-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.drv-benefit-icon img {
    width: 24px;
    height: 24px;
}

.drv-benefit-1 .drv-benefit-icon {
    background: rgba(75, 65, 225, 0.1);
    color: #4B41E1;
}

.drv-benefit-2 .drv-benefit-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.drv-benefit-3 .drv-benefit-icon {
    background: #645EFB;
    color: #FFFFFF;
}

.drv-benefit-4 .drv-benefit-icon {
    background: #FFFFFF;
    color: #0B1C30;
}

.drv-benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.drv-benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #45464D;
}

.drv-benefit-2 p {
    color: rgba(211, 228, 254, 0.8);
}

/* ---- Testimonials ---- */
.drv-testimonials-section {
    background: #EFF4FF;
    padding: 64px 8%;
}

.drv-testimonials-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.drv-testimonial {
    flex: 1;
    text-align: center;
    max-width: 352px;
}

.drv-testimonial-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 2px solid rgba(75, 65, 225, 0.2);
    padding: 2px;
    margin: 0 auto 24px;
    overflow: hidden;
}

.drv-testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.drv-testimonial-quote {
    font-style: italic;
    color: #45464D;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.drv-testimonial-name {
    font-weight: 600;
    color: #0B1C30;
    font-size: 1.125rem;
}

.drv-testimonial-role {
    color: #4B41E1;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ---- How To Join ---- */
.drv-join-section {
    background: #F8F9FA;
    padding: 80px 8%;
    text-align: center;
}

.drv-join-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 40px auto;
}

.drv-join-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #C4C6CF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #2B6485;
    font-size: 1.1rem;
}

.drv-join-icon img {
    width: 20px;
    height: 20px;
}

.drv-join-steps h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #031F41;
    margin-bottom: 6px;
}

.drv-join-steps p {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.drv-join-time {
    color: #2B6485;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---- Earnings calculator ---- */
.drv-calc-card {
    background: #EFF4FF;
    border-radius: 16px;
    padding: 48px;
    max-width: 1150px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.drv-calc-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #031F41;
    margin-bottom: 12px;
}

.drv-calc-card > p {
    color: #45464D;
    margin-bottom: 24px;
}

.drv-calc-slider-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #0B1C30;
    margin-bottom: 8px;
}

.drv-calc-slider {
    width: 100%;
    accent-color: #2B6485;
    margin-bottom: 32px;
}

.drv-calc-result {
    border-top: 1px solid rgba(43, 100, 133, 0.2);
    padding-top: 24px;
}

.drv-calc-result-label {
    color: #2B6485;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.drv-calc-result-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #031F41;
    margin-bottom: 16px;
}

.drv-calc-disclaimer {
    color: #8D939E;
    font-size: 0.75rem;
    font-style: italic;
}

/* ---- Eligibility & vehicles ---- */
.drv-eligibility-section {
    background: #F8F9FA;
    padding: 80px 8%;
}

.drv-eligibility-grid {
    display: flex;
    gap: 64px;
    max-width: 1280px;
    margin: 0 auto;
}

.drv-eligibility-col {
    flex: 1;
}

.drv-col-tag {
    color: #2B6485;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.drv-col-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: #031F41;
    margin: 0;
}

.drv-eligibility-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}

.drv-eligibility-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.drv-eligibility-list li:last-child {
    margin-bottom: 0;
}

.drv-eligibility-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #EFF4FF;
    color: #2B6485;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drv-eligibility-list h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #031F41;
    margin-bottom: 4px;
}

.drv-eligibility-list p {
    color: #45464D;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.drv-vehicle-cards {
    margin-top: 32px;
}

.drv-vehicle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.drv-vehicle-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #031F41;
    margin-bottom: 4px;
}

.drv-vehicle-card p {
    color: #6B7280;
    font-size: 0.85rem;
    margin: 0;
}

.drv-vehicle-card i {
    color: #2B6485;
    font-size: 1.3rem;
}

.drv-insurance-note {
    display: flex;
    gap: 12px;
    background: #EFF4FF;
    border: 1px solid #D3E4FE;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.drv-insurance-note i {
    color: #2B6485;
    font-size: 1rem;
    margin-top: 2px;
}

.drv-insurance-note p {
    color: #031F41;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ---- FAQ ---- */
.drv-faq-section {
    background: #F8F9FA;
    padding: 80px 8%;
}

/* ---- Final CTA ---- */
.drv-final-cta-section {
    padding: 0 8% 80px;
}

.drv-final-cta {
    background: linear-gradient(120deg, #DCEBFF, #EFF4FF);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    max-width: 1092px;
    margin: 0 auto;
}

.drv-final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #031F41;
    margin-bottom: 12px;
}

.drv-final-cta p {
    color: #44474E;
    margin-bottom: 24px;
}

.drv-final-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

@media (max-width: 991px) {
    .drv-why-row {
        flex-direction: column;
    }

    .drv-join-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .drv-testimonials-grid,
    .drv-eligibility-grid {
        flex-direction: column;
    }
}
