      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
        }

         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            background-color: #F0F0F0;
        }

        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        /* Logo */
        .logo {
            width: auto;
            height: 38px;
        }

        .logo-icon {
            width: auto;
            height: 32px;
        }

        /* Nav Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            color: #172B4D;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            background: #F4F5F7;
            color: #0052CC;
        }

        .nav-link.active {
            background: #E9F2FF;
            color: #0052CC;
        }

        .chevron {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .chevron {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            min-width: 280px;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 12px;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-section {
            padding: 8px 0;
        }

        .dropdown-title {
            font-size: 12px;
            font-weight: 600;
            color: #5E6C84;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 12px;
            margin-bottom: 4px;
        }

        .dropdown-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            color: #172B4D;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: #F4F5F7;
        }

        .dropdown-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: #E9F2FF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0052CC;
        }

        .dropdown-content {
            flex: 1;
        }

        .dropdown-item-title {
            font-size: 15px;
            font-weight: 600;
            color: #172B4D;
            margin-bottom: 4px;
        }

        .dropdown-item-desc {
            font-size: 13px;
            color: #5E6C84;
            line-height: 1.4;
        }

        .dropdown-divider {
            height: 1px;
            background: #E0E0E0;
            margin: 8px 0;
        }

        /* Search & Actions */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .search-btn {
            width: 40px;
            height: 40px;
            background: #F4F5F7;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #172B4D;
            transition: all 0.2s ease;
        }

        .search-btn:hover {
            background: #E9F2FF;
            color: #0052CC;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: #F4F5F7;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            color: #172B4D;
        }

        /* Mega Menu (for More +) */
        .mega-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            width: 600px;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 24px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .mega-menu-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-container {
                padding: 0 20px;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #E0E0E0;
            padding: 16px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-item {
            margin-bottom: 8px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: #F4F5F7;
            border-radius: 8px;
            text-decoration: none;
            color: #172B4D;
            font-weight: 500;
        }

        .mobile-dropdown {
            display: none;
            padding: 12px 0 12px 16px;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 10px 16px;
            color: #5E6C84;
            text-decoration: none;
            border-radius: 6px;
            margin-bottom: 4px;
        }

        .mobile-dropdown-item:hover {
            background: #F4F5F7;
            color: #172B4D;
        }
        /* ---------------------------------------------------------------------- */

        /* Demo Content */
        .demo-content {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 40px;
        }

        .demo-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .demo-content {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .demo-content h1 {
            font-size: 2rem;
            color: #111827;
            margin-bottom: 1rem;
        }

        .demo-content p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            background-color: #FAFBFC;
        }

        /* Hero Section */
        .hero-section {
            padding: 60px 20px;
            text-align: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Badge */
        .badge {
            display: inline-flex;
            align-items: center;
            margin-bottom: 30px;
            transform: rotate(-2deg);
        }

        .badge-blue {
            background-color: #5865f2;
            color: #f6f6f6;
            padding: 8px 16px;
            font-weight: 600;
            font-size: 18px;
        }

        .badge-text {
            background-color: #f6f6f6;
            color: #172B4D;
            padding: 8px 16px;
            font-weight: 500;
            font-size: 18px;
            border: 2px solid #5865f2;
        }

        /* Hero Title */
        .hero-title {
            font-size: 64px;
            font-weight: 600;
            color: #172B4D;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .highlight {
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            right: 0;
            height: 12px;
            background-color: #FFC400;
            z-index: -1;
        }

        /* Subtitle */
        .hero-subtitle {
            font-size: 20px;
            color: #5E6C84;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* CTA Button */
        .cta-button {
            background-color: #5865f2;
            color: #f6f6f6;
            font-size: 18px;
            font-weight: 600;
            padding: 14px 32px;
            border: none;
            border-radius: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
        }

        .cta-button:hover {
            background-color: #5865f2;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 80px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-card {
            background: #f6f6f6;
            border: 2px solid #DFE1E6;
            border-radius: 8px;
            padding: 30px 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-card:hover {
            border-color: #5865f2;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .feature-card.active {
            border-color: #5865f2;
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
        }

        .feature-icon {
            margin-bottom: 16px;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: #172B4D;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
                margin-top: 60px;
            }

            .badge-blue,
            .badge-text {
                font-size: 16px;
                padding: 6px 12px;
            }
        }
/* ---------------------teamwork------------------------------ */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f5f5f5;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h2 {
            font-size: 2.5rem;
            color: #101214;
            margin-bottom: 20px;
        }

        .scroll-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* Left Side - Scrollable Cards */
        .cards-container {
            height: 600px;
            overflow-y: auto;
            padding-right: 20px;
            scrollbar-width: none;
        }

        .cards-container::-webkit-scrollbar {
            width: 0;
            display: none;
        }

        .cards-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .cards-container::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .cards-container::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .card {
            background: #f6f6f6;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .card.active {
            border-color: #5865f2;
            box-shadow: 0 10px 30px rgba(24,104,219,0.2);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f4ff;
            border-radius: 8px;
        }

        .card h3 {
            font-size: 1.5rem;
            color: #101214;
            margin-bottom: 15px;
        }

        .card p {
            font-size: 1rem;
            color: #5e6c84;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #5865f2;
            color: #f6f6f6;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .btn-primary:hover {
            background: #5865f2;
        }

        .btn-secondary {
            color: #5865f2;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .btn-secondary:hover {
            color: #5865f2;
        }

        /* Right Side - Media Display */
        .media-container {
            position: sticky;
            top: 20px;
            height: 600px;
            background: #f6f6f6;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .media-item {
            width: 100%;
            height: 100%;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 40px;
            background: linear-gradient(#5865f2);
        }

        .media-item.active {
            display: flex;
        }

        .media-item img,
        .media-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .media-placeholder {
            text-align: center;
            color: #f6f6f6;
        }

        .media-placeholder h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .scroll-section {
                grid-template-columns: 1fr;
            }

            .media-container {
                position: relative;
                order: -1;
                height: 400px;
            }

            .cards-container {
                height: auto;
                max-height: none;
            }
        }
        /* ============================================
   SECTIONS.CSS - Complete Styling
   From AI Collaboration to Footer
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #172B4D;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   AI COLLABORATION SECTION
   ============================================ */
.ai-collaboration-section {
    padding: 120px 20px;
    background: linear-gradient(#f6f6f6);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #172B4D;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 20px;
    color: #5E6C84;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.ai-feature-card {
    background: #f6f6f6;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.ai-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #5865f2;
}

.feature-visual {
    margin-bottom: 32px;
}

.visual-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.visual-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: #5E6C84;
    line-height: 1.7;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: linear-gradient(135deg, #5865f2 0%, #5865f2 100%);
    color: #f6f6f6;
    padding: 16px 40px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 82, 204, 0.4);
}

.btn-secondary-large {
    background: #f6f6f6;
    color: #5865f2;
    padding: 16px 40px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid #5865f2;
}

.btn-secondary-large:hover {
    background: #F7F8F9;
    transform: translateY(-3px);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 120px 20px;
    background: #f6f6f6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #F7F8F9 0%, #FFFFFF 100%);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #DFE1E6;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #5865f2;
}

.testimonial-quote {
    margin-bottom: 24px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: #5865f2;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 18px;
    color: #172B4D;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #5E6C84;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #5865f2 0%, #5865f2 100%);
    color: #f6f6f6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #f6f6f6;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   PRODUCT SHOWCASE SECTION
   ============================================ */
.product-showcase-section {
    padding: 120px 20px;
    background: #f6f6f6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #f6f6f6;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #DFE1E6;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #5865f2;
}

.product-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.product-icon svg {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.product-name {
    font-size: 24px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 16px;
    color: #5E6C84;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources-section {
    padding: 120px 20px;
    background: #f6f6f6;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.resource-card {
    background: #f6f6f6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #DFE1E6;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #5865f2;
}

.resource-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-content {
    padding: 32px;
}

.resource-tag {
    display: inline-block;
    background: #E9F2FF;
    color: #5865f2;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.resource-title {
    font-size: 22px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 12px;
    line-height: 1.3;
}

.resource-description {
    font-size: 16px;
    color: #5E6C84;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    color: #5865f2;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 4px;
}

.resource-link:hover {
    gap: 8px;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #172B4D 0%, #0B1A33 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-size: 56px;
    font-weight: 700;
    color: #f6f6f6;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-banner-text {
    font-size: 22px;
    color: #f6f6f6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #172B4D;
    color: #f6f6f6;
    padding: 80px 20px 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    color: #f6f6f6;
}

.footer-logo .brand {
    font-size: 24px;
    font-weight: bold;
    color: #f6f6f6;
}

.footer-tagline {
    color: #f6f6f6;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6f6f6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #5865f2;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #f6f6f6;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f6f6f6;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f6f6f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #f6f6f6;
}

.footer-language {
    display: flex;
    align-items: center;
}

.language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f6f6f6;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
}

.language-selector svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cta-banner-title {
        font-size: 42px;
    }

    .ai-features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .ai-features-grid,
    .testimonials-grid,
    .products-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .cta-banner-title {
        font-size: 36px;
    }

    .cta-banner-text {
        font-size: 18px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
    }

    .cta-banner-buttons {
        width: 100%;
    }

    .cta-banner-buttons .btn-primary-large,
    .cta-banner-buttons .btn-secondary-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ai-collaboration-section,
    .testimonials-section,
    .stats-section,
    .product-showcase-section,
    .resources-section,
    .cta-banner-section {
        padding: 80px 16px;
    }

    .footer {
        padding: 60px 16px 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.btn-primary-large:focus,
.btn-secondary-large:focus,
.social-link:focus,
.footer-links a:focus,
.language-selector:focus {
    outline: 3px solid rgba(0, 82, 204, 0.5);
    outline-offset: 2px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 80px;
}

.mt-large {
    margin-top: 80px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .footer,
    .cta-banner-section,
    .social-links {
        display: none;
    }
}