/* Hero bölümü düzenlemeleri */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: left;
}

.hero-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    font-weight: 700;
    margin-top: 0.25rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-slate);
    margin-bottom: 2.5rem;
    line-height: 2;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Geliştirilmiş Sağ Taraf */
.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Geliştirilmiş Floating Cards - Optimize edilmiş boyutlar */
.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(100, 255, 218, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float-enhanced 8s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 200px;
    z-index: 4;
    text-decoration: none;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card:hover {
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 
        0 20px 40px rgba(100, 255, 218, 0.2),
        0 0 0 1px rgba(100, 255, 218, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-6px) scale(1.05);
    text-decoration: none;
}

.floating-card .card-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(100, 255, 218, 0.3));
}

.floating-card h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.floating-card p {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    text-decoration: none;
}

/* Link olan floating card için özel stil */
a.floating-card {
    text-decoration: none;
}

a.floating-card:hover {
    text-decoration: none;
}

a.floating-card p {
    text-decoration: none;
}

/* Floating Card Konumları - Masaüstü */
.card-1 {
    top: 12%;
    right: 15%;
    animation-delay: 0s;
    z-index: 5;
}

.card-2 {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
    z-index: 4;
}

.card-3 {
    bottom: 25%;
    right: 10%;
    animation-delay: 3s;
    z-index: 5;
}

/* YENİ: Fütüristik Holografik Ağ Animasyonu */
.holo-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

/* Ana Hologram Çekirdeği */
.holo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, 
            rgba(100, 255, 218, 0.8) 0%,
            rgba(100, 255, 218, 0.4) 20%,
            rgba(74, 222, 128, 0.2) 40%,
            transparent 70%
        );
    animation: core-pulse-3d 6s ease-in-out infinite;
    filter: blur(1px);
    box-shadow: 
        0 0 80px rgba(100, 255, 218, 0.6),
        inset 0 0 40px rgba(100, 255, 218, 0.3);
}

.holo-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 3px solid rgba(100, 255, 218, 0.4);
    border-radius: 50%;
    animation: core-rotate-3d 15s linear infinite;
}

.holo-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    animation: core-rotate-reverse 20s linear infinite;
}

@keyframes core-pulse-3d {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotateX(0deg) rotateY(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1) rotateX(15deg) rotateY(45deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.95) rotateX(30deg) rotateY(90deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.05) rotateX(15deg) rotateY(135deg);
        opacity: 0.9;
    }
}

@keyframes core-rotate-3d {
    0% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    33% {
        transform: translate(-50%, -50%) rotateX(30deg) rotateY(120deg) rotateZ(60deg);
    }
    66% {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(240deg) rotateZ(120deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(360deg) rotateZ(180deg);
    }
}

@keyframes core-rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Kuantum Parçacık Alanı */
.quantum-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    filter: blur(0.5px);
    animation: quantum-orbit 12s linear infinite;
}

.quantum-particle:nth-child(1) {
    top: 20%; left: 20%; background: #64ffda; animation-delay: 0s;
    animation-duration: 15s;
}
.quantum-particle:nth-child(2) {
    top: 60%; left: 80%; background: #4ade80; animation-delay: 2s;
    animation-duration: 18s;
}
.quantum-particle:nth-child(3) {
    top: 80%; left: 40%; background: #60a5fa; animation-delay: 4s;
    animation-duration: 12s;
}
.quantum-particle:nth-child(4) {
    top: 30%; left: 70%; background: #a855f7; animation-delay: 6s;
    animation-duration: 20s;
}
.quantum-particle:nth-child(5) {
    top: 70%; left: 20%; background: #f59e0b; animation-delay: 8s;
    animation-duration: 16s;
}
.quantum-particle:nth-child(6) {
    top: 10%; left: 50%; background: #ef4444; animation-delay: 10s;
    animation-duration: 14s;
}

@keyframes quantum-orbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
        opacity: 0.3;
        box-shadow: 0 0 10px currentColor;
    }
    25% {
        transform: rotate(90deg) translateX(150px) rotate(-90deg);
        opacity: 0.8;
        box-shadow: 0 0 20px currentColor;
    }
    50% {
        transform: rotate(180deg) translateX(150px) rotate(-180deg);
        opacity: 0.5;
        box-shadow: 0 0 15px currentColor;
    }
    75% {
        transform: rotate(270deg) translateX(150px) rotate(-270deg);
        opacity: 0.9;
        box-shadow: 0 0 25px currentColor;
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
        opacity: 0.3;
        box-shadow: 0 0 10px currentColor;
    }
}

/* Holografik Ağ Bağlantıları */
.neural-web {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.neural-connection {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(100, 255, 218, 0.4) 50%, 
        transparent 100%);
    height: 1px;
    filter: blur(0.5px);
    animation: neural-pulse 8s ease-in-out infinite;
}

.neural-connection:nth-child(1) {
    top: 25%; left: 0; width: 100%; animation-delay: 0s;
    transform: rotate(15deg);
}
.neural-connection:nth-child(2) {
    top: 50%; left: 0; width: 100%; animation-delay: 2s;
    transform: rotate(-10deg);
}
.neural-connection:nth-child(3) {
    top: 75%; left: 0; width: 100%; animation-delay: 4s;
    transform: rotate(5deg);
}
.neural-connection:nth-child(4) {
    top: 0; left: 25%; width: 100%; animation-delay: 1s;
    transform: rotate(90deg) rotate(15deg);
}
.neural-connection:nth-child(5) {
    top: 0; left: 50%; width: 100%; animation-delay: 3s;
    transform: rotate(90deg) rotate(-10deg);
}
.neural-connection:nth-child(6) {
    top: 0; left: 75%; width: 100%; animation-delay: 5s;
    transform: rotate(90deg) rotate(5deg);
}

@keyframes neural-pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scaleX(0.8) rotate(var(--rotation, 0deg));
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1) rotate(var(--rotation, 0deg));
    }
}

/* Enerji Dalgaları */
.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 1;
}

.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: energy-expand 6s ease-out infinite;
}

.energy-ring:nth-child(1) {
    width: 100px; height: 100px;
    border-color: rgba(100, 255, 218, 0.6);
    animation-delay: 0s;
}
.energy-ring:nth-child(2) {
    width: 200px; height: 200px;
    border-color: rgba(74, 222, 128, 0.4);
    animation-delay: 1.5s;
}
.energy-ring:nth-child(3) {
    width: 300px; height: 300px;
    border-color: rgba(96, 165, 250, 0.3);
    animation-delay: 3s;
}
.energy-ring:nth-child(4) {
    width: 400px; height: 400px;
    border-color: rgba(168, 85, 247, 0.2);
    animation-delay: 4.5s;
}

@keyframes energy-expand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Arka Plan Elementleri */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orbit {
    position: absolute;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent), transparent, var(--accent));
    animation: rotate 20s linear infinite;
    opacity: 0.08;
    filter: blur(1px);
}

.gradient-orbit:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    animation-duration: 25s;
}

.gradient-orbit:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 10%;
    animation-duration: 20s;
    animation-direction: reverse;
}

.gradient-orbit:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 20%;
    animation-duration: 15s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Tehditleri Keşfet Butonu - SAYFANIN EN SAĞI */
.threat-explore-btn {
    position: absolute;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(230, 57, 70, 0.05));
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 15px 30px rgba(230, 57, 70, 0.2),
        0 0 0 1px rgba(230, 57, 70, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float-enhanced 8s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 180px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation-delay: 1s;
    
    /* SAYFANIN EN SAĞI - 3 KUTUDAN UZAK */
    top: 20%;
    right: -100px;
    transform: translateY(-50%);
}

.threat-explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.6), rgba(255, 107, 107, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.threat-explore-btn:hover::before {
    opacity: 1;
}

.threat-explore-btn:hover {
    border-color: rgba(230, 57, 70, 0.6);
    box-shadow: 
        0 20px 40px rgba(230, 57, 70, 0.3),
        0 0 0 1px rgba(230, 57, 70, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) translateY(-6px) scale(1.05);
    text-decoration: none;
}

.btn-icon {
    font-size: 2rem;
    color: #E63946;
    filter: drop-shadow(0 2px 4px rgba(230, 57, 70, 0.4));
    transition: all 0.3s ease;
}

.threat-explore-btn:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.6));
}

.btn-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.threat-explore-btn:hover .btn-text {
    color: #ff6b6b;
}

.btn-arrow {
    color: #E63946;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.threat-explore-btn:hover .btn-arrow {
    transform: translateX(3px);
    color: #ff6b6b;
}

.btn-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #E63946;
    border-radius: 50%;
    animation: threat-pulse 2s ease-in-out infinite;
}

@keyframes threat-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(230, 57, 70, 0);
    }
}

/* Responsive Düzenlemeler - Tablet */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title,
    .hero-description {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        height: 500px;
        order: -1;
    }
    
    .holo-network {
        width: 400px;
        height: 400px;
    }
    
    .holo-core {
        width: 160px;
        height: 160px;
    }
    
    .holo-core::before {
        width: 180px;
        height: 180px;
    }
    
    .holo-core::after {
        width: 200px;
        height: 200px;
    }
    
    .floating-card {
        width: 160px;
        padding: 1.5rem 1rem;
    }
    
    /* Tablet için kart konumları - DİKEY DÜZEN */
    .card-1 {
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .card-3 {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    /* Tablet için threat butonu konumu - SAĞ TARAFA */
    .threat-explore-btn {
        width: 160px;
        padding: 1.25rem 1rem;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
    }
    
    .btn-icon {
        font-size: 1.75rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
}

/* Responsive Düzenlemeler - Mobil */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .holo-network {
        width: 350px;
        height: 350px;
    }
    
    .holo-core {
        width: 140px;
        height: 140px;
    }
    
    .holo-core::before {
        width: 160px;
        height: 160px;
    }
    
    .holo-core::after {
        width: 180px;
        height: 180px;
    }
    
    .floating-card {
        width: 140px;
        padding: 1.25rem 0.75rem;
    }
    
    .floating-card .card-icon {
        font-size: 2rem;
    }
    
    .floating-card h4 {
        font-size: 1rem;
    }
    
    .floating-card p {
        font-size: 0.8rem;
    }
    
    /* Mobil için kart konumları - DİKEY DÜZEN */
    .card-1 {
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .card-3 {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    /* Mobil için threat butonu konumu - SOL ÜST KÖŞEYE */
    .threat-explore-btn {
        width: 140px;
        padding: 1rem 0.75rem;
        top: 25%;
        left: 5%;
        right: auto;
        bottom: auto;
        transform: none;
        animation: float-enhanced-mobile 8s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .btn-icon {
        font-size: 1.5rem;
    }
    
    .btn-text {
        font-size: 0.85rem;
    }
    
    .btn-arrow {
        font-size: 0.8rem;
    }
    
    @keyframes float-enhanced-mobile {
        0%, 100% { 
            transform: translateY(0) rotate(0deg) scale(1);
        }
        25% { 
            transform: translateY(-10px) rotate(1deg) scale(1.02);
        }
        50% { 
            transform: translateY(3px) rotate(-1deg) scale(0.98);
        }
        75% { 
            transform: translateY(-7px) rotate(0.5deg) scale(1.01);
        }
    }
}

/* Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual {
        height: 450px;
    }
    
    .holo-network {
        width: 300px;
        height: 300px;
    }
    
    .holo-core {
        width: 120px;
        height: 120px;
    }
    
    .holo-core::before {
        width: 140px;
        height: 140px;
    }
    
    .holo-core::after {
        width: 160px;
        height: 160px;
    }
    
    .floating-card {
        width: 120px;
        padding: 1rem 0.5rem;
    }
    
    .floating-card .card-icon {
        font-size: 1.75rem;
    }
    
    .floating-card h4 {
        font-size: 0.9rem;
    }
    
    .floating-card p {
        font-size: 0.75rem;
    }
    
    /* Küçük mobil için kart konumları */
    .card-1 {
        top: 12%;
    }
    
    .card-3 {
        bottom: 12%;
    }
    
    /* Küçük mobil için threat butonu konumu - DAHA SOLA VE YUKARI */
    .threat-explore-btn {
        width: 130px;
        padding: 0.875rem 0.625rem;
        top: 8%;
        left: 3%;
    }
    
    .btn-icon {
        font-size: 1.4rem;
    }
    
    .btn-text {
        font-size: 0.8rem;
    }
    
    .btn-pulse {
        width: 10px;
        height: 10px;
    }
}

/* Kalan CSS (services-preview ve diğer bölümler) */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-slate);
    max-width: 600px;
    margin: 0 auto;
}

.services-preview {
    padding: 100px 0;
    background: var(--deep-navy);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}

/* Servis Kartları için Fütüristik Arka Plan Animasyonu */
.service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.85) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ana Holografik Ağ Etkisi */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Dinamik Hologram Grid */
        linear-gradient(90deg, transparent 95%, rgba(100, 255, 218, 0.1) 100%),
        linear-gradient(0deg, transparent 95%, rgba(100, 255, 218, 0.1) 100%),
        /* Enerji Alanı */
        radial-gradient(circle at 30% 20%, rgba(100, 255, 218, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(74, 222, 128, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    background-size: 40px 40px, 40px 40px, 200% 200%, 200% 200%, 300% 300%;
    animation: quantum-grid 25s linear infinite;
    z-index: 1;
    opacity: 0.7;
}

@keyframes quantum-grid {
    0%, 100% {
        background-position: 
            0 0, 0 0,
            0% 0%, 100% 100%, 50% 50%;
    }
    25% {
        background-position: 
            20px 20px, 20px 20px,
            25% 75%, 75% 25%, 25% 25%;
    }
    50% {
        background-position: 
            40px 40px, 40px 40px,
            50% 100%, 0% 50%, 75% 75%;
    }
    75% {
        background-position: 
            20px 20px, 20px 20px,
            75% 25%, 25% 75%, 100% 25%;
    }
}

/* 3D Holografik Küre */
.holo-sphere-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 1;
}

.holo-sphere-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, 
            rgba(100, 255, 218, 0.8) 0%,
            rgba(100, 255, 218, 0.4) 20%,
            rgba(74, 222, 128, 0.2) 40%,
            transparent 70%
        );
    animation: sphere-rotate-3d 15s linear infinite;
    filter: blur(1px);
    box-shadow: 
        0 0 60px rgba(100, 255, 218, 0.4),
        inset 0 0 20px rgba(100, 255, 218, 0.2);
}

.holo-sphere-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    animation: sphere-pulse-3d 4s ease-in-out infinite;
}

.holo-sphere-3d::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    animation: sphere-rotate-reverse 20s linear infinite;
}

@keyframes sphere-rotate-3d {
    0% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotateX(30deg) rotateY(45deg) rotateZ(15deg);
    }
    50% {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(90deg) rotateZ(30deg);
    }
    75% {
        transform: translate(-50%, -50%) rotateX(30deg) rotateY(135deg) rotateZ(45deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(180deg) rotateZ(60deg);
    }
}

@keyframes sphere-pulse-3d {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes sphere-rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Kuantum Parçacık Fırtınası */
.quantum-storm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.service-card .quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    filter: blur(0.5px);
    animation: quantum-burst 8s ease-in-out infinite;
}

/* Her kart için farklı parçacık konfigürasyonları */
.service-card:nth-child(1) .quantum-particle:nth-child(1) {
    top: 20%; left: 15%; background: #64ffda; animation-delay: 0s;
}
.service-card:nth-child(1) .quantum-particle:nth-child(2) {
    top: 60%; left: 80%; background: #4ade80; animation-delay: 1s;
}
.service-card:nth-child(1) .quantum-particle:nth-child(3) {
    top: 80%; left: 40%; background: #60a5fa; animation-delay: 2s;
}
.service-card:nth-child(1) .quantum-particle:nth-child(4) {
    top: 30%; left: 70%; background: #a855f7; animation-delay: 3s;
}
.service-card:nth-child(1) .quantum-particle:nth-child(5) {
    top: 70%; left: 20%; background: #f59e0b; animation-delay: 4s;
}

.service-card:nth-child(2) .quantum-particle:nth-child(1) {
    top: 10%; left: 50%; background: #64ffda; animation-delay: 0.5s;
}
.service-card:nth-child(2) .quantum-particle:nth-child(2) {
    top: 40%; left: 10%; background: #4ade80; animation-delay: 1.5s;
}
.service-card:nth-child(2) .quantum-particle:nth-child(3) {
    top: 90%; left: 60%; background: #60a5fa; animation-delay: 2.5s;
}
.service-card:nth-child(2) .quantum-particle:nth-child(4) {
    top: 50%; left: 90%; background: #a855f7; animation-delay: 3.5s;
}
.service-card:nth-child(2) .quantum-particle:nth-child(5) {
    top: 20%; left: 80%; background: #f59e0b; animation-delay: 4.5s;
}

.service-card:nth-child(3) .quantum-particle:nth-child(1) {
    top: 15%; left: 25%; background: #64ffda; animation-delay: 1s;
}
.service-card:nth-child(3) .quantum-particle:nth-child(2) {
    top: 75%; left: 15%; background: #4ade80; animation-delay: 2s;
}
.service-card:nth-child(3) .quantum-particle:nth-child(3) {
    top: 45%; left: 75%; background: #60a5fa; animation-delay: 3s;
}
.service-card:nth-child(3) .quantum-particle:nth-child(4) {
    top: 85%; left: 85%; background: #a855f7; animation-delay: 4s;
}
.service-card:nth-child(3) .quantum-particle:nth-child(5) {
    top: 25%; left: 45%; background: #f59e0b; animation-delay: 5s;
}

.service-card:nth-child(4) .quantum-particle:nth-child(1) {
    top: 30%; left: 20%; background: #64ffda; animation-delay: 1.5s;
}
.service-card:nth-child(4) .quantum-particle:nth-child(2) {
    top: 10%; left: 70%; background: #4ade80; animation-delay: 2.5s;
}
.service-card:nth-child(4) .quantum-particle:nth-child(3) {
    top: 70%; left: 50%; background: #60a5fa; animation-delay: 3.5s;
}
.service-card:nth-child(4) .quantum-particle:nth-child(4) {
    top: 50%; left: 30%; background: #a855f7; animation-delay: 4.5s;
}
.service-card:nth-child(4) .quantum-particle:nth-child(5) {
    top: 90%; left: 25%; background: #f59e0b; animation-delay: 5.5s;
}

@keyframes quantum-burst {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
        box-shadow: 0 0 10px currentColor;
    }
    25% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 0.8;
        box-shadow: 0 0 20px currentColor;
    }
    50% {
        transform: translate(-15px, 40px) scale(0.8);
        opacity: 0.5;
        box-shadow: 0 0 15px currentColor;
    }
    75% {
        transform: translate(30px, 10px) scale(1.2);
        opacity: 0.9;
        box-shadow: 0 0 25px currentColor;
    }
}

/* Nöral Ağ Bağlantıları */
.neural-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.neural-path {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(100, 255, 218, 0.4) 50%, 
        transparent 100%);
    height: 1px;
    filter: blur(0.5px);
    animation: neural-flow 6s ease-in-out infinite;
}

.neural-path:nth-child(1) {
    top: 25%; left: 0; width: 100%; animation-delay: 0s;
    transform: rotate(15deg);
}
.neural-path:nth-child(2) {
    top: 50%; left: 0; width: 100%; animation-delay: 2s;
    transform: rotate(-10deg);
}
.neural-path:nth-child(3) {
    top: 75%; left: 0; width: 100%; animation-delay: 4s;
    transform: rotate(5deg);
}

@keyframes neural-flow {
    0%, 100% {
        opacity: 0.1;
        transform: scaleX(0.8) rotate(var(--rotation, 0deg));
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1) rotate(var(--rotation, 0deg));
    }
}

/* Holografik Veri Akışı */
.data-cascade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.stream-line {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(100, 255, 218, 0.7) 20%,
        rgba(100, 255, 218, 0.9) 50%,
        rgba(100, 255, 218, 0.7) 80%,
        transparent 100%
    );
    animation: data-cascade-flow 3s linear infinite;
    opacity: 0;
    filter: blur(0.5px);
}

.stream-line:nth-child(1) { left: 15%; animation-delay: 0s; }
.stream-line:nth-child(2) { left: 35%; animation-delay: 0.7s; }
.stream-line:nth-child(3) { left: 55%; animation-delay: 1.4s; }
.stream-line:nth-child(4) { left: 75%; animation-delay: 2.1s; }
.stream-line:nth-child(5) { left: 95%; animation-delay: 2.8s; }

@keyframes data-cascade-flow {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Enerji Dalgaları */
.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    z-index: 1;
}

.wave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: wave-expand 4s ease-out infinite;
}

.wave-ring:nth-child(1) {
    width: 50px; height: 50px;
    border-color: rgba(100, 255, 218, 0.6);
    animation-delay: 0s;
}
.wave-ring:nth-child(2) {
    width: 100px; height: 100px;
    border-color: rgba(74, 222, 128, 0.4);
    animation-delay: 1s;
}
.wave-ring:nth-child(3) {
    width: 150px; height: 150px;
    border-color: rgba(96, 165, 250, 0.3);
    animation-delay: 2s;
}
.wave-ring:nth-child(4) {
    width: 200px; height: 200px;
    border-color: rgba(168, 85, 247, 0.2);
    animation-delay: 3s;
}

@keyframes wave-expand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Işın Efektleri */
.light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(100, 255, 218, 0.8) 30%,
        rgba(100, 255, 218, 0.4) 70%,
        transparent 100%
    );
    animation: beam-sweep 8s ease-in-out infinite;
    filter: blur(1px);
}

.beam:nth-child(1) { left: 20%; animation-delay: 0s; transform: rotate(15deg); }
.beam:nth-child(2) { left: 50%; animation-delay: 2s; transform: rotate(-10deg); }
.beam:nth-child(3) { left: 80%; animation-delay: 4s; transform: rotate(5deg); }

@keyframes beam-sweep {
    0%, 100% {
        transform: rotate(15deg) translateX(-20px);
        opacity: 0.3;
    }
    50% {
        transform: rotate(15deg) translateX(20px);
        opacity: 0.7;
    }
}

/* Servis Kartı İçeriği için Z-index */
.service-card > *:not(.holo-sphere-container):not(.quantum-storm):not(.neural-matrix):not(.data-cascade):not(.energy-wave):not(.light-beams) {
    position: relative;
    z-index: 10;
}

/* Hover Efektleri - Daha Dramatik */
.service-card:hover::before {
    animation-duration: 15s;
    opacity: 0.9;
}

.service-card:hover .holo-sphere-3d {
    animation-duration: 8s;
    filter: blur(0.5px) brightness(1.5);
}

.service-card:hover .quantum-particle {
    animation-duration: 4s;
}

.service-card:hover .stream-line {
    animation-duration: 1.5s;
}

.service-card:hover .wave-ring {
    animation-duration: 2s;
}

/* Mevcut Servis Kartı Stillerini Koru */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(100, 255, 218, 0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(100, 255, 218, 0.3));
    position: relative;
    z-index: 10;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
}

.service-card > p {
    color: var(--light-slate);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--light-slate);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 8px;
    background: rgba(100, 255, 218, 0.05);
    position: relative;
    z-index: 10;
}

.service-link:hover {
    gap: 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-color: rgba(100, 255, 218, 0.5);
}

.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(100, 255, 218, 0.3);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--light-slate);
    font-weight: 500;
}

.partners-section {
    padding: 100px 0;
    background: var(--deep-navy);
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.6s;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.partner-logo img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

/* Responsive Düzenlemeler - MOBİL İÇİN OPTİMİZE EDİLMİŞ */
@media (max-width: 1200px) {
    .hero-visual {
        height: 500px;
    }
    
    .holo-network {
        width: 450px;
        height: 450px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ACİL: Ana Sayfa yazısı düzeltmesi */
.nav-link {
    white-space: nowrap !important;
    min-width: max-content !important;
}

/* Ek Animasyon Keyframes */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotate(2deg); 
    }
    66% { 
        transform: translateY(10px) rotate(-2deg); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.15;
    }
}

@keyframes float-enhanced {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-15px) rotate(1deg) scale(1.02);
    }
    50% { 
        transform: translateY(5px) rotate(-1deg) scale(0.98);
    }
    75% { 
        transform: translateY(-10px) rotate(0.5deg) scale(1.01);
    }
}
/* Responsive Düzenlemeler - Mobil */
@media (max-width: 768px) {
    .threat-explore-btn {
        width: 140px !important;
        padding: 1rem 0.75rem !important;
        top: 30% !important;  /* BURAYI DEĞİŞTİRİN */
        left: 5% !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
}

/* Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    .threat-explore-btn {
        width: 130px !important;
        padding: 0.875rem 0.625rem !important;
        top: 25% !important;  /* BURAYI DEĞİŞTİRİN */
        left: 3% !important;
    }
}