/* Temel Değişkenler */
:root {
    --primary: #0f172a;
    --accent: #3b82f6;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
.logo span { color: var(--accent); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a { text-decoration: none; color: var(--text-main); margin-left: 30px; font-weight: 500; font-size: 0.95rem; }
.nav-btn { background: var(--primary); color: white !important; padding: 10px 20px; border-radius: 8px; }

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #e0f2fe, #ffffff);
    text-align: center;
}

.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--primary); }
.highlight { color: var(--accent); }
.hero-content p { font-size: 1.25rem; color: var(--text-light); max-width: 700px; margin: 0 auto 30px; }

.btn { padding: 15px 35px; border-radius: 12px; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn.primary { background: var(--accent); color: white; margin-right: 15px; }
.btn.secondary { background: #e2e8f0; color: var(--primary); }

/* Stats */
.stats { padding: 40px 0; background: var(--primary); color: white; }
.stats .container { display: flex; justify-content: space-around; text-align: center; }
.stat-item strong { display: block; font-size: 2rem; color: var(--accent); }

/* Bento Grid */
.solutions-section { padding: 100px 0; background: var(--bg-light); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }

.bento-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
}

.bento-item {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.bento-item:hover { transform: translateY(-5px); }

.fixhub-main { grid-column: span 2; border-top: 5px solid var(--accent); }
.menura-main { grid-row: span 2; background: #fffbeb; border-top: 5px solid #f59e0b; }

.main-icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent); }
.badge { display: inline-block; padding: 5px 12px; background: #dbeafe; color: var(--accent); border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-bottom: 15px; }
.badge.yellow { background: #fef3c7; color: #b45309; }

.features { list-style: none; margin: 20px 0; }
.features li { margin-bottom: 8px; font-size: 0.9rem; }
.features i { color: #10b981; margin-right: 10px; }

.bento-link { font-weight: 700; text-decoration: none; color: var(--primary); border-bottom: 2px solid var(--accent); }

/* Footer */
footer { background: #020617; color: #94a3b8; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; text-decoration: none; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; text-align: center; font-size: 0.8rem; }

/* Mobil Uyum */
@media (max-width: 900px) {
    .bento-wrapper { grid-template-columns: 1fr; }
    .fixhub-main, .menura-main { grid-column: span 1; grid-row: span 1; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
}