/* --- HOCS CORE ENGINE STYLE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

/* TÜM ALT ÇİZGİLERİ VE VARSAYILANLARI KÖKTEN SİL */
* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    text-decoration: none !important; 
    border: none; outline: none;
    -webkit-tap-highlight-color: transparent;
}

:root { 
    --bg: #ffffff; --surface: #f5f5f7; --text: #1d1d1f; 
    --text-muted: #86868b; --accent: #0066cc; --border: #d2d2d7; 
}

body { 
    font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); 
    line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased; 
}

/* --- NAVIGASYON --- */
nav { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 15px 8%; background: rgba(255,255,255,0.8); 
    backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 1000; 
    border-bottom: 1px solid var(--border) !important; 
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #000 !important; cursor: pointer; }
.nav-logo img { height: 35px; border-radius: 4px; }
.nav-links a { color: #555; margin-left: 30px; font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover, .active-link { color: var(--accent) !important; }

/* --- BANNER YAPISI (Fixed Height & Background) --- */
.hero-banner { 
    position: relative; height: 550px; width: 100%; overflow: hidden; 
    display: flex; align-items: center; justify-content: center; background: #000;
}
.banner-img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.6; z-index: 1; transition: transform 1.5s ease;
}
.banner-overlay {
    position: relative; z-index: 2; color: #fff; text-align: center; padding: 0 8%;
}
.banner-overlay span { font-family: 'JetBrains Mono'; font-weight: 700; color: var(--accent); letter-spacing: 3px; font-size: 0.8rem; }
.banner-overlay h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -2px; line-height: 1; margin: 15px 0; }

/* --- HERO & METRICS --- */
.hero-simple { padding: 100px 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.metrics { display: flex; gap: 35px; margin: 30px 0; }
.m-item strong { display: block; font-size: 1.8rem; font-family: 'JetBrains Mono'; color: var(--text); }
.btn-primary { background: #000; color: #fff; padding: 16px 35px; border-radius: 10px; font-weight: 600; display: inline-block; cursor: pointer; }

/* --- TEAM GRID --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; padding: 50px 8%; }
.t-card { background: #fff; border: 1px solid var(--border) !important; padding: 40px; border-radius: 20px; text-align: center; }
.t-role { color: var(--accent); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-top: 10px; display: block; }

/* --- RESPONSIVE (MOBİL & TABLET) --- */
@media (max-width: 1024px) {
    .hero-simple { grid-template-columns: 1fr; text-align: center; padding: 60px 5%; }
    .metrics { justify-content: center; }
    .hero-banner { height: 400px; }
}
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 15px; }
    .nav-links a { margin: 0 10px; }
}

/* --- REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
