    /* Anasayfaya özel stiller */
    .ai-border {
        border: 1px solid;
        border-image: linear-gradient(45deg, #8a2be2, #3b82f6) 1;
    }
    .ai-loading-bar {
        width: 0%;
        height: 4px;
        background: linear-gradient(90deg, #8a2be2, #3b82f6);
        transition: width 1s ease-out;
    }
    .drone-icon {
        position: absolute;
        width: 24px;
        height: 24px;
        color: #3b82f6;
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8));
        z-index: 20;
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        opacity: 0;
        transform-origin: center center;
    }
    @keyframes propeller-spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    .drone-icon svg path {
        animation: propeller-spin 0.5s linear infinite;
        transform-origin: center center;
    }
    .map-container {
        background-image: url('https://dijitaldrone.com/wp-content/themes/DijitalDrone/turkey.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.3;
        z-index: 10;
    }
    .data-ping {
        position: absolute;
        width: 15px;
        height: 15px;
        background-color: #3b82f6;
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
        animation: data-ping-anim 1.5s ease-out infinite;
        z-index: 25;
    }
    @keyframes data-ping-anim {
        0% {
            transform: scale(0);
            opacity: 0.8;
        }
        100% {
            transform: scale(2);
            opacity: 0;
        }
    }
    .data-text {
        position: absolute;
        font-size: 0.8rem;
        color: #1d4ed8;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 0.3rem 0.6rem;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        transform: translate(-50%, -150%);
        z-index: 30;
    }
    .testimonial-slider-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        padding-bottom: 2rem;
    }
    .testimonial-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        will-change: transform;
    }
    .testimonial-card-wrapper {
        flex: 0 0 33.3333%;
        padding: 1rem;
        box-sizing: border-box;
    }
    @media (max-width: 1024px) {
        .testimonial-card-wrapper {
            flex: 0 0 50%;
        }
    }
    @media (max-width: 768px) {
        .testimonial-card-wrapper {
            flex: 0 0 100%;
        }
    }
    .modal-textarea {
        width: 100%;
        min-height: 150px;
        background-color: #f9fafb;
        border: 1px solid #d1d5db;
        color: #111827;
        padding: 0.75rem;
        border-radius: 8px;
        resize: vertical;
        margin-bottom: 1rem;
    }
    .modal-loading-spinner {
        border: 4px solid rgba(59, 130, 246, 0.2);
        border-top: 4px solid #3b82f6;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        animation: spin 1s linear infinite;
        margin: 1rem auto;
        display: none;
    }
    .modal-result {
        background-color: #f9fafb;
        border: 1px solid #e5e7eb;
        padding: 1rem;
        border-radius: 8px;
        max-height: 300px;
        overflow-y: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
        text-align: left;
    }
    .analysis-summary-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem 1.5rem;
        background-color: #f9fafb;
        border: 1px solid #e5e7eb;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    .summary-item-modal {
        display: flex;
        flex-direction: column;
    }
    .summary-item-modal .label {
        font-size: 0.8rem;
        color: #6b7280;
        font-weight: 500;
    }
    .summary-item-modal .value {
        font-size: 1rem;
        color: #111827;
        font-weight: 600;
    }
    .hero-background-animation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-color: #f4f7fc;
        background-image: 
            linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: bg-pan 20s linear infinite;
    }
    @keyframes bg-pan {
    }
    .platform-logo-container {
        transition: transform 0.3s ease;
    }
    .faq-item {
        background-color: #ffffff;
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    }
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        cursor: pointer;
        font-size: 1.125rem;
        font-weight: 600;
        color: #374151;
        transition: background-color 0.3s ease;
    }
    .faq-question:hover {
        background-color: #f9fafb;
    }
    .faq-question.active {
        background-color: #f0f5ff;
        color: #3b82f6;
    }
    .faq-question .arrow-icon {
        transition: transform 0.3s ease;
    }
    .faq-question.active .arrow-icon {
        transform: rotate(180deg);
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        padding: 0 1.5rem;
    }
    .faq-answer.open {
        max-height: 500px; /* Yeterince büyük bir değer */
        padding: 0 1.5rem 1.5rem;
    }
    .platform-logo-container:hover {
        transform: scale(1.1);
    }
    .platform-logo {
        max-height: 40px;
        width: auto;
        transition: opacity 0.3s ease;
    }
    .platform-logo-container:hover .platform-logo {
        filter: grayscale(0%) opacity(1);
    }
    .partner-logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 2.5rem;
        align-items: center;
        justify-content: center;
    }
    .partner-logo-item {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: grayscale(100%) opacity(0.7);
    }
    .partner-logo-item:hover {
        transform: scale(1.1);
        filter: grayscale(0%) opacity(1);
    }
    .partner-logo-item img {
        max-height: 60px;
        width: auto;
    }
    .future-opportunities-container {
        position: relative;
        width: 100%;
        max-width: 48rem; /* max-w-3xl */
        margin-left: auto;
        margin-right: auto;
        height: 24rem; /* h-96 */
        background-color: #e5e7eb; /* bg-gray-200 */
        border-radius: 0.5rem; /* rounded-lg */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d1d5db; /* border-gray-300 */
    }
    .future-opportunities-container canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* --- YENİ TASARIM: Platform Uyumluluğu Bölümü --- */
    .platform-section {
        padding: 5rem 0; /* Üst ve alt boşluk artırıldı */
        background-color: #f9fafb; /* bg-gray-50 */
        position: relative; /* İçerik katmanları için */
        overflow: hidden;
        /* Geliştirilmiş: Arka plan ızgarası daha belirgin hale getirildi */
        background-image: 
            linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
        background-size: 30px 30px;
        animation: bg-pan 40s linear infinite;
    }

    .platform-title {
        font-size: 1.5rem; /* Yazı boyutu büyütüldü (text-2xl) */
        font-weight: 700; /* Yazı kalınlığı artırıldı (font-bold) */
        text-transform: uppercase;
        letter-spacing: 0.15em; /* Harf aralığı artırıldı */
        margin-bottom: 4rem; /* Alt boşluk artırıldı */
        /* ai-gradient-text sınıfı animasyonu yönetecek, burada sadece gölge ekliyoruz */
        text-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
    }

    .platform-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

    .platform-card {
        /* Yeni: Arka plana hafif nokta deseni eklendi */
        background-color: #ffffff;    
        background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.04) 1px, transparent 0);
        background-size: 20px 20px;
        position: relative; /* Parlama efekti için */
        border-radius: 1rem; /* 16px */
        padding: 1.5rem; /* 24px */
        border: 1px solid #e5e7eb; /* border-gray-200 */
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
        /* Geliştirilmiş: Geçişe opacity eklendi */
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        /* Geliştirilmiş: İki animasyon birleştirildi */
        animation: card-fade-in 0.6s ease-out both;
        animation-delay: var(--delay);
        opacity: 0;
        will-change: transform; /* Performans optimizasyonu */
    }

    .platform-grid:hover .platform-card:not(:hover) {
        /* Yeni: Odaklanılmayan kartları soluklaştır ve küçült */
        opacity: 0.7;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    }

    .platform-card:hover {
        /* Geliştirilmiş: 3D Hover Efekti */
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    /* Yeni: Kart üzerine gelince parlayan kenarlık */
    .platform-card::after {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 18px; /* Karttan biraz daha büyük */
        background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.4), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .platform-card:hover::after {
        opacity: 1;
    }

    .platform-card img {
        height: 50px; /* Logoların yüksekliği */
        width: auto;
        max-width: 150px; /* Geniş logolar için sınır */    
        opacity: 0.9; /* Başlangıçta hafif soluk bir görünüm */
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .platform-card:hover img {
        opacity: 1;
        transform: scale(1.05); /* Logo da hafifçe büyüsün */
    }

    @keyframes card-fade-in {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- YENİ TASARIM: Özel Danışmanlar Bölümü --- */
.logo-card-item {
    transition: all 0.3s ease-in-out;
}

/* --- YENİ TASARIM: Zaman Tüneli (Timeline) Mobil Uyumluluğu --- */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px; /* İkonun merkezi */
    height: 100%;
    width: 4px;
    background: #e5e7eb; /* bg-gray-200 */
    z-index: 0;
}

.timeline-item-mobile {
    position: relative;
    padding-left: 50px; /* İkon ve çizgi için boşluk */
    margin-bottom: 2rem;
}

.timeline-icon-mobile {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: 4px solid #f9fafb; /* bg-gray-50 */
}

/* Büyük ekranlarda (lg ve üzeri) mobil stilleri devre dışı bırak ve masaüstü stillerini uygula */
@media (min-width: 1024px) {
    .timeline-container::before { display: none; } /* Masaüstünde dikey çizgiyi gizle */
}