/* Nasil Calisir */
/* ===== NASIL ÇALIŞIR SAYFASI ===== */
    .nlp-shell {
        --nlp-primary: #4a2d7f;
        --nlp-secondary: #65459d;
        --nlp-accent: #947ffc;
        --nlp-soft: #f8f6ff;
        --nlp-soft-hover: #f0ebff;
        --nlp-text: #5b4f75;
        --nlp-white: #ffffff;
        --nlp-gradient-start: #65459d;
        --nlp-gradient-end: #947ffc;

        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Hero Bölümü */
    .nlp-shell .hero-banner {
        background: linear-gradient(135deg, var(--nlp-secondary) 0%, var(--nlp-accent) 50%, #b8a4fc 100%);
        border-radius: 24px;
        padding: 60px 50px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    .nlp-shell .hero-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
    .nlp-shell .hero-banner .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nlp-shell .hero-banner h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--nlp-white);
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
    .nlp-shell .hero-banner .hero-content > p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        margin-bottom: 30px;
        max-width: 700px;
        text-align: center;
    }
    .nlp-shell .badge-group {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
        justify-content: center;
    }
    .nlp-shell .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 22px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.15);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        color: var(--nlp-white);
        font-weight: 600;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s ease;
    }
    .nlp-shell .hero-badge:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }

    /* Section Başlıkları */
    .nlp-shell .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .nlp-shell .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--nlp-primary);
        margin-bottom: 15px;
    }
    .nlp-shell .section-header p {
        font-size: 1.1rem;
        color: var(--nlp-text);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Süreç Adımları */
    .nlp-shell .process-section {
        margin-bottom: 70px;
    }
    .nlp-shell .process-timeline {
        position: relative;
        padding: 20px 0;
    }
    .nlp-shell .process-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, var(--nlp-accent), var(--nlp-primary));
        border-radius: 2px;
        transform: translateX(-50%);
    }
    .nlp-shell .process-step {
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        position: relative;
    }
    .nlp-shell .process-step:last-child {
        margin-bottom: 0;
    }
    .nlp-shell .process-step:nth-child(odd) {
        flex-direction: row;
    }
    .nlp-shell .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }
    .nlp-shell .process-content {
        width: 45%;
        background: var(--nlp-white);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 40px rgba(74, 45, 127, 0.08);
        border: 1px solid rgba(148, 127, 252, 0.1);
        transition: all 0.3s ease;
    }
    .nlp-shell .process-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(74, 45, 127, 0.12);
    }
    .nlp-shell .process-step:nth-child(odd) .process-content {
        margin-right: auto;
        text-align: right;
    }
    .nlp-shell .process-step:nth-child(even) .process-content {
        margin-left: auto;
        text-align: left;
    }
    .nlp-shell .process-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--nlp-secondary), var(--nlp-accent));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--nlp-white);
        font-size: 1.5rem;
        font-weight: 700;
        z-index: 2;
        box-shadow: 0 8px 25px rgba(101, 69, 157, 0.3);
    }
    .nlp-shell .process-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--nlp-primary);
        margin-bottom: 12px;
    }
    .nlp-shell .process-content p {
        font-size: 1rem;
        color: var(--nlp-text);
        line-height: 1.7;
        margin: 0;
    }

    /* Teknoloji Kartları */
    .nlp-shell .tech-section {
        margin-bottom: 70px;
    }
    .nlp-shell .tech-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .nlp-shell .tech-card {
        background: var(--nlp-white);
        border-radius: 20px;
        padding: 35px 30px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(74, 45, 127, 0.08);
        border: 1px solid rgba(148, 127, 252, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .nlp-shell .tech-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--nlp-secondary), var(--nlp-accent));
    }
    .nlp-shell .tech-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(74, 45, 127, 0.15);
    }
    .nlp-shell .tech-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--nlp-soft) 0%, rgba(148, 127, 252, 0.15) 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2rem;
        color: var(--nlp-secondary);
        transition: all 0.3s ease;
    }
    .nlp-shell .tech-card:hover .tech-icon {
        background: linear-gradient(135deg, var(--nlp-secondary), var(--nlp-accent));
        color: var(--nlp-white);
        transform: scale(1.1);
    }
    .nlp-shell .tech-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--nlp-primary);
        margin-bottom: 15px;
    }
    .nlp-shell .tech-card p {
        font-size: 0.95rem;
        color: var(--nlp-text);
        line-height: 1.7;
        margin: 0;
    }

    /* Detay Bölümü */
    .nlp-shell .detail-section {
        margin-bottom: 70px;
    }
    .nlp-shell .detail-box {
        background: linear-gradient(135deg, var(--nlp-soft) 0%, rgba(148, 127, 252, 0.08) 100%);
        border-radius: 24px;
        padding: 50px;
        position: relative;
        overflow: hidden;
    }
    .nlp-shell .detail-box::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(148, 127, 252, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }
    .nlp-shell .detail-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        position: relative;
        z-index: 2;
    }
    .nlp-shell .detail-item {
        display: flex;
        gap: 20px;
    }
    .nlp-shell .detail-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: var(--nlp-white);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--nlp-secondary);
        box-shadow: 0 4px 15px rgba(74, 45, 127, 0.1);
    }
    .nlp-shell .detail-text h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--nlp-primary);
        margin-bottom: 8px;
    }
    .nlp-shell .detail-text p {
        font-size: 0.95rem;
        color: var(--nlp-text);
        line-height: 1.6;
        margin: 0;
    }

    /* Karşılaştırma Bölümü */
    .nlp-shell .comparison-section {
        margin-bottom: 70px;
    }
    .nlp-shell .comparison-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .nlp-shell .comparison-card {
        background: var(--nlp-white);
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 10px 40px rgba(74, 45, 127, 0.08);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    .nlp-shell .comparison-card.traditional {
        border-color: rgba(200, 200, 200, 0.5);
    }
    .nlp-shell .comparison-card.ai-powered {
        border-color: var(--nlp-accent);
        background: linear-gradient(135deg, var(--nlp-white) 0%, var(--nlp-soft) 100%);
    }
    .nlp-shell .comparison-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .nlp-shell .comparison-card.traditional h3 {
        color: #666;
    }
    .nlp-shell .comparison-card.ai-powered h3 {
        color: var(--nlp-primary);
    }
    .nlp-shell .comparison-card h3 i {
        font-size: 1.5rem;
    }
    .nlp-shell .comparison-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .nlp-shell .comparison-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 0.95rem;
        color: var(--nlp-text);
        line-height: 1.5;
    }
    .nlp-shell .comparison-list li:last-child {
        border-bottom: none;
    }
    .nlp-shell .comparison-list li i {
        flex-shrink: 0;
        margin-top: 3px;
    }
    .nlp-shell .comparison-card.traditional .comparison-list li i {
        color: #999;
    }
    .nlp-shell .comparison-card.ai-powered .comparison-list li i {
        color: #10b981;
    }

    /* CTA Bölümü */
    .nlp-shell .cta-section {
        background: linear-gradient(135deg, var(--nlp-secondary) 0%, var(--nlp-accent) 100%);
        border-radius: 24px;
        padding: 60px 50px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .nlp-shell .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
    .nlp-shell .cta-section h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--nlp-white);
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }
    .nlp-shell .cta-section p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }
    .nlp-shell .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 36px;
        background: var(--nlp-white);
        color: var(--nlp-primary);
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    .nlp-shell .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        color: var(--nlp-secondary);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .nlp-shell .tech-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .nlp-shell .detail-grid {
            grid-template-columns: 1fr;
        }
        .nlp-shell .comparison-grid {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 768px) {
        .nlp-shell .hero-banner {
            padding: 40px 25px;
        }
        .nlp-shell .hero-banner h1 {
            font-size: 1.8rem;
        }
        .nlp-shell .tech-grid {
            grid-template-columns: 1fr;
        }
        .nlp-shell .process-timeline::before {
            left: 30px;
        }
        .nlp-shell .process-step,
        .nlp-shell .process-step:nth-child(odd),
        .nlp-shell .process-step:nth-child(even) {
            flex-direction: column;
        }
        .nlp-shell .process-content,
        .nlp-shell .process-step:nth-child(odd) .process-content,
        .nlp-shell .process-step:nth-child(even) .process-content {
            width: 100%;
            margin-left: 60px;
            text-align: left;
        }
        .nlp-shell .process-number {
            left: 30px;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
        .nlp-shell .detail-box {
            padding: 30px 20px;
        }
        .nlp-shell .cta-section {
            padding: 40px 25px;
        }
        .nlp-shell .section-header h2 {
            font-size: 1.6rem;
        }
    }
