/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    --primary-color: #3b82f6;      /* Ana Mavi */
    --primary-dark: #2563eb;       /* Koyu Mavi */
    --secondary-color: #6366f1;    /* İndigo */
    --accent-color: #8b5cf6;       /* Mor */
    --text-dark: #1f2937;          /* Koyu Gri */
    --text-light: #6b7280;         /* Açık Gri */
    --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografi Düzeltmeleri */
p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   2. ANA HERO BÖLÜMÜ
   ========================================= */
.ana-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
    background: var(--bg-gradient);
}

/* Arkaplan Desenleri */
.hero-arkaplan {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-desen-1, .hero-desen-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.hero-desen-1 {
    top: -10%;
    left: -5%;
    width: 35rem;
    height: 35rem;
    background: radial-gradient(circle, var(--primary-color), var(--secondary-color));
    animation: yuzen-desen 10s ease-in-out infinite;
}

.hero-desen-2 {
    bottom: -10%;
    right: -5%;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, var(--secondary-color), var(--accent-color));
    animation: yuzen-desen 12s ease-in-out infinite reverse;
}

/* İçerik Düzeni */
.hero-icerik {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.hero-izgara {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-izgara {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* Metin Alanı */
.hero-metin {
    text-align: center;
    animation: soldan-gel 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 1024px) {
    .hero-metin {
        text-align: left;
    }
}

/* Rozet */
.hero-rozet {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--primary-dark);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    transition: transform 0.3s ease;
}

.hero-rozet:hover {
    transform: translateY(-2px);
}

/* Başlıklar */
.hero-baslik {
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-aciklama {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-aciklama {
        font-size: 1.25rem;
        margin-left: 0;
    }
}

/* Butonlar */
.hero-butonlar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-butonlar {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-butonlar {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f9fafb;
}

/* Güven Göstergeleri */
.guven-gostergeleri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.guven-ogesi {
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    background: rgba(255,255,255,0.4);
}

.guven-ogesi:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.8);
}

.guven-ikonu {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guven-sayisi {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.guven-etiketi {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* =========================================
   3. LAPTOP VE TELEFON GÖRSELLERİ (DÜZELTİLMİŞ)
   ========================================= */

/* Ana Kapsayıcı: Hepsini Tutar */
.laptop-konteyneri {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Alt hizalama */
    margin: 2rem auto 0;
    padding-bottom: 2rem;
    perspective: 1000px;
}

/* Laptop Sarmalayıcı (Sol Taraf) */
.laptop-sarmalayici {
    width: 85%;
    position: relative;
    z-index: 5; /* Telefonun arkasında */
    margin-right: 12%; /* Telefon için sağda boşluk */
    transition: transform 0.5s ease;
    animation: yuzen-laptop 6s ease-in-out infinite;
}

/* Laptop Ekranı */
.laptop-ekrani {
    background: #1f2937;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 0.75rem;
    position: relative;
    box-shadow: 0 0 0 2px #374151;
}

.ekran-icerigi {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.website-onizlemesi { width: 100%; height: 100%; background: white; }

/* Laptop Tabanı (Klavye) */
.laptop-tabani {
    background: #e5e7eb;
    border-radius: 0 0 1.5rem 1.5rem;
    height: 1.5rem;
    margin-top: -5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Telefon Maketi (Sağ Üst, Önde) */
.telefon-maketi {
    position: absolute;
    width: 26%;
    bottom: 0;
    right: 5%;
    z-index: 10; /* Laptopun üstünde */
    filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.25));
    animation: yuzen-telefon 5s ease-in-out infinite 1s;
}

.telefon-dis {
    background: #1f2937;
    border-radius: 2rem;
    padding: 0.4rem;
    border: 2px solid #374151;
}

.telefon-ekrani {
    background: white;
    border-radius: 1.6rem;
    overflow: hidden;
    aspect-ratio: 9/19;
}

/* Yüzen İkonlar */
.yuzen-element {
    position: absolute;
    z-index: 20;
    animation: yuzen-ikon 4s ease-in-out infinite;
}

.yuzen-element-1 { top: 10%; left: -8%; animation-delay: 0s; }
.yuzen-element-2 { bottom: 15%; left: -5%; animation-delay: 1.5s; }
.yuzen-element-3 { top: 40%; right: -8%; animation-delay: 0.5s; }

.yuzen-ikon {
    background: white;
    padding: 0.8rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}
/* =========================================
   HAKKIMDA - MODERN TASARIM (YENİ)
   ========================================= */

.hakkimda-modern {
    position: relative;
    padding: 8rem 0;
    background-color: #fff;
    overflow: hidden;
}

/* 1. Arkaplan Efektleri (Tech Havası) */
.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#e5e7eb 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.6;
    z-index: 0;
}

.bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* 2. Grid Yapısı */
.modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* 3. Sol Taraf (Metinler) */
.modern-metin-alani {
    text-align: left;
}

.ust-etiket {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.modern-baslik {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.modern-aciklama {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* İstatistik Kutucukları */
.modern-istatistikler {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-kutusu {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-kutusu:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-sayi {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-yazi {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}

/* Buton */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--text-dark);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

/* 4. Sağ Taraf (Görsel Alanı) */
.modern-gorsel-alani {
    position: relative;
    padding: 2rem;
}

/* Arkadaki Renkli Bulut (Blob) */
.gorsel-arkaplan-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: blob-hareket 8s infinite alternate;
}

/* Ana Kart */
.modern-kart {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.kart-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #22c55e; }

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-row:last-child { margin-bottom: 0; }

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.blue-box { background: linear-gradient(135deg, #3b82f6, #60a5fa); box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3); }
.purple-box { background: linear-gradient(135deg, #8b5cf6, #a78bfa); box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3); }
.green-box { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); }

.text-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
}

.text-box p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    color: #6b7280;
}

/* Yüzen Küçük Kart */
.yuzen-kart {
    position: absolute;
    bottom: 1rem;
    right: 0;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: yuzen-ikon 4s ease-in-out infinite;
    border: 1px solid #f3f4f6;
}

.yuzen-kart i {
    color: #22c55e;
    width: 20px;
}

.yuzen-kart span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Animasyon */
@keyframes blob-hareket {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: rotate(10deg); }
}

/* Mobil Ayar */
@media (max-width: 768px) {
    .hakkimda-modern { padding: 4rem 0; }
    .modern-istatistikler { flex-wrap: wrap; justify-content: center; }
    .stat-kutusu { flex: 1 1 120px; }
    .btn-modern { width: 100%; justify-content: center; }
    .modern-gorsel-alani { padding: 0; margin-top: 2rem; }
    .yuzen-kart { right: 1rem; }
}

/* =========================================
   MODERN HİZMETLER (PREMIUM BENTO GRID)
   ========================================= */

.hizmetler-modern {
    padding: 8rem 0;
    /* Düz renk yerine hafif bir spot ışığı efekti */
    background: radial-gradient(circle at 50% 0%, #f0f9ff 0%, #f8fafc 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Arkaplan Süslemesi (Flu Işıklar) */
.hizmetler-modern::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hizmetler-modern::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1; /* İçeriği ışıkların üzerine çıkar */
}

/* Header */
.modern-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.modern-header .etiket {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.modern-header .baslik {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.modern-header .aciklama {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
}

/* --- BENTO GRID YAPISI --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }

    .main-card { grid-row: 1 / span 2; }
    .highlight-card { grid-column: 2 / span 2; }
}

/* Genel Kart Stili (Premium Dokunuşlar) */
.bento-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* İnce, zarif bir sınır çizgisi */
    border: 1px solid rgba(0,0,0,0.04);
    /* Yumuşak, derinlikli gölge */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px);
    /* Hover'da gölgeyi büyüt */
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
    border-color: rgba(59, 130, 246, 0.2);
}

/* İkon Kutuları (Parlayan Efekt) */
.icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bento-card:hover .icon-box {
    transform: scale(1.1) rotate(3deg);
}

/* Gradyan İkon Arkaplanları */
.blue-box { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 8px 20px -5px rgba(37, 99, 235, 0.4); }
.pink-box { background: linear-gradient(135deg, #f472b6, #db2777); box-shadow: 0 8px 20px -5px rgba(219, 39, 119, 0.4); }
.green-box { background: linear-gradient(135deg, #34d399, #059669); box-shadow: 0 8px 20px -5px rgba(5, 150, 105, 0.4); }
.orange-box { background: linear-gradient(135deg, #fbbf24, #d97706); box-shadow: 0 8px 20px -5px rgba(217, 119, 6, 0.4); }

/* Tipografi */
.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.bento-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- ANA KART (WEB TASARIM) --- */
.main-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    justify-content: space-between;
}

/* Özellik Etiketleri */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tags span {
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.feature-tags span:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-tags span i { width: 16px; color: #10b981; }

/* Fiyat ve Buton */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.price-tag .label { display: block; font-size: 0.75rem; color: #94a3b8; font-weight: 700; margin-bottom: 2px; }
.price-tag .amount { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); letter-spacing: -0.5px; }

.btn-arrow {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.main-card:hover .btn-arrow { 
    transform: rotate(-45deg) scale(1.1); 
    background: var(--primary-dark);
}

/* --- İKAS KARTI (HIGHLIGHT) --- */
.highlight-card {
    /* Düz renk yerine zengin gradient */
    background: linear-gradient(145deg, #1e293b, #0f172a);
    color: white;
    border: none;
    display: flex;
    flex-direction: row; /* Masaüstünde yan yana */
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) { .highlight-card { flex-direction: column; align-items: flex-start; } }

.highlight-card .card-content { flex: 1; padding-right: 1rem; position: relative; z-index: 2; }
.highlight-card h3, .highlight-card p { color: white; }
.highlight-card p { opacity: 0.9; font-weight: 300; }

/* Yanıp Sönen Rozet */
.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    border: 1px solid rgba(52, 211, 153, 0.4);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.ikas-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.ikas-header .icon-box { margin-bottom: 0; width: 3.5rem; height: 3.5rem; }

.mini-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    gap: 0.75rem;
}

.mini-list li {
    font-size: 0.85rem;
    color: #e2e8f0;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0f172a;
    padding: 0.8rem 1.8rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,255,255,0.15);
}

.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,255,0.25); }

/* --- STANDART KARTLAR (SEO & ADS) --- */
.standard-card .card-footer-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.price-mini { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.link-mini { 
    color: #64748b; 
    text-decoration: none; 
    font-size: 0.95rem; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    transition: color 0.3s;
}
.link-mini:hover { color: var(--primary-color); transform: translateX(3px); }

/* --- Alt Buton --- */
.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), #4f46e5);
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 15px 35px -5px rgba(79, 70, 229, 0.6);
    transform: translateY(-3px);
}
/* =========================================
   7. PREMIUM EFEKTLER VE ANİMASYONLAR
   ========================================= */

/* 1. Giriş Animasyonu (Kartlar sırayla gelir) */
.bento-card {
    opacity: 0; /* Başlangıçta gizli */
    animation: kart-giris 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Her karta farklı gecikme vererek "sırayla gelme" hissi yaratır */
.bento-card:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2) { animation-delay: 0.2s; }
.bento-card:nth-child(3) { animation-delay: 0.3s; }
.bento-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes kart-giris {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. "Shine" (Işık Yansıması) Efekti */
.bento-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 10;
}

.bento-card:hover::after {
    animation: shine-gecis 0.75s;
}

@keyframes shine-gecis {
    100% {
        left: 200%;
    }
}

/* 3. İkon Canlandırma */
.bento-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Yaylanma efekti */
}

/* İkas Kartı İçin Özel "Pulse" (Nabız) Efekti */
.highlight-card .badge {
    animation: nabiz-yesil 2s infinite;
}

@keyframes nabiz-yesil {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* 4. Arkaplan Dekoru İçin Hareket */
.card-bg-icon {
    transition: transform 0.5s ease;
}

.main-card:hover .card-bg-icon {
    transform: rotate(0deg) scale(1.2); /* Hover'da ikon düzelsin ve büyüsün */
    color: rgba(59, 130, 246, 0.1); /* Rengi biraz belirginleşsin */
}

/* 5. Buton Oklarını Hareketlendirme */
.btn-arrow i, .btn-link i, .btn-solid i, .link-mini i {
    transition: transform 0.3s ease;
}

.bento-card:hover .btn-arrow i,
.bento-card:hover .btn-link i,
.bento-card:hover .btn-solid i,
.bento-card:hover .link-mini i {
    transform: translateX(5px); /* Sağa kayma */
}
/* =========================================
   ÇALIŞMA SÜRECİ (PROCESS)
   ========================================= */

.calisma-sureci {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

/* Bağlantı Çizgisi */
.steps-line {
    position: absolute;
    top: 3rem; /* İkonun ortasına denk gelecek şekilde ayarla */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb 50%, transparent 50%);
    background-size: 20px 100%; /* Kesikli çizgi efekti */
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

/* İkon Kutusu */
.step-icon {
    width: 6rem;
    height: 6rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

/* Adım Numarası (Sağ üstteki küçük yuvarlak) */
.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

/* Hover Efektleri */
.step-item:hover .step-icon {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.1);
}

.step-item:hover .step-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Metinler */
.step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .steps-container {
        grid-template-columns: 1fr; /* Alt alta diz */
        gap: 3rem;
    }

    .steps-line {
        /* Mobilde yatay çizgiyi dikey çizgiye çevir */
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #e5e7eb 50%, transparent 50%);
        background-size: 100% 20px;
    }
    
    .step-item {
        background: white; /* Çizgi arkada kalsın diye */
        padding: 1rem;
    }
}

/* =========================================
   MODERN PORTFÖY VİTRİNİ (ANASAYFA)
   ========================================= */

.portfoy-modern {
    padding: 8rem 0;
    background-color: #ffffff;
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* Kart Yapısı */
.proje-karti {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.proje-karti:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.15);
}

/* Görsel Alanı */
.proje-gorsel {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.proje-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.proje-karti:hover .proje-gorsel img {
    transform: scale(1.1);
}

/* Overlay & Buton */
.proje-overlay {
    position: absolute; inset: 0;
    background: rgba(15, 23, 42, 0.6); /* Koyu perde */
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all 0.3s ease;
}

.proje-karti:hover .proje-overlay { opacity: 1; }

.btn-visit-icon {
    width: 3.5rem; height: 3.5rem;
    background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    transform: scale(0.8); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.proje-karti:hover .btn-visit-icon { transform: scale(1); }
.btn-visit-icon:hover { background: var(--primary-color); color: white; }

/* Kategori Rozeti */
.kategori-rozeti {
    position: absolute; top: 1rem; right: 1rem;
    padding: 0.4rem 1rem; border-radius: 2rem;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    background: white; color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.kategori-rozeti.saglik { color: #166534; background: #dcfce7; }
.kategori-rozeti.lojistik { color: #1e40af; background: #dbeafe; }
.kategori-rozeti.egitim { color: #6b21a8; background: #f3e8ff; }

/* Detaylar */
.proje-detay {
    padding: 2rem;
    display: flex; flex-direction: column; flex-grow: 1;
}

.proje-detay h3 {
    font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem;
}

.proje-detay p {
    font-size: 0.95rem; color: #64748b; line-height: 1.6; margin-bottom: 1.5rem;
}

/* Teknoloji İkonları (Alt Kısım) */
.teknoloji-ikonlari {
    margin-top: auto; padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex; gap: 1rem;
}

.teknoloji-ikonlari span {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; font-weight: 600; color: #475569;
}

.teknoloji-ikonlari span i { width: 16px; color: var(--primary-color); }

/* Alt Buton */
.btn-glow-dark {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #0f172a; color: white;
    padding: 1rem 2.5rem; border-radius: 2rem;
    font-weight: 700; text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.4);
    transition: all 0.3s ease;
}

.btn-glow-dark:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.5);
}
/* --- İLETİŞİM ALANI (DARK THEME) --- */
.iletisim-modern {
    background-color: #0f172a; /* Koyu Lacivert (Slate 900) */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Arkaplan Işığı */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .cta-wrapper { grid-template-columns: 1.2fr 0.8fr; }
}



.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    
    /* Gradient Metin Efekti */
    background: linear-gradient(to right, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Yedek */
}

.cta-desc {
    font-size: 1.2rem;
    color: #94a3b8; /* Slate 400 */
    margin-bottom: 3rem;
    max-width: 600px;
}

/* İletişim Hapları (Pills) */
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.icon-circle i { width: 18px; }

.contact-pill .info { display: flex; flex-direction: column; }
.contact-pill .label { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; font-weight: 700; }
.contact-pill .value { font-size: 1rem; color: white; font-weight: 600; }

/* Butonlar */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-glow {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: #2563eb;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Sağ Taraf - Glass Card */
.cta-visual {
    display: flex;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1.5rem;
    max-width: 400px;
    transform: rotate(3deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.5s ease;
}

.glass-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar-group { display: flex; }
.avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #0f172a; overflow: hidden; margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; }

.online-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4ade80; /* Açık Yeşil */
    font-weight: 600;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 10px #4ade80; }

.glass-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.stars { color: #fbbf24; display: flex; gap: 0.25rem; }
.stars i { width: 18px; fill: #fbbf24; }
/* SSS Bölümü */
.sss-bolumu { padding: 6rem 0; background: #fff; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; margin-bottom: 1rem; }
.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-content p { padding-bottom: 1.5rem; color: #64748b; }
.faq-item.active .faq-content { max-height: 200px; }
.faq-item.active .faq-button i { transform: rotate(180deg); }
/* Animasyonlar */
@keyframes yuzen-desen {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes yukari-kaydir {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes soldan-gel {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sagdan-gel {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes asagidan-gel {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes soluklan {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes nabiz-rozet {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes yaziyor-efekti {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sayac-animasyon {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes donus {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes yuzen-laptop {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes klavye-isik {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes kamera-yanip-son {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes ekran-parlama {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

@keyframes telefon-sallan {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

@keyframes telefon-ekran-parlama {
    0%,
    100% {
        box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow: inset 0 0 30px rgba(59, 130, 246, 0.3);
    }
}

@keyframes yuzen-hareket {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-3deg);
    }
}

@keyframes kart-yukari-gel {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kart-belir {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes proje-yukari-gel {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes yildiz-hareket {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100px);
    }
}

@keyframes kart-parlama {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes ozellik-belir {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@media (max-width: 768px) {
    .laptop-konteyneri,
    .telefon-maketi,
    .yuzen-element {
        display: none !important;
    }
}
/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .hero-baslik {
        font-size: 2.5rem;
    }

    .hero-icerik {
        padding: 4rem 0;
    }

    .laptop-konteyneri {
        margin-top: 2rem;
    }

    .telefon-maketi {
        display: none;
    }

    .yuzen-element {
        display: none;
    }

    .hero-desen-1,
    .hero-desen-2 {
        width: 12rem;
        height: 12rem;
    }
}

/* Performans Optimizasyonu */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}