/* =====================================================
   TECH STYLE — Tech kart sistemleri ve dashboard'lar
   ===================================================== */

/* =============== HERO TECH ARKA PLAN =============== */
.hero-tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 125, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 125, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-tech-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.tech-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-secondary, #b9acff);
    box-shadow: 0 0 16px var(--accent-primary, #8b7dff);
    animation: tech-particle-float 8s ease-in-out infinite;
}

.tech-particle.tp1 { top: 20%; right: 15%; animation-delay: 0s; }
.tech-particle.tp2 { top: 60%; right: 25%; animation-delay: -2s; }
.tech-particle.tp3 { top: 35%; right: 40%; animation-delay: -4s; }
.tech-particle.tp4 { top: 75%; right: 10%; animation-delay: -6s; opacity: 0.6; }
.tech-particle.tp5 { top: 15%; right: 30%; animation-delay: -3s; opacity: 0.7; }

@keyframes tech-particle-float {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(-30px, -40px); opacity: 1; }
}

.hero-corner-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at top right, rgba(139, 125, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* =============== TECH SECTION HEADER (Ortak) =============== */
.tech-services-section,
.tech-about-section,
.tech-solutions-section {
    padding: 100px 0;
    position: relative;
}

.tech-services-section { background: var(--bg-primary); }
.tech-about-section { background: var(--bg-secondary); position: relative; overflow: hidden; }
.tech-solutions-section { background: var(--bg-primary); }

.tech-about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 125, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.tech-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.tech-label-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.78rem;
    color: var(--accent-secondary, #b9acff);
    letter-spacing: 0.15em;
}

.tech-bracket {
    color: var(--accent-primary, #8b7dff);
    font-weight: 700;
    font-size: 1rem;
}

.tech-section-label {
    color: var(--accent-secondary, #b9acff);
    font-weight: 600;
}

.tech-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-primary, #8b7dff), transparent);
}

.tech-version {
    padding: 3px 10px;
    background: rgba(139, 125, 255, 0.08);
    border: 1px solid rgba(139, 125, 255, 0.3);
    border-radius: 4px;
    color: var(--accent-primary, #8b7dff);
    font-size: 0.7rem;
    font-weight: 700;
}

.tech-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary, #fff);
}

.tech-desc {
    font-size: 1.05rem;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.7;
}

/* =============== HİZMETLER — TECH KART =============== */
.tech-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-card {
    position: relative;
    padding: 28px 24px;
    background: 
        linear-gradient(135deg, rgba(29, 21, 66, 0.8), rgba(20, 14, 48, 0.6));
    border: 1px solid rgba(139, 125, 255, 0.18);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(139, 125, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.tech-card:hover {
    border-color: rgba(139, 125, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(139, 125, 255, 0.15);
}

.tech-card:hover::before {
    opacity: 1;
}

/* Köşe çentikleri */
.tech-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--accent-primary, #8b7dff);
    border-style: solid;
    border-width: 0;
    transition: all 0.4s;
}

.tech-corner.tc-tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.tech-corner.tc-tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; }
.tech-corner.tc-bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; }
.tech-corner.tc-br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }

.tech-card:hover .tech-corner {
    width: 22px;
    height: 22px;
    border-color: var(--accent-secondary, #b9acff);
}

/* Scan line */
.tech-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary, #8b7dff), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.tech-card:hover .tech-scan-line {
    opacity: 1;
    animation: tech-scan 1.5s ease-in-out infinite;
}

@keyframes tech-scan {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.tech-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tech-card-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-secondary, #b9acff);
    letter-spacing: 0.12em;
    padding: 3px 8px;
    background: rgba(139, 125, 255, 0.1);
    border-radius: 3px;
}

.tech-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
    animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.tech-card-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent-primary, #8b7dff);
}

.tech-card-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 125, 255, 0.15), rgba(139, 125, 255, 0.05));
    border: 1px solid rgba(139, 125, 255, 0.3);
    font-size: 1.3rem;
    color: var(--accent-primary, #8b7dff);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
    transition: all 0.4s;
}

.tech-card:hover .tech-card-icon {
    background: linear-gradient(135deg, rgba(139, 125, 255, 0.3), rgba(185, 172, 255, 0.15));
    color: var(--accent-secondary, #b9acff);
    transform: scale(1.08);
}

.tech-hex {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: rgba(139, 125, 255, 0.2);
    transition: all 0.6s;
}

.tech-card:hover .tech-hex {
    transform: rotate(180deg);
    color: rgba(185, 172, 255, 0.5);
}

.tech-card-title {
    font-family: var(--serif, 'Playfair Display');
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s;
}

.tech-card:hover .tech-card-title {
    color: var(--accent-secondary, #b9acff);
}

.tech-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 60px;
}

.tech-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px dashed rgba(139, 125, 255, 0.2);
}

.tech-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-primary, #8b7dff);
    letter-spacing: 0.08em;
}

.tech-card-arrow i {
    transition: transform 0.3s;
}

.tech-card-arrow i:first-of-type {
    margin-left: 4px;
}

.tech-card:hover .tech-card-arrow i {
    transform: translateX(3px);
    color: var(--accent-secondary, #b9acff);
}

.tech-card:hover .tech-card-arrow i:last-of-type {
    transform: translateX(6px);
}

.tech-card-rev {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted, #6b7d96);
    letter-spacing: 0.1em;
}

/* =============== HAKKIMIZDA — TECH DASHBOARD =============== */
.tech-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tech-about-info .tech-label-row {
    margin-bottom: 20px;
}

.tech-about-info .tech-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-align: left;
    margin-bottom: 20px;
}

.tech-about-desc {
    color: var(--text-secondary, #94a3b8);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.tech-about-desc em {
    color: var(--accent-secondary, #b9acff);
    font-style: italic;
}

.tech-modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.tech-module {
    background: rgba(29, 21, 66, 0.6);
    border: 1px solid rgba(139, 125, 255, 0.18);
    border-radius: 4px;
    padding: 16px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.tech-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-primary, #8b7dff);
    transition: height 0.4s;
}

.tech-module:hover {
    border-color: rgba(139, 125, 255, 0.5);
    background: rgba(29, 21, 66, 0.85);
}

.tech-module:hover::before {
    height: 100%;
}

.tech-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tech-module-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted, #6b7d96);
    letter-spacing: 0.1em;
}

.tech-module-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.tech-module-status.online {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.tech-module-status.active {
    background: rgba(139, 125, 255, 0.15);
    color: var(--accent-secondary, #b9acff);
    border: 1px solid rgba(139, 125, 255, 0.3);
}

.tech-module-status.verified {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.tech-module-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(139, 125, 255, 0.1);
    color: var(--accent-primary, #8b7dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.tech-module h4 {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin-bottom: 4px;
}

.tech-module p {
    font-size: 0.78rem;
    color: var(--text-muted, #6b7d96);
    line-height: 1.5;
    margin: 0;
}

/* Tech Dashboard (sağ panel) */
.tech-dashboard {
    background: linear-gradient(135deg, rgba(29, 21, 66, 0.95), rgba(20, 14, 48, 0.9));
    border: 1px solid rgba(139, 125, 255, 0.25);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.tech-dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(12, 8, 32, 0.6);
    border-bottom: 1px solid rgba(139, 125, 255, 0.15);
}

.tech-dash-dots {
    display: flex;
    gap: 6px;
}

.tech-dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.tech-dash-dots span:nth-child(1) { background: #ff5f57; }
.tech-dash-dots span:nth-child(2) { background: #ffbd2e; }
.tech-dash-dots span:nth-child(3) { background: #28ca42; }

.tech-dash-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted, #6b7d96);
    letter-spacing: 0.05em;
}

.tech-dash-counter {
    padding: 32px 24px 28px;
    text-align: center;
    border-bottom: 1px dashed rgba(139, 125, 255, 0.15);
    position: relative;
}

.tech-counter-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted, #6b7d96);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.tech-counter-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 18px;
    line-height: 1;
}

.tech-counter-num {
    font-family: var(--serif, 'Playfair Display');
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b7dff 0%, #b9acff 50%, #b8e8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
}

.tech-counter-plus {
    font-family: var(--serif, 'Playfair Display');
    font-size: 2.5rem;
    color: var(--accent-primary, #8b7dff);
    margin-top: 8px;
}

.tech-counter-bar {
    width: 100%;
    height: 4px;
    background: rgba(139, 125, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
}

.tech-counter-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-primary, #8b7dff), var(--accent-secondary, #b9acff));
    border-radius: 2px;
    animation: counter-fill 2.5s ease-out;
}

@keyframes counter-fill {
    from { width: 0%; }
    to { width: 100%; }
}

.tech-counter-sub {
    font-size: 0.78rem;
    color: var(--text-secondary, #94a3b8);
    letter-spacing: 0.05em;
}

.tech-dash-stats {
    padding: 20px 24px;
}

.tech-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(139, 125, 255, 0.1);
}

.tech-stat-row:last-child {
    border-bottom: none;
}

.tech-stat-label {
    color: var(--text-muted, #6b7d96);
}

.tech-stat-val {
    color: var(--accent-secondary, #b9acff);
    font-weight: 700;
    font-size: 1rem;
}

.opacity-50 { opacity: 0.5; }

.tech-dash-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(46, 204, 113, 0.08);
    border-top: 1px solid rgba(46, 204, 113, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #2ecc71;
    letter-spacing: 0.1em;
}

.tech-status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
    animation: status-blink 2s ease-in-out infinite;
}

/* =============== ÇÖZÜMLER — HUD LİSTE =============== */
.tech-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tech-solution-row {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(29, 21, 66, 0.7), rgba(20, 14, 48, 0.5));
    border: 1px solid rgba(139, 125, 255, 0.18);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tech-solution-row:hover {
    border-color: rgba(139, 125, 255, 0.5);
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(29, 21, 66, 0.95), rgba(20, 40, 70, 0.7));
}

.tech-sol-number {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary, #8b7dff);
}

.tech-sol-bracket {
    color: var(--accent-secondary, #b9acff);
    opacity: 0.6;
}

.tech-sol-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(139, 125, 255, 0.15), rgba(139, 125, 255, 0.05));
    border: 1px solid rgba(139, 125, 255, 0.3);
    color: var(--accent-primary, #8b7dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.tech-solution-row:hover .tech-sol-icon {
    background: linear-gradient(135deg, rgba(139, 125, 255, 0.35), rgba(185, 172, 255, 0.15));
    color: var(--accent-secondary, #b9acff);
    transform: scale(1.05);
}

.tech-sol-content {
    flex: 1;
    min-width: 0;
}

.tech-sol-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.tech-sol-title {
    font-family: var(--serif, 'Playfair Display');
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s;
}

.tech-solution-row:hover .tech-sol-title {
    color: var(--accent-secondary, #b9acff);
}

.tech-sol-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 3px;
    letter-spacing: 0.1em;
}

.tech-sol-desc {
    font-size: 0.82rem;
    color: var(--text-muted, #6b7d96);
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tech-sol-arrow {
    color: var(--accent-primary, #8b7dff);
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s;
    flex-shrink: 0;
}

.tech-solution-row:hover .tech-sol-arrow {
    opacity: 1;
    transform: translateX(4px);
    color: var(--accent-secondary, #b9acff);
}

.tech-sol-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(139, 125, 255, 0.08);
    overflow: hidden;
}

.tech-sol-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-primary, #8b7dff), var(--accent-secondary, #b9acff));
    transition: width 0.5s;
}

.tech-solution-row:hover .tech-sol-progress-fill {
    width: 100%;
}

/* =============== TECH BUTONLAR =============== */
.btn-tech-primary,
.btn-tech-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-tech-primary {
    background: linear-gradient(135deg, var(--accent-primary, #8b7dff), var(--accent-secondary, #b9acff));
    color: #0c0820;
    border: 1px solid var(--accent-primary, #8b7dff);
    box-shadow: 0 4px 20px rgba(139, 125, 255, 0.3);
}

.btn-tech-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139, 125, 255, 0.5);
    color: #0c0820;
}

.btn-tech-outline {
    background: transparent;
    color: var(--accent-primary, #8b7dff);
    border: 1px solid var(--accent-primary, #8b7dff);
}

.btn-tech-outline:hover {
    background: rgba(139, 125, 255, 0.08);
    color: var(--accent-secondary, #b9acff);
    border-color: var(--accent-secondary, #b9acff);
}

.btn-tech-primary i,
.btn-tech-outline i {
    transition: transform 0.3s;
}

.btn-tech-primary:hover i,
.btn-tech-outline:hover i {
    transform: translateX(4px);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
    .tech-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .tech-services-section,
    .tech-about-section,
    .tech-solutions-section {
        padding: 64px 0;
    }
    
    .tech-services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-counter-num {
        font-size: 3.5rem;
    }
    
    .tech-solution-row {
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding: 16px;
    }
    
    .tech-sol-icon {
        grid-row: span 2;
    }
    
    .tech-sol-arrow {
        display: none;
    }
}

/* =====================================================
   HERO SLIDER ARKA PLAN
   ===================================================== */
.hero.hero-has-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1;
    animation: hero-slide-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-slide-zoom {
    0%   { transform: scale(1.02); }
    100% { transform: scale(1.12); }
}

/* Hero slider overlay - okunabilirlik için yumuşak karartma */
.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(12, 8, 32, 0.45) 0%, rgba(12, 8, 32, 0.75) 100%),
        linear-gradient(90deg, rgba(12, 8, 32, 0.65) 0%, rgba(12, 8, 32, 0.3) 50%, rgba(12, 8, 32, 0.5) 100%);
    z-index: 1;
}

/* Hero içeriği slider üstünde olsun */
.hero.hero-has-slider .container,
.hero.hero-has-slider .hero-content {
    position: relative;
    z-index: 3;
}

/* Slider varken tech grid'i de slider üstünde göster ama hafif */
.hero.hero-has-slider .hero-tech-grid {
    z-index: 2;
    opacity: 0.4;
}

.hero.hero-has-slider .hero-tech-particles {
    z-index: 2;
}

.hero.hero-has-slider .hero-corner-glow {
    z-index: 2;
    opacity: 0.6;
}

/* =====================================================
   HEADER — LOGO ORTADA, MENÜLER ALTINDA ORTALI
   ===================================================== */
.main-header-centered {
    padding: 0;
}

.header-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px 0 8px;
}

.logo-centered {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-img-big {
    height: 52px;
    width: auto;
    transition: height 0.3s ease;
}

/* Scroll edilince logo küçülsün */
.main-header.scrolled .logo-img-big {
    height: 40px;
}

.main-header-centered .header-logo-row {
    transition: padding 0.3s ease;
}

.main-header.scrolled .header-logo-row {
    padding: 8px 0 6px;
}

/* Menüler ortalı */
.navbar-centered {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(139, 125, 255, 0.12);
}

.nav-menu-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu-centered > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 16px;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-menu-centered > li > a:hover,
.nav-menu-centered > li > a.active {
    color: var(--text-primary, #fff);
}

.nav-menu-centered > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary, #8b7dff), var(--accent-secondary, #b9acff));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-menu-centered > li > a:hover::after,
.nav-menu-centered > li > a.active::after {
    transform: scaleX(1);
}

/* Sosyal medya ikonları top bar */
.top-bar-social {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-social .social-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary, #94a3b8);
    font-size: 0.78rem;
    transition: all 0.2s;
}

.top-bar-social .social-icon:hover {
    background: linear-gradient(135deg, var(--accent-primary, #8b7dff), var(--accent-secondary, #b9acff));
    color: #0c0820;
    transform: translateY(-2px);
}

/* Mobil */
@media (max-width: 992px) {
    .navbar-centered {
        border-top: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .logo-img-big {
        height: 54px;
    }
    
    .header-logo-row {
        justify-content: space-between;
        padding: 14px 0;
    }
    
    .nav-menu-centered {
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .nav-menu-centered.active {
        display: flex;
    }
    
    .top-bar-social {
        display: none;
    }

    /* Mobilde tüm menü öğeleri aynı hizada başlasın */
    .nav-menu-centered > li {
        width: 100%;
        border-bottom: 1px solid rgba(139, 125, 255, 0.08);
    }
    .nav-menu-centered > li > a {
        padding: 14px 4px;
        width: 100%;
        justify-content: space-between;
        font-size: 1rem;
    }
    /* Alt menü oku sağda */
    .nav-menu-centered > li.has-dropdown > a .fa-chevron-down {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    .nav-menu-centered > li.has-dropdown.open > a .fa-chevron-down {
        transform: rotate(180deg);
    }
    /* Alt menü: kapalı başlar, tıklayınca açılır (accordion) */
    .nav-menu-centered .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        width: 100%;
    }
    .nav-menu-centered .has-dropdown.open .dropdown {
        max-height: 2000px;
    }
    /* Alt menü linkleri: ana linklerle aynı sol hizada (sadece doğrudan çocuk) */
    .nav-menu-centered .dropdown > li > a {
        display: block;
        padding: 11px 4px 11px 18px;
        font-size: 0.92rem;
        color: var(--text-secondary, #b0a8cd);
        border-left: 2px solid rgba(139, 125, 255, 0.25);
        margin-left: 2px;
    }
    .nav-menu-centered .dropdown > li > a:hover {
        color: var(--accent-secondary, #b9acff);
        border-left-color: var(--accent-primary, #8b7dff);
    }
}

/* =====================================================
   İŞ ORTAKLARI — LOGO MARQUEE (KESİNTİSİZ SONSUZ AKIŞ)
   ===================================================== */
.partners-marquee-wrap {
    padding: 50px 0;
    background: var(--bg-secondary, #140e30);
    border-top: 1px solid rgba(139, 125, 255, 0.1);
    border-bottom: 1px solid rgba(139, 125, 255, 0.1);
    overflow: hidden;
}

.partners-marquee-title {
    text-align: center;
    margin-bottom: 32px;
}

.partners-marquee-title span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--text-muted, #6b7d96);
    font-weight: 600;
}

.partners-marquee-v2 {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.partners-track-v2 {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    /* Kesintisiz akış: içerik 2 kez basıldığı için -50% tam bir döngü = sıfırlama görünmez */
    animation: partners-scroll 40s linear infinite;
}

.partners-track-v2:hover {
    animation-play-state: paused;
}

@keyframes partners-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 56px;
}

.partner-logo-img {
    max-height: 48px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.8) opacity(0.65);
    transition: filter 0.3s;
}

.partner-logo-item:hover .partner-logo-img {
    filter: grayscale(0%) brightness(1) opacity(1);
}

.partner-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted, #6b7d96);
    font-family: var(--serif, 'Playfair Display');
    white-space: nowrap;
    transition: color 0.3s;
    opacity: 0.7;
}

.partner-logo-item:hover .partner-logo-text {
    color: var(--accent-secondary, #b9acff);
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-track-v2 { gap: 40px; animation-duration: 30s; }
    .partner-logo-text { font-size: 1.2rem; }
    .partner-logo-img { max-height: 36px; max-width: 120px; }
}

/* =====================================================
   PROJELERİMİZ — Arku & CRM
   ===================================================== */
.projects-section {
    padding: 100px 0;
    background: var(--bg-primary, #0c0820);
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(29, 21, 66, 0.85), rgba(20, 14, 48, 0.65));
    border: 1px solid rgba(139, 125, 255, 0.18);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    border-color: rgba(139, 125, 255, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 125, 255, 0.12);
}

.project-card-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(139, 125, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s;
    opacity: 0;
}

.project-card:hover .project-card-glow {
    opacity: 1;
}

.project-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.project-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
}

.project-logo-arku {
    background: linear-gradient(135deg, #8b7dff, #2563eb);
    box-shadow: 0 8px 24px rgba(139, 125, 255, 0.4);
}

.project-logo-crm {
    background: linear-gradient(135deg, #0bbcc7, #14d4dc);
    box-shadow: 0 8px 24px rgba(11, 188, 199, 0.4);
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2ecc71;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 50px;
}

.project-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
    animation: status-blink 2s ease-in-out infinite;
}

.project-name {
    font-family: var(--serif, 'Playfair Display');
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.project-tagline {
    font-size: 0.92rem;
    color: var(--accent-secondary, #b9acff);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.project-desc {
    font-size: 0.92rem;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.project-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
    background: rgba(139, 125, 255, 0.1);
    border: 1px solid rgba(139, 125, 255, 0.2);
    border-radius: 50px;
    color: var(--text-secondary, #94a3b8);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary, #8b7dff);
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    transition: gap 0.3s;
}

.project-link:hover {
    gap: 14px;
    color: var(--accent-secondary, #b9acff);
}

@media (max-width: 768px) {
    .projects-section { padding: 64px 0; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-name { font-size: 1.6rem; }
}

/* =====================================================
   HERO SLIDER — TEKNOLOJİK HUD (v3)
   ===================================================== */

/* Tarama çizgisi (yukarıdan aşağı sürekli tarar) */
.hero-scanline {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(78,168,255,0.7), rgba(109,213,255,0.9), rgba(78,168,255,0.7), transparent);
    box-shadow: 0 0 16px rgba(78,168,255,0.6);
    opacity: 0.55;
    animation: hero-scan 7s linear infinite;
    pointer-events: none;
}
@keyframes hero-scan {
    0%   { transform: translateY(0); opacity: 0; }
    8%   { opacity: 0.55; }
    92%  { opacity: 0.55; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* HUD kontrol paneli (sağ alt) */
.hero-hud {
    position: absolute;
    bottom: 38px;
    right: 5%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    font-family: 'JetBrains Mono', monospace;
}

.hero-hud-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--text-primary, #fff);
}
.hero-hud-counter .hud-current {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b7dff, #b9acff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.hero-hud-counter .hud-sep { color: rgba(255,255,255,0.4); font-size: 1.1rem; }
.hero-hud-counter .hud-total { color: rgba(255,255,255,0.55); font-size: 1rem; }

/* İlerleme çubukları */
.hero-hud-bars {
    display: flex;
    gap: 8px;
}
.hud-bar {
    position: relative;
    width: 44px;
    height: 4px;
    border: none;
    padding: 0;
    border-radius: 4px;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s, background 0.3s;
}
.hud-bar.active { width: 64px; background: rgba(255,255,255,0.25); }
.hud-bar-fill {
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(90deg, #8b7dff, #b9acff);
    box-shadow: 0 0 10px rgba(78,168,255,0.7);
    border-radius: 4px;
}
.hud-bar:hover { background: rgba(255,255,255,0.35); }

/* CANLI durum göstergesi */
.hero-hud-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
}
.hud-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
    animation: hud-blink 1.6s ease-in-out infinite;
}
@keyframes hud-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* HUD köşe çerçeveleri (teknolojik viewport hissi) */
.hero-hud-corners { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hud-corner {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(78,168,255,0.4);
}
.hud-corner.hc-tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.hud-corner.hc-tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.hud-corner.hc-bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.hud-corner.hc-br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

/* Gelişmiş slide geçişi: hafif kayma + zoom */
.hero-slide {
    transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1), transform 1.6s cubic-bezier(0.4,0,0.2,1);
}

@media (max-width: 768px) {
    .hero-hud { right: 5%; bottom: 24px; gap: 10px; }
    .hero-hud-counter .hud-current { font-size: 1.5rem; }
    .hud-bar { width: 32px; }
    .hud-bar.active { width: 46px; }
    .hud-corner { width: 28px; height: 28px; }
    .hud-corner.hc-tl, .hud-corner.hc-tr { top: 14px; }
    .hud-corner.hc-bl, .hud-corner.hc-br { bottom: 14px; }
    .hud-corner.hc-tl, .hud-corner.hc-bl { left: 14px; }
    .hud-corner.hc-tr, .hud-corner.hc-br { right: 14px; }
}

/* =====================================================
   HERO SPLIT — Sol yazı + Sağ 3D dönen küre (v4)
   Ekrana sığar, fotoğraf slider yok
   ===================================================== */
.hero-split {
    position: relative;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 24px 0;
    background: 
        radial-gradient(ellipse 80% 60% at 75% 45%, rgba(123, 97, 255, 0.22), transparent 70%),
        linear-gradient(135deg, #120a2e 0%, #1a0f3d 45%, #0c0820 100%);
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Sol içerik */
.hero-content-left {
    text-align: left;
    max-width: 620px;
}
.hero-index {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--accent-secondary, #8b7dff);
    letter-spacing: 0.2em;
    margin-bottom: 14px;
}

/* HUD köşe etiketleri (ekran görüntüsündeki gibi) */
.hero-hud-frame { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hud-tag {
    position: absolute;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: rgba(180, 170, 230, 0.45);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hud-tag i { font-size: 0.6rem; opacity: 0.7; }
.hud-tag-tl { top: 28px; left: 32px; }
.hud-tag-tr { top: 28px; right: 32px; }
.hud-tag-bl { bottom: 28px; left: 32px; }
.hud-tag-br { bottom: 28px; right: 32px; }

/* Sağ görsel alanı */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.globe-stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.globe-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle at 42% 38%, rgba(139,125,255,0.35), rgba(91,79,212,0.12) 50%, transparent 72%);
    filter: blur(18px);
    animation: globe-pulse 6s ease-in-out infinite;
}
@keyframes globe-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

/* Küre dönüşü */
.globe-rotator {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: globe-spin 38s linear infinite;
    transform-origin: center;
}
.globe-svg { width: 100%; height: 100%; display: block; overflow: visible; }
@keyframes globe-spin {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}
/* hafif eğik 3D his için içteki noktalar ayrıca yatay esnesin */
.globe-dots { transform-box: fill-box; transform-origin: center; animation: globe-wobble 14s ease-in-out infinite; }
@keyframes globe-wobble {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.92); }
}

/* Yörünge halkaları */
.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139,125,255,0.18);
    pointer-events: none;
}
.globe-ring-1 { inset: -4%; animation: globe-spin 26s linear infinite reverse; border-style: dashed; }
.globe-ring-2 { inset: 6%; border-color: rgba(139,125,255,0.1); }

.globe-caption {
    margin-top: 18px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: rgba(180, 170, 230, 0.4);
}

/* Hero başlık — Space Grotesk, kalın, sıkı */
.hero-split h1 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.04;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    margin-bottom: 16px;
}
.hero-split h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #8b7dff, #b9acff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-split p {
    font-size: 0.96rem;
    margin-bottom: 20px;
    line-height: 1.55;
}
.hero-split .hero-badge { margin-bottom: 14px; }
.hero-split .hero-stats { margin-top: 22px; gap: 24px; }
.hero-split .hero-index { margin-bottom: 10px; }

/* Responsive: tablet ve altı tek kolon */
@media (max-width: 992px) {
    .hero-split { min-height: auto; padding: 90px 0 50px; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-visual { order: -1; }
    .globe-stage { max-width: 260px; }
    .hero-content-left { max-width: 100%; text-align: center; margin: 0 auto; }
    .hero-content-left .hero-actions { justify-content: center; }
    .hero-content-left .hero-stats { justify-content: center; }
    .hud-tag-bl, .hud-tag-br { display: none; }
}
@media (max-width: 768px) {
    .globe-stage { max-width: 220px; }
    .hud-tag { font-size: 0.6rem; }
    .hud-tag-tl { left: 16px; top: 16px; }
    .hud-tag-tr { right: 16px; top: 16px; }
}

/* =====================================================
   GRAIN / ESKİTME DOKUSU (2. görsel referansı)
   ===================================================== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    mix-blend-mode: overlay;
}

/* Menekşe vignette (kenarları hafif koyulaştırır - derinlik) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9989;
    pointer-events: none;
    background: radial-gradient(ellipse 120% 100% at 50% 0%, transparent 55%, rgba(8, 6, 20, 0.5) 100%);
}

/* Yüklenen 3D küre görseli (PNG/WEBP/GIF/SVG) */
.globe-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 40px rgba(139, 125, 255, 0.35));
}

/* =====================================================
   3D DÜNYA KÜRESİ (Three.js canvas konteyneri)
   ===================================================== */
.globe-3d {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.globe-3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
/* globe-stage'in 3D için kare ve yeterli yükseklikte olması */
.hero-visual .globe-stage {
    min-height: 420px;
}
@media (max-width: 992px) {
    .hero-visual .globe-stage { min-height: 300px; max-width: 340px; }
}
@media (max-width: 768px) {
    .hero-visual .globe-stage { min-height: 260px; max-width: 280px; }
}

/* =====================================================
   CANLI SİBER GÜVENLİK HABERLERİ (RSS)
   ===================================================== */
.cyber-news-section {
    padding: 80px 0;
    background: var(--bg-secondary, #140e30);
    position: relative;
}
.cyber-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.cyber-news-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: rgba(20, 14, 48, 0.6);
    border: 1px solid rgba(139, 125, 255, 0.16);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    min-height: 200px;
}
.cyber-news-card:hover {
    border-color: rgba(139, 125, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 30px rgba(139,125,255,0.12);
}
.news-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.news-icon {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #7b61ff, #b9acff);
    color: #fff; font-size: 1rem;
}
.news-cat {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-secondary, #b9acff);
    background: rgba(139, 125, 255, 0.12);
    padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase;
}
.news-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary, #ece8f7);
    margin-bottom: 10px;
}
.news-desc {
    font-size: 0.86rem;
    color: var(--text-secondary, #b0a8cd);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 16px;
}
.news-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(139, 125, 255, 0.1);
}
.news-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted, #7d7396);
}
.news-date i { margin-right: 5px; }
.news-readmore {
    font-family: 'Space Mono', monospace;
    font-size: 0.74rem; font-weight: 700;
    color: var(--accent-primary, #8b7dff);
    display: inline-flex; align-items: center; gap: 5px;
    transition: gap 0.3s;
}
.cyber-news-card:hover .news-readmore { gap: 9px; }

/* İskelet yükleme */
.news-skeleton {
    min-height: 200px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(139,125,255,0.05) 25%, rgba(139,125,255,0.12) 50%, rgba(139,125,255,0.05) 75%);
    background-size: 200% 100%;
    animation: news-shimmer 1.4s infinite;
}
@keyframes news-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-muted, #7d7396);
    font-family: 'Space Mono', monospace;
}

.cyber-news-foot {
    text-align: center;
    margin-top: 28px;
}
.cyber-news-source {
    font-family: 'Space Mono', monospace;
    font-size: 0.76rem;
    color: var(--text-muted, #7d7396);
}
.cyber-news-source a {
    color: var(--accent-secondary, #b9acff);
    text-decoration: none;
}
.cyber-news-source a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .cyber-news-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   TEKNOLOJİK YAN AKSİYON PANELİ (FAB stack)
   ===================================================== */
.tech-fab-stack {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Ortak FAB tasarımı */
.tech-fab {
    position: relative;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(139, 125, 255, 0.4);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(29, 21, 66, 0.95), rgba(18, 10, 46, 0.95));
    color: var(--accent-secondary, #b9acff);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35), inset 0 0 12px rgba(139,125,255,0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}
.tech-fab:hover {
    border-color: var(--accent-primary, #8b7dff);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(123,97,255,0.4), inset 0 0 18px rgba(139,125,255,0.2);
}
.tech-fab i { position: relative; z-index: 2; }

/* İçinden geçen tarama parıltısı */
.tech-fab .fab-ring {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(120deg, transparent 30%, rgba(139,125,255,0.25) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: fab-scan 3.5s linear infinite;
    pointer-events: none;
}
@keyframes fab-scan {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Köşe HUD çentikleri */
.tech-fab::before, .tech-fab::after {
    content: '';
    position: absolute;
    width: 7px; height: 7px;
    border-color: rgba(139,125,255,0.6);
    border-style: solid;
    border-width: 0;
    z-index: 3;
    transition: border-color 0.3s;
}
.tech-fab::before { top: 5px; left: 5px; border-top-width: 1.5px; border-left-width: 1.5px; }
.tech-fab::after { bottom: 5px; right: 5px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.tech-fab:hover::before, .tech-fab:hover::after { border-color: #b9acff; }

/* Yukarı çık: scroll olunca görünür */
.tech-fab-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.85);
    pointer-events: none;
}
.tech-fab-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Shield butonu aktifken */
.tech-fab-shield.active {
    border-color: var(--accent-primary, #8b7dff);
    color: #fff;
    box-shadow: 0 0 24px rgba(123,97,255,0.5);
}
.tech-fab-shield.active i { transform: rotate(360deg); transition: transform 0.5s; }

/* Sosyal medya açılır liste */
.fab-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}
.fab-social-item {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(139, 125, 255, 0.3);
    background: rgba(29, 21, 66, 0.9);
    color: var(--accent-secondary, #b9acff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    /* Başlangıçta gizli */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--i) * 0.05s);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.fab-social.open .fab-social-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.fab-social-item:hover {
    background: linear-gradient(135deg, #7b61ff, #b9acff);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.08);
}

@media (max-width: 600px) {
    .tech-fab-stack { right: 16px; bottom: 16px; gap: 12px; }
    .tech-fab { width: 46px; height: 46px; font-size: 1rem; }
    .fab-social-item { width: 40px; height: 40px; }
}

/* =====================================================
   LOGO PARLAMA EFEKTİ (header) — elegan & sürekli
   ===================================================== */
.logo-centered { position: relative; overflow: hidden; }
.logo-img-big {
    position: relative;
    transition: filter 0.5s ease, transform 0.5s ease;
    filter: drop-shadow(0 0 6px rgba(139,125,255,0.28));
}
.logo-centered:hover .logo-img-big {
    filter: drop-shadow(0 0 12px rgba(139,125,255,0.55)) drop-shadow(0 0 22px rgba(185,172,255,0.3));
    transform: scale(1.03);
}
/* Üzerinden sürekli ve yavaş geçen ince ışık huzmesi (duraklamasız) */
.logo-centered::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 35%; height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(185,172,255,0.10) 45%, rgba(255,255,255,0.22) 50%, rgba(185,172,255,0.10) 55%, transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    animation: logo-shine 6s linear infinite;
}
@keyframes logo-shine {
    0% { left: -45%; }
    100% { left: 135%; }
}

/* =====================================================
   ÖZEL İMLEÇ + SPOT IŞIĞI (fareyi takip eden aydınlatma)
   ===================================================== */
@media (hover: hover) and (pointer: fine) {
    /* Sistem imlecini gizle, kendi imlecimizi kullan */
    body.custom-cursor-on, 
    body.custom-cursor-on a, 
    body.custom-cursor-on button,
    body.custom-cursor-on input,
    body.custom-cursor-on textarea,
    body.custom-cursor-on .logo-centered { cursor: none; }

    /* Fareyi takip eden spot ışığı (gittiği yeri aydınlatır) */
    .cursor-spot {
        position: fixed;
        top: 0; left: 0;
        width: 320px; height: 320px;
        margin: -160px 0 0 -160px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(139,125,255,0.16) 0%, rgba(123,97,255,0.07) 35%, transparent 70%);
        pointer-events: none;
        z-index: 9998;
        transform: translate(-100px, -100px);
        transition: opacity 0.3s ease;
        mix-blend-mode: screen;
        will-change: transform;
    }

    /* İmleç noktası (halka) */
    .cursor-dot {
        position: fixed;
        top: 0; left: 0;
        width: 8px; height: 8px;
        margin: -4px 0 0 -4px;
        border-radius: 50%;
        background: #b9acff;
        box-shadow: 0 0 10px rgba(185,172,255,0.9), 0 0 20px rgba(139,125,255,0.5);
        pointer-events: none;
        z-index: 10000;
        transform: translate(-100px, -100px);
        transition: width 0.2s, height 0.2s, background 0.2s;
        will-change: transform;
    }
    .cursor-ring {
        position: fixed;
        top: 0; left: 0;
        width: 34px; height: 34px;
        margin: -17px 0 0 -17px;
        border: 1.5px solid rgba(139,125,255,0.6);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-100px, -100px);
        transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.25s;
        will-change: transform;
    }
    /* Tıklanabilir öğe üstünde imleç büyür */
    body.cursor-hovering .cursor-ring {
        width: 52px; height: 52px;
        margin: -26px 0 0 -26px;
        border-color: rgba(185,172,255,0.9);
        background: rgba(139,125,255,0.08);
    }
    body.cursor-hovering .cursor-dot {
        width: 6px; height: 6px;
        background: #fff;
    }
}

/* =====================================================
   BOOT / AÇILIŞ EKRANI — puzzle küresinden siteye giriş
   ===================================================== */
.boot-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 45%, #1a0f3d 0%, #0c0820 60%, #080614 100%);
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
/* Bitince: site içine "giriş" — küre büyür, ekran kaybolur */
.boot-screen.boot-done {
    opacity: 0;
    visibility: hidden;
}
.boot-screen.boot-done .boot-center { transform: scale(8); opacity: 0; }
.boot-screen.boot-done .boot-globe { filter: blur(8px); }

/* Arka plan tarama gridi */
.boot-grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(139,125,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,125,255,0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    transform: perspective(500px) rotateX(58deg) translateY(-10%);
    animation: boot-grid-move 8s linear infinite;
    opacity: 0.5;
}
@keyframes boot-grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 0 44px; }
}

.boot-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.7,0,0.84,0), opacity 0.8s ease;
}

/* Dönen küre */
.boot-globe {
    position: relative;
    width: 180px;
    height: 180px;
    transition: filter 0.6s ease;
}
.boot-globe-svg {
    width: 100%; height: 100%;
    animation: boot-globe-spin 8s linear infinite;
    filter: drop-shadow(0 0 24px rgba(139,125,255,0.5));
}
@keyframes boot-globe-spin {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}
.boot-globe-lines { animation: boot-pulse-op 3s ease-in-out infinite; }
@keyframes boot-pulse-op {
    0%,100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.boot-globe-ring {
    position: absolute;
    inset: -14px;
    border: 1px dashed rgba(139,125,255,0.4);
    border-radius: 50%;
    animation: boot-globe-spin 12s linear infinite reverse;
}

/* Marka */
.boot-brand {
    margin-top: 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    opacity: 0;
    animation: boot-fade-in 0.6s ease 0.3s forwards;
}
.boot-brand span {
    background: linear-gradient(120deg, #8b7dff, #b9acff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes boot-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Durum metni */
.boot-status {
    margin-top: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--accent-secondary, #b9acff);
    display: flex;
    align-items: center;
    gap: 2px;
    min-height: 18px;
}
.boot-cursor {
    animation: boot-blink 0.8s step-end infinite;
    color: var(--accent-secondary, #b9acff);
    font-weight: 700;
}
@keyframes boot-blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0; }
}

/* İlerleme çubuğu */
.boot-bar {
    margin-top: 22px;
    width: 260px;
    max-width: 70vw;
    height: 3px;
    background: rgba(139,125,255,0.15);
    border-radius: 4px;
    overflow: hidden;
}
.boot-bar-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7b61ff, #b9acff);
    box-shadow: 0 0 12px rgba(139,125,255,0.8);
    transition: width 0.2s ease;
}
.boot-percent {
    margin-top: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted, #7d7396);
    letter-spacing: 0.1em;
}

/* Köşe HUD */
.boot-hud {
    position: absolute;
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    color: rgba(180,170,230,0.4);
    z-index: 2;
}
.boot-hud-tl { top: 24px; left: 28px; }
.boot-hud-tr { top: 24px; right: 28px; }
.boot-hud-bl { bottom: 24px; left: 28px; }
.boot-hud-br { bottom: 24px; right: 28px; }

@media (max-width: 600px) {
    .boot-globe { width: 130px; height: 130px; }
    .boot-brand { font-size: 1.5rem; }
    .boot-hud { font-size: 0.55rem; }
    .boot-hud-tl, .boot-hud-tr { top: 16px; }
    .boot-hud-bl, .boot-hud-br { bottom: 16px; }
}

/* Boot aktifken sayfa kaymasın */
body.booting { overflow: hidden; }

/* =====================================================
   ZENGİN İÇERİK (WYSIWYG editörden gelen HTML)
   ===================================================== */
.rich-content { color: var(--text-secondary, #b0a8cd); line-height: 1.85; }
.rich-content p { margin: 0 0 1.1em; }
.rich-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--text-primary, #ece8f7);
    margin: 1.6em 0 0.6em; letter-spacing: -0.01em;
}
.rich-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--text-primary, #ece8f7);
    margin: 1.4em 0 0.5em;
}
.rich-content h4 {
    font-size: 1.1rem; font-weight: 600;
    color: var(--text-primary, #ece8f7);
    margin: 1.2em 0 0.4em;
}
.rich-content ul, .rich-content ol { margin: 0 0 1.1em 1.5em; }
.rich-content li { margin-bottom: 0.5em; }
.rich-content a {
    color: var(--accent-secondary, #b9acff);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.rich-content a:hover { color: var(--accent-primary, #8b7dff); }
.rich-content strong, .rich-content b { color: var(--text-primary, #ece8f7); font-weight: 700; }
.rich-content blockquote {
    border-left: 3px solid var(--accent-primary, #8b7dff);
    margin: 1.2em 0; padding: 8px 0 8px 20px;
    color: var(--text-primary, #ece8f7);
    font-style: italic;
    background: rgba(139,125,255,0.05);
    border-radius: 0 8px 8px 0;
}
.rich-content table {
    width: 100%; border-collapse: collapse; margin: 1.2em 0;
    font-size: 0.95em;
}
.rich-content th, .rich-content td {
    border: 1px solid var(--border-color, rgba(139,125,255,0.15));
    padding: 10px 14px; text-align: left;
}
.rich-content th { background: rgba(139,125,255,0.08); color: var(--text-primary, #ece8f7); font-weight: 600; }
.rich-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 1em 0; }

/* =====================================================
   BELGELER & SERTİFİKALAR SAYFASI
   ===================================================== */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.document-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(20, 14, 48, 0.6);
    border: 1px solid rgba(139, 125, 255, 0.16);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.document-card:hover {
    border-color: rgba(139, 125, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(0,0,0,0.32), 0 0 26px rgba(139,125,255,0.12);
}
.doc-icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7b61ff, #b9acff);
    display: grid; place-items: center;
    color: #fff; font-size: 1.4rem;
}
.doc-info { flex: 1; min-width: 0; }
.doc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.02rem; font-weight: 600;
    color: var(--text-primary, #ece8f7);
    margin-bottom: 4px;
}
.doc-desc {
    font-size: 0.84rem;
    color: var(--text-secondary, #b0a8cd);
    margin-bottom: 8px;
    line-height: 1.5;
}
.doc-meta {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent-secondary, #b9acff);
    display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 600px) {
    .documents-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   ÇÖZÜMLER — üst kategori + alt kategori gruplaması
   ===================================================== */
.solution-category { margin-bottom: 56px; }
.solution-category-head {
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 28px; padding-bottom: 18px;
    border-bottom: 1px solid rgba(139,125,255,0.18);
}
.solution-category-head .service-icon {
    flex-shrink: 0; width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7b61ff, #b9acff);
    display: grid; place-items: center; color: #fff; font-size: 1.5rem;
}
.solution-category-head h2 {
    font-size: 1.5rem; margin: 0 0 4px;
    color: var(--text-primary, #ece8f7);
}
.solution-category-head p {
    margin: 0; color: var(--text-secondary, #b0a8cd); font-size: 0.92rem;
}
@media (max-width: 600px) {
    .solution-category-head { flex-direction: column; text-align: center; gap: 12px; }
}

/* =====================================================
   VİDEOLAR SAYFASI (YouTube program içerikleri)
   ===================================================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.video-card {
    background: rgba(20, 14, 48, 0.6);
    border: 1px solid rgba(139, 125, 255, 0.16);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}
.video-card:hover {
    border-color: rgba(139, 125, 255, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(0,0,0,0.3);
}
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    background: #000;
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.video-info { padding: 18px 20px; }
.video-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--text-primary, #ece8f7);
    margin-bottom: 6px;
}
.video-info p {
    font-size: 0.86rem;
    color: var(--text-secondary, #b0a8cd);
    line-height: 1.5;
}
@media (max-width: 600px) {
    .videos-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   KVKK ONAY KUTUSU (iletişim formu)
   ===================================================== */
.form-consent { margin: 4px 0 18px; }
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary, #b0a8cd);
}
.consent-check input[type="checkbox"] {
    margin-top: 3px;
    width: 17px; height: 17px;
    flex-shrink: 0;
    accent-color: var(--accent-primary, #8b7dff);
    cursor: pointer;
}
.consent-check a {
    color: var(--accent-secondary, #b9acff);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.consent-check a:hover { color: var(--accent-primary, #8b7dff); }

/* Footer yasal linkler */
.footer-legal-links {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.footer-legal-links a {
    color: var(--text-secondary, #b0a8cd);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--accent-secondary, #b9acff); }
.footer-legal-links span { color: var(--text-muted, #7d7396); }

/* =====================================================
   MENÜ — çok seviyeli (alt kategoriler sağa açılır flyout)
   ===================================================== */
/* Üst kategori satırı (alt menüsü olan) */
.dropdown .has-submenu {
    position: relative;
}
.dropdown .has-submenu > .dropdown-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.dropdown .has-submenu > .dropdown-parent .submenu-arrow {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.2s;
}
.dropdown .has-submenu.open > .dropdown-parent {
    background: rgba(139,125,255,0.10);
    color: #fff;
}
.dropdown .has-submenu.open > .dropdown-parent .submenu-arrow {
    opacity: 1;
    transform: rotate(90deg);
}

/* İkinci seviye menü — MASAÜSTÜ: tıklayınca sağa açılır */
@media (min-width: 993px) {
.dropdown .submenu {
    position: absolute;
    top: -8px;
    left: 100%;
    min-width: 230px;
    background: var(--bg-tertiary, #1d1542);
    border: 1px solid rgba(139,125,255,0.2);
    border-radius: 12px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}
.dropdown .has-submenu.open > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.dropdown .submenu li { list-style: none; }
.dropdown .submenu li a {
    display: block;
    padding: 9px 18px;
    font-size: 0.88rem;
    color: var(--text-secondary, #b0a8cd);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.18s;
}
.dropdown .submenu li a:hover {
    background: rgba(139,125,255,0.12);
    color: var(--accent-secondary, #b9acff);
    padding-left: 22px;
}

/* Sağda yer kalmazsa sola aç (ekran taşmasını önle) */
.dropdown .has-submenu.flip-left > .submenu {
    left: auto;
    right: 100%;
    transform: translateX(-8px);
}
.dropdown .has-submenu.flip-left.open > .submenu {
    transform: translateX(0);
}
}

/* =====================================================
   MOBİL — çok seviyeli menü accordion (aşağı açılır, dokunmatik dostu)
   ===================================================== */
@media (max-width: 992px) {
    .nav-menu-centered .dropdown .has-submenu { position: static !important; }
    .nav-menu-centered .dropdown .has-submenu > .dropdown-parent {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 12px 8px 12px 18px !important;
        font-weight: 600 !important;
        color: var(--accent-secondary, #b9acff) !important;
        font-size: 0.92rem;
        cursor: pointer;
    }
    .nav-menu-centered .dropdown .has-submenu > .dropdown-parent .submenu-arrow {
        transition: transform 0.3s;
        font-size: 0.75rem;
    }
    .nav-menu-centered .dropdown .has-submenu.open > .dropdown-parent .submenu-arrow {
        transform: rotate(90deg);
    }
    /* Mobilde submenu: statik, accordion gibi aşağı açılır */
    .nav-menu-centered .dropdown .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: 0 !important;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-menu-centered .dropdown .has-submenu.open > .submenu {
        max-height: 800px;
    }
    .nav-menu-centered .dropdown .submenu li { list-style: none; }
    .nav-menu-centered .dropdown .submenu li a {
        display: block;
        padding: 10px 4px 10px 38px !important;
        font-size: 0.88rem;
        color: var(--text-secondary, #b0a8cd) !important;
        border-left: 2px solid rgba(139,125,255,0.3);
        margin-left: 22px;
        white-space: normal;
    }
    .nav-menu-centered .dropdown .submenu li a:hover {
        color: var(--accent-secondary, #b9acff) !important;
    }
}
