/* === 2TODRIVE SPECIFIEKE STYLING === */

/* --- Hero --- */
/* === 2TODRIVE HERO (SYNCHRONISATIE) === */
.twotodrive-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Ruimte voor alle elementen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Achtergrond foto over volle breedte */
.twotodrive-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/2toDrive2.png') no-repeat center 20%;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* Donkere overlay voor leesbaarheid */
.twotodrive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.twotodrive-hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 6rem 1.5rem;
}

/* Hero Badge Styling */
.twotodrive-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: var(--primary-blue);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 147, 200, 0.25);
}

/* De Titel (Blauw + Wit) */
.twotodrive-hero-content h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.twotodrive-hero-content h1 span {
    color: #ffffff;
    font-size: inherit;
    font-weight: inherit;
}

.hero-brand {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* De 3 kenmerken */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.hero-features span { 
    color: #ffffff;
    background: rgba(2, 132, 199, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
    .twotodrive-hero { min-height: 500px; }
    .twotodrive-hero-content .hero-badge { display: none; }
    
    .twotodrive-hero-content h1 { 
        font-size: 2rem; 
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-features span {
        width: fit-content;
    }

    /* Intro box aansluiting */
    .intro-premium-box {
        margin-top: -3rem;
        padding: 2.5rem 1.5rem;
    }
}

/* --- Intro --- */
.intro-premium-box {
    max-width: 900px;
    margin: -4rem auto 4rem;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 6px solid #0284c7;
}

.intro-premium-box h2 { 
    color: #0c4a6e; 
    margin-bottom: 1.5rem; 
}

.intro-premium-box p { 
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* --- Section Titles & Text --- */
.section-title { 
    text-align: center; 
    margin-bottom: 2rem; 
    font-size: 2.25rem; 
    color: #0c4a6e;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.conclusion {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c4a6e;
}

/* --- What Is Section --- */
.section-what-is { padding: 6rem 0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e0f2fe;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: #0284c7;
    margin: 0;
}

.info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #0c4a6e;
    margin: 0.5rem 0;
}

.goal-box {
    background: #f0f9ff;
    padding: 3rem;
    border-radius: 24px;
    max-width: 800px;
    margin: 3rem auto 0;
    border-left: 6px solid #0284c7;
}

.goal-box h3 {
    font-size: 1.5rem;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

.goal-box ul {
    list-style: none;
    padding: 0;
}

.goal-box li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
}

.goal-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0284c7;
    font-weight: 800;
    font-size: 1.3rem;
}

/* --- How It Works Section --- */
.section-how-it-works { padding: 6rem 0; background: #f8fafc; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto;
}

.step-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e0f2fe;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.step-card.highlight {
    border-color: #0284c7;
    background: #f0f9ff;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.35rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* --- Coach Section --- */
.section-coach { padding: 6rem 0; }

.coach-requirements {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.coach-requirements h3 {
    font-size: 1.5rem;
    color: #0c4a6e;
    text-align: center;
    margin-bottom: 2rem;
}

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

.requirement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e0f2fe;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.15);
}

.req-icon {
    width: 40px;
    height: 40px;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.requirement-card p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin: 0;
}

.coach-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coach-note p {
    font-size: 1.1rem;
    color: #92400e;
    margin: 0;
}

/* --- Our Approach Section --- */
.section-our-approach { padding: 6rem 0; background: #f8fafc; }

.approach-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-wrapper h3 {
    font-size: 1.5rem;
    color: #0c4a6e;
    text-align: center;
    margin: 3rem 0 2rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e0f2fe;
    text-align: center;
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.approach-card h4 {
    font-size: 1.1rem;
    color: #0284c7;
    margin: 0;
}

.result-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.result-box p {
    font-size: 1.15rem;
    color: #0c4a6e;
    margin: 0;
}

/* --- Safety Section --- */
.section-safety { padding: 6rem 0; }

.safety-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.safety-wrapper h2 {
    font-size: 2.25rem;
    color: #0c4a6e;
    text-align: center;
    margin-bottom: 1.5rem;
}

.answer {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.safety-benefits {
    background: #f0f9ff;
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.safety-item:last-child {
    margin-bottom: 0;
}

.safety-icon {
    width: 40px;
    height: 40px;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.safety-item p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin: 0;
    padding-top: 0.5rem;
}

.safety-conclusion {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.safety-conclusion p {
    font-size: 1.1rem;
    color: #0c4a6e;
    margin: 0;
    font-weight: 600;
}

/* --- Why Us Section --- */
.section-why-us { padding: 6rem 0; background: #f8fafc; }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e0f2fe;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.why-card h3 {
    font-size: 1.1rem;
    color: #0284c7;
    margin: 0;
}

.commitment-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
}

.commitment-box p {
    font-size: 1.15rem;
    color: #0c4a6e;
    margin: 0;
}

/* --- FAQ Section --- */
.section-faq { padding: 6rem 0; }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border-left: 6px solid #0284c7;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item.wide {
    grid-column: 1;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.steps-list {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.steps-list h4 {
    font-size: 1.15rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.steps-list ol {
    margin: 0;
    padding-left: 1.5rem;
}

.steps-list li {
    padding: 0.5rem 0;
    line-height: 1.6;
    color: var(--gray-700);
}

.warning {
    background: #fef3c7;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.warning strong {
    color: #92400e;
}

/* --- Final CTA --- */
.section-final-cta { 
    padding: 8rem 0; 
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.section-final-cta h2 {
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

.cta-intro {
    font-size: 1.15rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.cta-actions { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 2rem; 
    margin: 3rem 0; 
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #0284c7;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background: #0369a1;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(2, 132, 199, 0.4);
}

.btn-whatsapp {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #0284c7;
    border: 2px solid #0284c7;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #0284c7;
    color: white;
    transform: translateY(-3px);
}

.cta-footer { 
    color: #475569;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Background utilities --- */
.bg-light { background: #f8fafc; }

/* --- Responsive --- */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .requirements-grid,
    .approach-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-premium-box {
        padding: 2rem;
        margin-top: -2rem;
    }
    
    .section-final-cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }
    
    .goal-box,
    .info-box,
    .coach-note,
    .result-box,
    .safety-benefits,
    .safety-conclusion,
    .commitment-box,
    .approach-wrapper,
    .steps-list {
        padding: 2rem;
    }
}