/* =================================================================
   BODY STYLES - Scoped to #ai_body
   Vector Sales Advisors Homepage with Video Hero & ADLW Framework
   ================================================================= */

/* Hero Carousel Section */
#ai_body .video-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brand-dark);
}

#ai_body .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#ai_body .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

#ai_body .hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

#ai_body .hero-slide img,
#ai_body .hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#ai_body .hero-slide video {
    width: 110%;
    height: 110%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
}

#ai_body .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5), rgba(15, 31, 51, 0.6));
    z-index: 2;
}

/* Carousel Navigation Dots */
#ai_body .hero-carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 4;
}

#ai_body .hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

#ai_body .hero-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

#ai_body .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

#ai_body .hero-badge {
    display: inline-block;
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

#ai_body .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#ai_body .hero-title .highlight {
    color: #4a9eff;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
}

#ai_body .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

#ai_body .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#ai_body .hero-btn-primary {
    background: var(--brand-accent);
    color: white;
    border: 2px solid var(--brand-accent);
}

#ai_body .hero-btn-primary:hover {
    background: #ff5722;
    border-color: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

#ai_body .hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

#ai_body .hero-btn-secondary:hover {
    background: white;
    color: var(--brand-primary);
}

/* Hero Logo */
#ai_body .hero-logo {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ai_body .hero-logo-image {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#ai_body .hero-logo-image:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Four Pillars Section */
#ai_body .four-pillars {
    padding: 5rem 0;
    background: #f8f9fb;
    position: relative;
}

#ai_body .pillars-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#ai_body .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

#ai_body .pillar-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

#ai_body .pillar-item:nth-child(1) { animation-delay: 0.1s; }
#ai_body .pillar-item:nth-child(2) { animation-delay: 0.2s; }
#ai_body .pillar-item:nth-child(3) { animation-delay: 0.3s; }
#ai_body .pillar-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#ai_body .pillar-icon-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #dfe3e8, #f0f2f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 -5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

#ai_body .pillar-item:hover .pillar-icon-wrapper {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        inset 0 -5px 15px rgba(0, 0, 0, 0.05);
}

#ai_body .pillar-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: var(--brand-accent);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

#ai_body .pillar-icon-wrapper::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--brand-accent);
    border-radius: 50%;
    opacity: 0.15;
}

#ai_body .pillar-icon {
    font-size: 4.5rem;
    color: #5a6c7d;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#ai_body .pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-accent);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

#ai_body .pillar-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive Design for Pillars */
@media (max-width: 1024px) {
    #ai_body .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 640px) {
    #ai_body .pillars-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    #ai_body .pillar-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    #ai_body .pillar-icon {
        font-size: 3rem;
    }
}

/* Events Section - Horizontal Scroll */
#ai_body .events-section {
    padding: 4rem 0;
    background: white;
    overflow: hidden;
}

#ai_body .events-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
}

#ai_body .events-header .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

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

#ai_body .events-slider-container {
    position: relative;
    padding: 0 4rem;
}

#ai_body .events-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#ai_body .events-slider::-webkit-scrollbar {
    display: none;
}

#ai_body .event-slide {
    flex: 0 0 min(90%, 700px);
    min-width: 0;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ai_body .event-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.2);
}

#ai_body .event-slide-inner {
    display: flex;
    flex-direction: row;
    height: 360px;
}

#ai_body .event-slide-image {
    position: relative;
    width: 40%;
    height: 360px;
    overflow: hidden;
    flex-shrink: 0;
}

#ai_body .event-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#ai_body .event-slide:hover .event-slide-image img {
    transform: scale(1.05);
}

#ai_body .event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-primary);
    color: white;
    padding: 12px 16px;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#ai_body .event-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.95;
}

#ai_body .event-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

#ai_body .event-slide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
    justify-content: space-between;
}

#ai_body .event-title {
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

#ai_body .event-location {
    font-size: 1rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#ai_body .event-location i {
    font-size: 0.9rem;
}

#ai_body .event-description {
    font-size: 0.95rem;
    color: var(--brand-neutral);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

#ai_body .event-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

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

#ai_body .event-meta i {
    color: var(--brand-primary);
    font-size: 0.85rem;
}

#ai_body .event-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--brand-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

#ai_body .event-cta-btn:hover {
    background: #ff5722;
    transform: translateX(3px);
}

/* View All Events Card */
#ai_body .view-all-slide {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

#ai_body .view-all-content {
    text-align: center;
    padding: 3rem;
    color: white;
}

#ai_body .view-all-content > i:first-child {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

#ai_body .view-all-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

#ai_body .view-all-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
}

#ai_body .view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#ai_body .view-all-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
#ai_body .events-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--brand-dark);
}

#ai_body .events-nav:hover {
    background: var(--brand-primary);
    transform: translateY(-50%) scale(1.1);
    color: white;
}

#ai_body .events-nav-prev {
    left: 1rem;
}

#ai_body .events-nav-next {
    right: 1rem;
}

#ai_body .events-nav i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #ai_body .events-header {
        padding: 0 1rem;
    }

    #ai_body .events-header .section-title {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    #ai_body .events-slider-container {
        padding: 0 1rem;
    }

    #ai_body .event-slide {
        flex: 0 0 min(85%, 340px);
    }

    #ai_body .event-slide-inner {
        flex-direction: column;
        height: auto;
    }

    #ai_body .event-slide-image {
        width: 100%;
        height: 200px;
    }

    #ai_body .event-slide-content {
        padding: 1.25rem;
    }

    #ai_body .event-meta {
        flex-direction: column;
        gap: 0.65rem;
    }

    #ai_body .events-nav {
        display: none;
    }

    #ai_body .events-slider {
        gap: 1rem;
    }
}

/* ADLW Framework Section - Assess, Develop, Lead, Win */
#ai_body .adlw-framework {
    padding: 5rem 0;
    background: #f8f9fb;
    position: relative;
}

#ai_body .framework-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

#ai_body .framework-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#ai_body .framework-subtitle {
    font-size: 1.125rem;
    color: var(--brand-neutral);
    line-height: 1.7;
}

#ai_body .framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#ai_body .framework-step {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

#ai_body .framework-step:nth-child(1) { animation-delay: 0.1s; }
#ai_body .framework-step:nth-child(2) { animation-delay: 0.2s; }
#ai_body .framework-step:nth-child(3) { animation-delay: 0.3s; }
#ai_body .framework-step:nth-child(4) { animation-delay: 0.4s; }

#ai_body .framework-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

#ai_body .framework-step:hover .framework-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(30, 58, 95, 0.3);
}

/* Use consistent theme blue for all steps */
#ai_body .framework-step .framework-icon {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
}

#ai_body .framework-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: white;
    border: 3px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary);
}

#ai_body .framework-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

#ai_body .framework-step-description {
    font-size: 0.95rem;
    color: var(--brand-neutral);
    line-height: 1.6;
}

/* Connecting Lines */
#ai_body .framework-step {
    position: relative;
}

#ai_body .framework-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 100px;
    width: calc(100% + 2rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(30, 58, 95, 0.5), rgba(30, 58, 95, 0.3));
    z-index: 0;
}

/* Hide lines on smaller screens */
@media (max-width: 1024px) {
    #ai_body .framework-step:not(:last-child)::after {
        display: none;
    }
}

/* Mission & Values Section */
#ai_body .mission-values {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

#ai_body .mission-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

#ai_body .mission-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

#ai_body .mission-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

#ai_body .mission-headline .highlight {
    color: var(--brand-accent);
}

#ai_body .mission-intro {
    font-size: 1.125rem;
    color: var(--brand-neutral);
    line-height: 1.8;
    margin-bottom: 1rem;
}

#ai_body .mission-cta {
    font-size: 1.125rem;
    color: var(--brand-dark);
    font-weight: 600;
    margin-top: 2rem;
}

#ai_body .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

#ai_body .value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--brand-accent);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

#ai_body .value-card:nth-child(1) { animation-delay: 0.2s; }
#ai_body .value-card:nth-child(2) { animation-delay: 0.3s; }
#ai_body .value-card:nth-child(3) { animation-delay: 0.4s; }

#ai_body .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
    border-top-color: #ff5722;
}

#ai_body .value-card::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: var(--brand-accent);
    font-size: 1.25rem;
    opacity: 0;
    transition: all 0.3s ease;
}

#ai_body .value-card:hover::after {
    opacity: 1;
    right: 1.5rem;
}

#ai_body .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-accent), #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

#ai_body .value-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#ai_body .value-description {
    font-size: 1rem;
    color: var(--brand-neutral);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    #ai_body .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    #ai_body .mission-headline {
        font-size: 2rem;
    }

    #ai_body .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Services Overview Section */
#ai_body .services-overview {
    padding: 5rem 0;
    background: #f8f9fb;
}

#ai_body .services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#ai_body .services-header {
    text-align: center;
    margin-bottom: 4rem;
}

#ai_body .services-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#ai_body .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

#ai_body .service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#ai_body .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-dark));
}

#ai_body .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#ai_body .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

#ai_body .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

#ai_body .service-link {
    color: var(--brand-accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

/* Stats Section */
#ai_body .stats-section {
    padding: 4rem 0;
    background: var(--brand-primary);
    position: relative;
    overflow: hidden;
}

#ai_body .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#ai_body .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

#ai_body .stat-item {
    text-align: center;
    color: white;
}

#ai_body .stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ai_body .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



/* Responsive Design */
@media (max-width: 1024px) {
    #ai_body .framework-grid {
        grid-template-columns: repeat(2, 2fr);
        gap: 3rem;
    }

    #ai_body .framework-step::after {
        display: none;
    }

    #ai_body .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #ai_body .video-hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    #ai_body .hero-content {
        padding: 0 1.5rem;
    }

    #ai_body .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    #ai_body .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    #ai_body .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    #ai_body .hero-carousel-dots {
        bottom: 1rem;
    }

    #ai_body .hero-logo {
        margin-top: 2rem;
    }

    #ai_body .hero-logo-image {
        max-width: 150px;
    }

    #ai_body .framework-grid {
        grid-template-columns: 1fr;
    }

    #ai_body .services-grid {
        grid-template-columns: 1fr;
    }

    #ai_body .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #ai_body .video-hero {
        min-height: 100vh;
    }

    #ai_body .hero-content {
        padding: 0 1rem;
    }

    #ai_body .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
    }

    #ai_body .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    #ai_body .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    #ai_body .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    #ai_body .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    #ai_body .hero-carousel-dots {
        bottom: 0.75rem;
        gap: 0.5rem;
    }

    #ai_body .hero-dot {
        width: 10px;
        height: 10px;
    }

    #ai_body .hero-dot.active {
        width: 24px;
    }

    #ai_body .hero-logo {
        margin-top: 1.5rem;
    }

    #ai_body .hero-logo-image {
        max-width: 130px;
        padding: 0.75rem;
    }
}
