/* --- Banner Reused --- */
.page-banner-clean {
    background:
        radial-gradient(circle at top right, rgba(193, 218, 255, 0.35), transparent 40%),
        linear-gradient(135deg, #eaf4ff, #f6fbff);
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

body.dark-theme .page-banner-clean {
    background:
        radial-gradient(circle at top right, rgba(193, 218, 255, 0.12), transparent 40%),
        linear-gradient(135deg, #111827, #0f1720);
}

.page-banner-inner {
    max-width: 840px;
    margin: 0 auto;
}

.page-banner-inner h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.15;
}

.page-banner-inner p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
}

/* --- Neuro Intro Section --- */
.neuro-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.neuro-intro-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.neuro-intro-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.neuro-image-placeholder {
    background: #f0f7ff;
    border: 2px dashed rgba(193, 218, 255, 0.8);
    border-radius: 16px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

body.dark-theme .neuro-image-placeholder {
    background: #202b36;
    border-color: #31404f;
    color: var(--primary);
}

/* --- Card Grids --- */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* --- Adjusting the image to fit the placeholder --- */
.neuro-image-placeholder img {
    width: 100%;  /* CHANGED: Forces the image to stretch across the box */
    height: 100%; /* CHANGED: Forces it to fill the height */
    display: block;
    object-fit: contain; /* Scales the image up proportionally until it touches the edges! */
}

.neuro-image-placeholder {
    display: flex; /* Existing, but just confirming */
    align-items: center; /* Existing */
    justify-content: center; /* Existing */
    overflow: hidden; /* Added: stops any spillover if necessary */
    padding: 20px; /* Optional: adds a little breathing room around the image */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .neuro-image-placeholder {
        height: 280px; /* Shrinks the container on mobile so it looks better */
    }
}

/* --- Step Cards (How It Works) --- */
.neuro-step-card {
    padding: 36px 28px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #E2F7F6, #C1DAFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    box-shadow: 0 10px 20px rgba(193, 218, 255, 0.4);
}

.neuro-step-card h3 {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 12px;
}

.neuro-step-card p {
    color: var(--muted);
    font-size: 15px;
}

/* --- Reusable SVGs and Cards --- */
.card-icon {
    width: 54px;
    height: 54px;
    background: #eaf4ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1e3a8a;
    transition: 0.3s ease;
}

/* --- Modern Card Icons (Global) --- */
.card-icon {
    width: 54px !important;
    height: 54px !important;
    background: #eaf4ff; /* Soft icy blue background */
    border-radius: 14px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1e3a8a; /* Deep navy blue icon color */
    transition: 0.3s ease;
    flex-shrink: 0; /* Prevents the box from squishing */
}

.card-icon svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important; /* This stops it from being a solid black shape */
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Dark mode adjustments for icons */
body.dark-theme .card-icon {
    background: rgba(193, 218, 255, 0.1);
    color: var(--primary);
}

/* Hover effect so the icon lifts slightly */
.clean-card:hover .card-icon {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, #E2F7F6, #C1DAFF);
    color: #0f172a;
}

.neuro-benefit-card h3, .timeline-card h3, .safety-point-card h3 {
    font-size: 22px;
    color: #1e3a8a;
    margin-bottom: 12px;
    font-weight: 800;
}

body.dark-theme .neuro-benefit-card h3,
body.dark-theme .timeline-card h3,
body.dark-theme .safety-point-card h3 {
    color: var(--primary);
}

.neuro-benefit-card p, .timeline-card p, .safety-point-card p {
    color: var(--muted);
    font-size: 15px;
}

/* --- Safety Highlight Box --- */
.safety-box {
    background: linear-gradient(135deg, #eaf4ff, #f6fbff);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    box-shadow: var(--shadow);
}

body.dark-theme .safety-box {
    background: linear-gradient(135deg, #1a2430, #202b36);
}

.safety-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.15;
}

.safety-text p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.safety-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.safety-point-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

.safety-point-card .card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .neuro-intro-grid,
    .safety-box {
        grid-template-columns: 1fr;
    }
    
    .card-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner-clean {
        padding: 60px 0;
    }
    
    .page-banner-inner h1 {
        font-size: 36px;
    }

    .card-grid-3, .timeline-grid {
        grid-template-columns: 1fr;
    }

    .safety-box {
        padding: 35px 24px;
        border-radius: 22px;
    }
    
    .neuro-intro-text h2,
    .safety-text h2 {
        font-size: 32px;
    }

    .neuro-image-placeholder {
        height: 280px;
    }
    
    .safety-point-card {
        flex-direction: column;
        align-items: flex-start;
    }
}