/* Hero Section */
#ai_body .hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--medical-blue-light) 0%, var(--brand-light) 100%);
    overflow: hidden;
}

#ai_body .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#ai_body .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--brand-gold-light);
    color: var(--brand-gold-dark);
    border-radius: 2rem;
    font-size: 0.825rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: fit-content;
}

#ai_body .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

#ai_body .hero-description {
    font-size: 1rem;
    color: var(--brand-neutral);
    margin-bottom: 2rem;
    line-height: 1.65;
}

#ai_body .hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

#ai_body .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#ai_body .hero-stats {
    display: flex;
    gap: 2rem;
}

#ai_body .stat {
    display: flex;
    flex-direction: column;
}

#ai_body .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
}

#ai_body .stat-label {
    font-size: 0.875rem;
    color: var(--brand-neutral);
}

#ai_body .hero-image {
    position: relative;
}

#ai_body .device-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#ai_body .floating-badge {
    position: absolute;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--brand-dark);
}

#ai_body .floating-badge.top {
    top: 2rem;
    right: -2rem;
}

#ai_body .floating-badge.bottom {
    bottom: 2rem;
    left: -2rem;
}

#ai_body .floating-badge i {
    color: var(--brand-gold);
}

/* How It Works Section */
#ai_body .how-it-works {
    background: white;
}

#ai_body .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#ai_body .section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

#ai_body .section-subtitle {
    font-size: 1.125rem;
    color: var(--brand-neutral);
}

#ai_body .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#ai_body .process-card {
    position: relative;
    transition: all 0.3s ease;
    padding: 0 !important; /* Override medical-card padding */
}

#ai_body .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

#ai_body .process-visual {
    position: static; /* Changed from relative */
    height: 200px;
    overflow: hidden;
    border-radius: 0.75rem 0.75rem 0 0;
}

#ai_body .process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.32);
    transition: transform 0.3s ease;
}

#ai_body .process-card:hover .process-image {
    transform: scale(1.38);
}

#ai_body .process-icon {
    position: absolute;
    top: 170px; /* Positioned from top of card */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    border: 4px solid white;
    z-index: 10;
}

#ai_body .process-content {
    padding: 2.75rem 1.25rem 1.5rem;
    text-align: center;
    position: relative;
}

#ai_body .process-content h3 {
    font-size: 1.125rem;
    color: var(--brand-dark);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

#ai_body .process-content p {
    color: var(--brand-neutral);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Benefits Section */
#ai_body .benefits-section {
    padding: 3rem 0;
    background: var(--medical-gray);
}

#ai_body .benefits-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

#ai_body .benefits-image {
    position: relative;
    overflow: visible;
    border-radius: 1rem;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ai_body .benefits-image img {
    width: 82%;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    transform: none;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

#ai_body .image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

#ai_body .overlay-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--brand-dark);
    font-weight: 600;
}

#ai_body .overlay-stat i {
    color: var(--brand-accent);
    font-size: 1.5rem;
}

#ai_body .benefits-content h2 {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 2rem;
}

#ai_body .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#ai_body .benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

#ai_body .benefit-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gold-light);
    color: var(--brand-gold);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

#ai_body .benefit-text h4 {
    font-size: 1.15rem;
    color: var(--brand-dark);
    margin-bottom: 0.45rem;
}

#ai_body .benefit-text p {
    color: var(--brand-neutral);
    font-size: 1rem;
    line-height: 1.6;
}

/* Target Audience Section */
#ai_body .target-audience {
    background: white;
}

#ai_body .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

#ai_body .audience-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

#ai_body .audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

#ai_body .card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medical-blue-light);
    color: var(--brand-primary);
    border-radius: 1rem;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

#ai_body .audience-card h3 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#ai_body .audience-card p {
    color: var(--brand-neutral);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#ai_body .audience-hero-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#ai_body .audience-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 380px;
}

#ai_body .card-link {
    color: var(--brand-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

#ai_body .card-link:hover {
    gap: 0.75rem;
}

#ai_body .conditions-treated {
    background: var(--medical-blue-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

#ai_body .conditions-treated h3 {
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 2rem;
}

#ai_body .conditions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

#ai_body .condition-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--brand-dark);
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 200px;
    justify-content: flex-start;
}

#ai_body .condition-item i {
    color: var(--brand-accent);
}

/* Clinical Section */
#ai_body .clinical-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
}

#ai_body .clinical-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#ai_body .clinical-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

#ai_body .clinical-text .lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

#ai_body .clinical-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

#ai_body .clinical-stat {
    display: flex;
    flex-direction: column;
}

#ai_body .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

#ai_body .stat-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

#ai_body .clinical-section .btn-primary {
    background: white;
    color: var(--brand-primary);
}

#ai_body .clinical-section .btn-primary:hover {
    background: var(--brand-light);
}

#ai_body .clinical-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
#ai_body .cta-section {
    padding: 4rem 0;
    background: var(--medical-gray);
}

#ai_body .cta-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

#ai_body .cta-content h2 {
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#ai_body .cta-content p {
    font-size: 1.125rem;
    color: var(--brand-neutral);
    margin-bottom: 2rem;
}

#ai_body .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

#ai_body .cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

#ai_body .cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-neutral);
    font-size: 0.875rem;
}

#ai_body .cta-features i {
    color: var(--brand-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    #ai_body .hero-content,
    #ai_body .benefits-wrapper,
    #ai_body .clinical-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #ai_body .benefits-image img {
        min-height: 0;
    }

    #ai_body .hero-title {
        font-size: 2rem;
    }

    #ai_body .hero-cta {
        flex-direction: column;
    }

    #ai_body .btn-lg {
        width: 100%;
        justify-content: center;
    }

    #ai_body .hero-stats {
        justify-content: space-around;
    }

    #ai_body .floating-badge {
        display: none;
    }

    #ai_body .cta-buttons {
        flex-direction: column;
    }

    #ai_body .cta-buttons .btn-lg {
        width: 100%;
        justify-content: center;
    }

    #ai_body .condition-item {
        flex: 1 1 100%;
        width: 100%;
        min-width: unset;
    }
}
