  :root {
        --primary-color: #6366f1;
        --primary-light: rgba(99, 102, 241, 0.1);
        --primary-dark: #4f46e5;
        --secondary-color: #f43f5e;
        --secondary-light: rgba(244, 63, 94, 0.1);
        --text-dark: #1e293b;
        --text-light: #64748b;
        --white: #ffffff;
        --gray-light: #f8fafc;
        --gray: #e2e8f0;
        --success: #10b981;
        --border-radius: 12px;
        --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
        --glow-mr: 0 0 15px rgba(99, 102, 241, 0.7);
        --glow-mrs: 0 0 15px rgba(244, 63, 94, 0.7);
        --dark-bg: #151828;
    }

    /* Hero Section */
    .ai-hero {
        background-color: #151828;
        padding: 140px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .ai-hero__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
        z-index: 2;
    }

    .ai-hero__row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 -15px;
    }

    .ai-hero__col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
    }

    .ai-hero__title {
        font-size: 48px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .ai-hero__title span {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
    }

    .ai-hero__title span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 6px;
        bottom: 5px;
        left: 0;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        opacity: 0.3;
        border-radius: 10px;
    }

    .ai-hero__text {
        font-size: 18px;
        color: var(--text-light);
        margin-bottom: 36px;
        line-height: 1.7;
    }

    .ai-hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        border-radius: 30px;
        text-decoration: none;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    }

    .ai-hero__btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(79, 70, 229, 0.4);
    }

    .ai-hero__image {
        position: relative;
        text-align: center;
        z-index: 1;
    }

    .ai-characters {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .ai-character {
        position: absolute;
        width: 180px;
        height: 180px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mr-pany {
        left: 15%;
        background: linear-gradient(135deg, #6366f1, #4f46e5);
        border-radius: 50%;
        padding: 20px;
        animation: float 6s ease-in-out infinite;
        box-shadow: var(--glow-mr);
    }

    .mrs-pany {
        right: 15%;
        background: linear-gradient(135deg, #f43f5e, #e11d48);
        border-radius: 50%;
        padding: 20px;
        animation: float 6s ease-in-out infinite 1s;
        box-shadow: var(--glow-mrs);
    }

    .ai-face {
        width: 120px;
        height: 120px;
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .ai-eyes {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .ai-eye {
        width: 16px;
        height: 16px;
        background-color: #151828;
        border-radius: 50%;
        position: relative;
        animation: blink 4s infinite;
    }

    .ai-eye:nth-child(2) {
        animation-delay: 0.5s;
    }

    .ai-pupil {
        position: absolute;
        width: 6px;
        height: 6px;
        background-color: var(--white);
        border-radius: 50%;
        top: 3px;
        left: 5px;
    }

    .ai-mouth {
        width: 30px;
        height: 10px;
        background-color: #151828;
        border-radius: 0 0 15px 15px;
        margin-top: 25px;
        transition: all 0.3s ease;
    }

    .mrs-pany .ai-mouth {
        border-radius: 15px 15px 0 0; 
    }

    .mr-pany:hover .ai-mouth {
        border-radius: 0 0 20px 20px;
        height: 12px;
    }

    .mrs-pany:hover .ai-mouth {
        border-radius: 10px 10px 0 0;
    bottom: 20px;
    }

    .ai-connection {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 180px;
        height: 5px;
        background: linear-gradient(90deg, #4f46e5, #e11d48);
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
        z-index: -1;
    }

    .ai-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .ai-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 50%;
        animation: particle-animation linear infinite;
    }

    .neural-network {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.3;
    }

    /* Features Section */
    .ai-features {
        padding: 80px 0;
        background-color: var(--gray-light);
        position: relative;
        overflow: hidden;
    }

    .ai-features__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .ai-features__title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 50px;
    }

    .ai-features__title span {
        color: var(--primary-color);
    }

    .ai-features__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .ai-feature {
        background-color: var(--white);
        border-radius: var(--border-radius);
        padding: 30px;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
    }

    .ai-feature:hover {
        transform: translateY(-10px);
    }

    .ai-feature__icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .ai-feature:nth-child(1) .ai-feature__icon {
        background-color: var(--primary-light);
        color: var(--primary-color);
    }

    .ai-feature:nth-child(2) .ai-feature__icon {
        background-color: var(--secondary-light);
        color: var(--secondary-color);
    }

    .ai-feature:nth-child(3) .ai-feature__icon {
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--success);
    }

    .ai-feature__icon svg {
        width: 30px;
        height: 30px;
    }

    .ai-feature__title {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .ai-feature__text {
        font-size: 15px;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* How It Works Section */
    .ai-how-it-works {
        padding: 80px 0;
        background-color: var(--white);
    }

    .ai-how-it-works__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .ai-how-it-works__title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 50px;
    }

    .ai-how-it-works__title span {
        color: var(--primary-color);
    }

    .ai-steps {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .ai-step {
        flex: 0 0 calc(33.333% - 40px);
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .ai-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        width: 80%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        z-index: 0;
    }

    .ai-step__number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 28px;
        font-weight: 700;
        margin: 0 auto 20px;
    }

    .ai-step:nth-child(2) .ai-step__number {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .ai-step:nth-child(3) .ai-step__number {
        background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    }

    .ai-step__title {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .ai-step__text {
        font-size: 15px;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Dans Eden Karakterler Bölümü */
    .ai-dance-section {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        margin: 5px 0;
        background-color: var(--dark-bg);
        border-radius: var(--border-radius);
    }

    #neural-network-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .dancing-characters {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        gap: 115px;
        height: 100%;
        align-items: center;
    }

    .dancing-character {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dancing-mr-pany {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        box-shadow: var(--glow-mr);
        animation: dance 3s ease-in-out infinite, float 6s ease-in-out infinite;
    }

    .dancing-mrs-pany {
        background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
        box-shadow: var(--glow-mrs);
        animation: dance 3s ease-in-out infinite 1.5s, float 6s ease-in-out infinite 3s;
    }

    .character-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        filter: blur(15px);
        opacity: 0.5;
        z-index: -1;
    }

    .dancing-mr-pany .character-glow {
        background: var(--primary-color);
        animation: pulse 2s infinite;
    }

    .dancing-mrs-pany .character-glow {
        background: var(--secondary-color);
        animation: pulse 2s infinite 1s;
    }

    .character-body {
        width: 80px;
        height: 80px;
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .character-face {
        width: 60px;
        height: 60px;
        position: relative;
    }

    .character-eyes {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

    .dancing-eye {
        width: 12px;
        height: 12px;
        background-color: var(--dark-bg);
        border-radius: 50%;
        position: relative;
        animation: blink 4s infinite;
    }

    .dancing-eye.right-eye {
        animation-delay: 0.5s;
    }

    .dancing-pupil {
        position: absolute;
        width: 4px;
        height: 4px;
        background-color: var(--white);
        border-radius: 50%;
        top: 2px;
        left: 4px;
    }

    .character-mouth {
        width: 20px;
        height: 8px;
        background-color: var(--dark-bg);
        border-radius: 0 0 10px 10px;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s ease;
    }

    .dancing-mr-pany:hover .character-mouth {
        border-radius: 10px 10px 20px 20px;
        height: 10px;
    }

    .dancing-mrs-pany .character-mouth {
        border-radius: 10px 10px 0 0;
        bottom: 20px;
    }

    .dancing-mrs-pany:hover .character-mouth {
        height: 10px;
    }

    .connection-line {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-dark), var(--secondary-color));
        z-index: 1;
    }

    .heart-particles {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 20px;
        z-index: 2;
    }

    .heart-particle {
        position: absolute;
        width: 10px;
        height: 9px;
        background-color: var(--secondary-color);
        transform: rotate(45deg);
        opacity: 0;
    }

    .heart-particle:before,
    .heart-particle:after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--secondary-color);
    }

    .heart-particle:before {
        top: -5px;
        left: 0;
    }

    .heart-particle:after {
        top: 0;
        left: -5px;
    }

    .data-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0;
    }

    /* CTA Section */
    .ai-cta {
        padding: 80px 0;
        background-color: #151828;
        position: relative;
        overflow: hidden;
    }

    .ai-cta__container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .ai-cta__title {
        font-size: 36px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
    }

    .ai-cta__text {
        font-size: 18px;
        color: var(--text-light);
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .ai-cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        border-radius: 30px;
        text-decoration: none;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    }

    .ai-cta__btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(79, 70, 229, 0.4);
    }

   
    /* Animasyonlar */
    @keyframes dance {
        0% { transform: rotate(-5deg); }
        50% { transform: rotate(5deg); }
        100% { transform: rotate(-5deg); }
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    @keyframes blink {
        0% { transform: scaleY(1); }
        18% { transform: scaleY(1); }
        20% { transform: scaleY(0.1); }
        22% { transform: scaleY(1); }
        100% { transform: scaleY(1); }
    }

    @keyframes pulse {
        0% { transform: scale(0.95); opacity: 0.4; }
        50% { transform: scale(1.05); opacity: 0.7; }
        100% { transform: scale(0.95); opacity: 0.4; }
    }

    @keyframes moveLeft {
        0% { left: 100%; opacity: 1; }
        100% { left: 0%; opacity: 0; }
    }

    @keyframes moveUp {
        0% { bottom: -20%; opacity: 1; }
        100% { bottom: 120%; opacity: 0; }
    }

    @keyframes particle-animation {
        0% { transform: translateY(0) translateX(0); opacity: 1; }
        100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .ai-hero__col {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .ai-hero__col:first-child {
            margin-bottom: 50px;
        }

        .ai-features__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        .ai-hero {
            padding: 70px 0 50px;
        }

        .ai-hero__title {
            font-size: 36px;
        }

        .ai-features__grid {
            grid-template-columns: 1fr;
        }

        .ai-steps {
            flex-direction: column;
        }

        .ai-step {
            margin-bottom: 30px;
        }

        .ai-steps::before {
            display: none;
        }
        
        .ai-dance-section {
            height: 250px;
        }
        
        .dancing-characters {
            gap: 40px;
        }
        
        .dancing-character {
            width: 80px;
            height: 80px;
        }
        
        .character-body {
            width: 65px;
            height: 65px;
        }
        
        .character-face {
            width: 50px;
            height: 50px;
        }
        
        .connection-line {
            width: 60px;
        }
        
        .heart-particles {
            width: 60px;
        }
    }