@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
/* ===================================================
   1. GENEL AYARLAR & CSS DEĞİŞKENLERİ
   =================================================== */
:root {
    /* Türk Mavisi Paleti */
    --primary: #30d5c8;
    --primary-hover: #4ecec3;
    --primary-light: #e0f7fa;
    --primary-dark: #006064;
    
    
    --dark: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;

    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 164, 180, 0.1);
    --shadow-lg: 0 20px 40px -15px rgba(0, 164, 180, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden; 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--dark);
    font-weight: 800;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ===================================================
   2. HERO SECTION & DASHBOARD PREVIEW
   =================================================== */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 20px 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 30px;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.hero .desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-item .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-item h4 {
    font-size: 15px;
    color: var(--dark);
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Dashboard Mockup */
.hero-mockup {
    flex: 1.1;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}
.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #f59e0b; }
.dots span:nth-child(3) { background: #10b981; }

.mockup-search {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dash-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title-sm {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

.badge-green {
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
}

.stat-big {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 4px;
}

.line-chart-svg {
    margin-top: 6px;
    height: 40px;
    width: 100%;
}

.pie-chart-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.donut-chart {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary) 0% 40%,
        #0284c7 40% 65%,
        #f59e0b 65% 85%,
        #cbd5e1 85% 100%
    );
    position: relative;
    flex-shrink: 0;
}

.donut-chart::after {
    content: "";
    position: absolute;
    inset: 10px;
    background: var(--bg-light);
    border-radius: 50%;
}

.chart-legend {
    list-style: none;
    font-size: 10px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chart-legend li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-1 { background: var(--primary); }
.dot-2 { background: #0284c7; }
.dot-3 { background: #f59e0b; }
.dot-4 { background: #cbd5e1; }

.map-illustration svg { width: 100%; height: 45px; }

.map-range {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    color: var(--text-muted);
}

.range-bar {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
}

.top-list {
    list-style: none;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.top-list li {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-main);
    padding-bottom: 2px;
    border-bottom: 1px dashed var(--border);
}

.top-list li:last-child { border-bottom: none; }
.top-list strong { color: var(--primary-hover); font-weight: 700; }

.dash-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.q-stat {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 8px 4px;
    text-align: center;
}

.q-stat strong {
    display: block;
    font-size: 13px;
    color: var(--primary-dark);
    font-weight: 800;
}

.q-stat span {
    font-size: 9px;
    color: var(--primary-dark);
    opacity: 0.8;
}

/* ===================================================
   3. MISSION & VISION SECTION
   =================================================== */
.mission-vision {
    background: linear-gradient(to bottom, #020617, #042f2e, #0f172a);
    color: #ffffff;
    
    /* Ekranı uçtan uca kaplamak yerine ortalanmış kutu boyutu */
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 40px;
    
    /* Kutu görünümü kazandıran kavis ve gölge */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.mv-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mv-content {
    flex: 1;
}

.mv-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(10px);
}

.mv-card .icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.icon-purple {
    background: rgba(0, 164, 180, 0.2);
    color: #4dd0e1;
    border: 1px solid rgba(0, 164, 180, 0.4);
}

.icon-indigo {
    background: rgba(14, 116, 144, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(14, 116, 144, 0.4);
}

.mv-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.mv-card p {
    font-size: 14px;
    color: #94a3b8;
}

/* ===================================================
   4. AKILLI SVG & İLLÜSTRASYON 
   =================================================== */
.character-illustration {
    flex: 1;
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ana Karakter Görselleri */
.character-illustration img,
.character-illustration svg {
    width: clamp(280px, 90%, 500px);
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.svg-placeholder-box {
    width: 100%;
    min-height: 260px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #94a3b8;
}

.svg-placeholder-box .text-icon {
    font-size: 48px;
    color: var(--primary);
}

/* ===================================================
   5. SERVICES SECTION (6 KART)
   =================================================== */
.services {
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.service-card .icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-svg-area {
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.card-svg-area img,
.card-svg-area svg {
    width: clamp(100px, 65%, 200px);
    height: auto;
    max-height: 130px;
    object-fit: contain;
    display: block;
}

.mini-svg-placeholder {
    background: var(--bg-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    width: 100%;
}

/* ===================================================
   6. STATS BAR SECTION
   =================================================== */
.stats {
    padding: 20px 20px 60px;
}

.stats-container {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}

.stat-item strong {
    font-size: 26px;
    color: var(--primary-dark);
    font-weight: 800;
    display: block;
}

.stat-item p {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 4px;
}

/* ===================================================
   7. TIMELINE SECTION
   =================================================== */
.timeline {
    padding: 40px 20px 80px;
}

.timeline-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border);
    z-index: 1;
}

.time-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.time-step .icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 3px solid var(--border);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.time-step .icon.active {
    background: var(--primary);
    border-color: var(--primary-light);
    color: #ffffff;
    box-shadow: 0 0 0 6px var(--primary-light);
}

.time-step .year {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.time-step h4 {
    font-size: 15px;
    color: var(--dark);
    margin-top: 4px;
}

/* ===================================================
   8. CTA BANNER SECTION
   =================================================== */
.cta {
    padding-bottom: 80px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-light), #e0f2fe);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cta-box .character-illustration {
    flex: 0.8;
}

.svg-placeholder-box.light {
    background: rgba(255, 255, 255, 0.6);
    border: 2px dashed var(--primary);
    color: var(--primary-dark);
}

.cta-text {
    flex: 1.2;
}

.cta-text h2 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

/* ===================================================
   9. MOBİL UYUM (RESPONSIVE)
   =================================================== */
@media (max-width: 992px) {
    .hero, .mv-wrapper, .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-line {
        display: none;
    }

    .timeline-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 30px; }
    .features-grid, .mv-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-icons { display: none; }
}

@media (max-width: 576px) {
    .dash-row { grid-template-columns: 1fr; }
    .dash-quick-stats { grid-template-columns: repeat(2, 1fr); }
    .mockup-search { display: none; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .timeline-wrapper { grid-template-columns: 1fr; }
}