/* ============================================
   EKOFATURA - DESIGN SYSTEM
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #1a3c5e;
    --color-primary-light: #2a5a8c;
    --color-primary-dark: #0f2a44;
    --color-accent: #1aab8a;
    --color-accent-light: #22d4aa;
    --color-accent-dark: #148f73;
    --color-teal: #16a1b8;
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-gray-50: #f8f9fb;
    --color-gray-100: #f1f3f5;
    --color-gray-200: #e2e6ea;
    --color-gray-300: #ced4da;
    --color-gray-400: #adb5bd;
    --color-gray-500: #7c8592;
    --color-gray-600: #5a6370;
    --color-gray-700: #3d4551;
    --color-gray-800: #252b33;
    --color-gray-900: #141920;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-teal) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,60,94,0.85) 0%, rgba(26,171,138,0.7) 100%);
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 30px rgba(26,171,138,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --header-height: 80px;
    --container-max: 1280px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-height); }
body { font-family: var(--font-secondary); color: var(--color-gray-800); line-height: 1.7; background: var(--color-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); font-weight: 700; line-height: 1.2; color: var(--color-primary); }

/* --- Container --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-size: 15px; font-weight: 600; border-radius: var(--radius-full); transition: var(--transition); white-space: nowrap; font-family: var(--font-primary); letter-spacing: 0.01em; }
.btn-primary { background: var(--gradient-accent); color: var(--color-white); box-shadow: 0 4px 15px rgba(26,171,138,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,171,138,0.4); }
.btn-outline { border: 2px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-white { background: var(--color-white); color: var(--color-primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }

/* --- Top Bar (Inner Pages) --- */
.top-bar {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
    height: 36px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}
.top-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    transition: color 0.2s;
}
.top-bar-item:hover {
    color: var(--color-white);
}
.top-bar-item svg, .top-bar-item i {
    width: 14px;
    height: 14px;
}
.top-bar-link {
    color: var(--color-accent-light);
    font-weight: 600;
    transition: color 0.2s;
}
.top-bar-link:hover {
    color: var(--color-white);
}
.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}
.has-topbar .header {
    top: 36px;
}
.has-topbar .fp-hero,
.has-topbar .contact-hero,
.has-topbar .legal-hero,
.has-topbar .about-hero,
.has-topbar .faq-hero,
.has-topbar .partner-hero {
    padding-top: 176px;
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .has-topbar .header { top: 0; }
    .has-topbar .fp-hero,
    .has-topbar .contact-hero,
    .has-topbar .legal-hero,
    .has-topbar .about-hero,
    .has-topbar .faq-hero,
    .has-topbar .partner-hero {
        padding-top: 140px;
    }
}

/* --- Header --- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); height: var(--header-height); display: flex; align-items: center; }
.header::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); opacity: 0; transition: var(--transition); }
.header.scrolled::before { opacity: 1; }
.header.inner-page::before { opacity: 1; }
.header-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; width: 100%; position: relative; z-index: 2; }
.header-logo img { height: 44px; width: auto; transition: var(--transition); }
.logo-light { display: block; }
.logo-dark { display: none; }
.header.scrolled .logo-light { display: none; }
.header.scrolled .logo-dark { display: block; }

/* Nav */
.header-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 18px; font-size: 15px; font-weight: 500; color: var(--color-white); border-radius: var(--radius-full); transition: var(--transition); font-family: var(--font-primary); }
.header.scrolled .nav-link { color: var(--color-gray-700); }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.15); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { background: var(--color-gray-100); color: var(--color-primary); }
.nav-arrow { width: 16px; height: 16px; transition: var(--transition); }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.search-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); transition: var(--transition); }
.header.scrolled .search-btn { color: var(--color-gray-600); }
.search-btn:hover { background: rgba(255,255,255,0.15); }
.header.scrolled .search-btn:hover { background: var(--color-gray-100); }
.search-btn svg { width: 20px; height: 20px; }
.btn-outline-header { padding: 9px 22px; font-size: 14px; font-weight: 600; border: 2px solid rgba(255,255,255,0.6); color: var(--color-white); border-radius: var(--radius-full); font-family: var(--font-primary); }
.btn-outline-header:hover { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }
.header.scrolled .btn-outline-header { border-color: var(--color-primary); color: var(--color-primary); }
.header.scrolled .btn-outline-header:hover { background: var(--color-primary); color: var(--color-white); }
.btn-primary-header { padding: 9px 22px; font-size: 14px; font-weight: 600; background: #20b2a0; color: var(--color-white); border-radius: var(--radius-full); font-family: var(--font-primary); }
.btn-primary-header:hover { background: #1a9e8e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(32,178,160,0.35); }
.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--color-white); border-radius: 2px; transition: var(--transition); }
.header.scrolled .hamburger span { background: var(--color-gray-700); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mega Dropdown */
.mega-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 860px; background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid var(--color-gray-200); opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px); transition: var(--transition); padding: 0; pointer-events: none; }
.has-dropdown:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.mega-dropdown-inner { display: grid; grid-template-columns: 240px 1fr 1fr 1fr; }
.mega-dropdown-image { background: var(--gradient-primary); border-radius: var(--radius-lg) 0 0 var(--radius-lg); padding: 32px; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.mega-dropdown-image::before { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; background: rgba(26,171,138,0.3); border-radius: 50%; }
.mega-dropdown-image::after { content: ''; position: absolute; bottom: -20px; left: -20px; width: 80px; height: 80px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.mega-image-content { position: relative; z-index: 2; }
.mega-image-badge { display: inline-block; padding: 4px 12px; background: var(--color-accent); color: var(--color-white); font-size: 12px; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 12px; }
.mega-image-content h3 { color: var(--color-white); font-size: 20px; margin-bottom: 8px; line-height: 1.3; }
.mega-image-content p { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 16px; }
.mega-image-link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-accent-light); font-size: 14px; font-weight: 600; }
.mega-image-link:hover { gap: 10px; }
.mega-image-link svg { width: 16px; height: 16px; }
.mega-dropdown-col { padding: 28px 24px; }
.mega-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-gray-400); margin-bottom: 16px; }
.mega-links li { margin-bottom: 4px; }
.mega-links a { display: block; padding: 8px 12px; font-size: 14px; color: var(--color-gray-700); border-radius: var(--radius-sm); transition: var(--transition); font-weight: 500; }
.mega-links a:hover { background: var(--color-gray-50); color: var(--color-primary); transform: translateX(4px); }

/* Search Overlay */
.search-overlay { position: fixed; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 9999; padding: 0 24px; display: flex; align-items: center; height: 80px; opacity: 0; visibility: hidden; transform: translateY(-100%); transition: var(--transition); }
.search-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-overlay-inner { max-width: var(--container-max); margin: 0 auto; width: 100%; }
.search-form { display: flex; align-items: center; gap: 16px; }
.search-icon { width: 24px; height: 24px; color: var(--color-gray-400); flex-shrink: 0; }
.search-input { flex: 1; border: none; outline: none; font-size: 20px; color: var(--color-gray-800); background: transparent; font-weight: 500; }
.search-input::placeholder { color: var(--color-gray-400); }
.search-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-gray-200); border-radius: 50%; color: var(--color-gray-600); transition: var(--transition); flex-shrink: 0; }
.search-close:hover { background: var(--color-gray-100); }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: var(--color-white); z-index: 9998; opacity: 0; visibility: hidden; transform: translateX(100%); transition: var(--transition); overflow-y: auto; }
.mobile-menu.active { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-menu-inner { padding: 24px; min-height: 100vh; display: flex; flex-direction: column; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-gray-200); border-radius: 50%; }
.mobile-nav { flex: 1; }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-size: 18px; font-weight: 600; color: var(--color-gray-800); border-bottom: 1px solid var(--color-gray-100); font-family: var(--font-primary); }
.mobile-nav-link svg { width: 20px; height: 20px; transition: var(--transition); }
.mobile-nav-link.open svg { transform: rotate(180deg); }
.mobile-submenu { display: none; padding: 8px 0 16px 0; }
.mobile-submenu.active { display: block; }
.mobile-submenu-group { margin-bottom: 16px; }
.mobile-submenu-group h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-gray-400); margin-bottom: 8px; padding-left: 12px; }
.mobile-submenu-group a { display: block; padding: 10px 12px; font-size: 15px; color: var(--color-gray-600); border-radius: var(--radius-sm); font-weight: 500; }
.mobile-submenu-group a:hover { background: var(--color-gray-50); color: var(--color-primary); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid var(--color-gray-200); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--color-primary-dark); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,42,68,0.82) 0%, rgba(26,60,94,0.65) 50%, rgba(26,171,138,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--container-max); margin: 0 auto; padding: 140px 24px 100px; width: 100%; }
.hero-text { max-width: 650px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); color: var(--color-white); font-size: 14px; font-weight: 500; margin-bottom: 28px; animation: fadeInUp 0.6s ease; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--color-accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: var(--color-white); line-height: 1.1; margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s both; }
.hero-title span { color: var(--color-accent-light); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 40px; line-height: 1.7; animation: fadeInUp 0.6s ease 0.2s both; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-buttons .btn-primary { padding: 16px 36px; font-size: 16px; }
.hero-buttons .btn-outline-white { padding: 16px 36px; font-size: 16px; border: 2px solid rgba(255,255,255,0.4); color: var(--color-white); border-radius: var(--radius-full); font-weight: 600; font-family: var(--font-primary); }
.hero-buttons .btn-outline-white:hover { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; animation: fadeInUp 0.6s ease 0.4s both; }
.hero-stat { text-align: left; }
.hero-stat-number { font-size: 32px; font-weight: 800; color: var(--color-white); font-family: var(--font-primary); }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Feature Cards Row (below hero) */
.hero-features { position: relative; z-index: 3; margin-top: -60px; padding: 0 24px; }
.hero-features .container { max-width: var(--container-max); margin: 0 auto; }
.hero-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hero-feature-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); border: 1px solid var(--color-gray-100); transition: var(--transition); position: relative; overflow: hidden; }
.hero-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.hero-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); opacity: 0; transition: var(--transition); }
.hero-feature-card:hover::before { opacity: 1; }
.feature-card-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(26,171,138,0.1), rgba(22,161,184,0.1)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--color-accent); }
.feature-card-icon svg { width: 26px; height: 26px; }
.hero-feature-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--color-primary); }
.hero-feature-card p { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section { padding: 100px 0; }
.section-gray { background: var(--color-gray-50); }
.section-dark { background: var(--color-primary); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; background: rgba(26,171,138,0.08); border: 1px solid rgba(26,171,138,0.15); border-radius: var(--radius-full); color: var(--color-accent); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--color-gray-500); line-height: 1.7; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-item { background: var(--color-white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--color-gray-100); transition: var(--transition); position: relative; overflow: hidden; }
.feature-item:hover { border-color: rgba(26,171,138,0.3); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.feature-icon.icon-blue { background: linear-gradient(135deg, #e8f4fd, #d1ecf9); color: var(--color-primary-light); }
.feature-icon.icon-green { background: linear-gradient(135deg, #e6f9f1, #ccf2e1); color: var(--color-accent); }
.feature-icon.icon-teal { background: linear-gradient(135deg, #e5f6f8, #cceff3); color: var(--color-teal); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-item h3 { font-size: 19px; margin-bottom: 10px; }
.feature-item p { font-size: 15px; color: var(--color-gray-500); line-height: 1.7; }

/* ============================================
   ÖZELLİKLER PAGE - PREMIUM ROWS
   ============================================ */
.oz-feature-section { padding: 120px 0; border-bottom: 1px solid var(--color-gray-100); }
.oz-feature-section.bg-white { background-color: var(--color-white); }
.oz-feature-section.bg-gray-alt { background-color: #f4f6f9; } /* Slightly different gray for clear separation */
.oz-image-wrapper { max-width: 70%; margin: 0 auto; }
.fp-hero-grid.reverse .fp-hero-content { order: 2 !important; }
.fp-hero-grid.reverse .fp-hero-visual { order: 1 !important; }
@media (max-width: 991px) {
    .fp-hero-grid.reverse .fp-hero-content, .fp-hero-grid.reverse .fp-hero-visual { order: unset !important; }
    .oz-feature-section { padding: 80px 0; }
    .oz-image-wrapper { max-width: 90%; }
}

/* ============================================
   SECTORS SECTION
   ============================================ */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sector-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 320px; cursor: pointer; transition: var(--transition); }
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.sector-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.sector-card:hover img { transform: scale(1.05); }
.sector-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,42,68,0.9) 0%, rgba(15,42,68,0.2) 60%, transparent 100%); display: flex; align-items: flex-end; padding: 28px; }
.sector-card-content h3 { color: var(--color-white); font-size: 18px; margin-bottom: 4px; }
.sector-card-content p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--color-white); border-radius: var(--radius-xl); padding: 44px; border: 2px solid var(--color-gray-200); transition: var(--transition); position: relative; overflow: hidden; }
.pricing-card.featured { border-color: var(--color-accent); }
.pricing-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-accent); }
.pricing-badge { position: absolute; top: 20px; right: 20px; padding: 4px 14px; background: var(--color-accent); color: var(--color-white); font-size: 12px; font-weight: 700; border-radius: var(--radius-full); }
.pricing-card h3 { font-size: 24px; margin-bottom: 8px; }
.pricing-card .pricing-desc { font-size: 14px; color: var(--color-gray-500); margin-bottom: 32px; }

/* Toggle switch & payment label */
.pricing-payment-label { display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--color-accent); height: 28px; margin-bottom: 28px; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; }
.pricing-toggle span { font-size: 14px; font-weight: 600; color: var(--color-gray-500); transition: var(--transition); }
.pricing-toggle span.active { color: var(--color-primary); }
.toggle-switch { position: relative; width: 52px; height: 28px; background: var(--color-gray-300); border-radius: var(--radius-full); cursor: pointer; transition: var(--transition); }
.toggle-switch.active { background: var(--color-accent); }
.toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: var(--color-white); border-radius: 50%; transition: var(--transition); box-shadow: var(--shadow-sm); }
.toggle-switch.active::after { left: 27px; }

.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.pricing-currency { font-size: 20px; font-weight: 700; color: var(--color-primary); }
.pricing-value { font-size: 48px; font-weight: 800; color: var(--color-primary); font-family: var(--font-primary); line-height: 1; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease; }
.pricing-value.price-animate-out { transform: translateY(-20px); opacity: 0; }
.pricing-value.price-animate-in { transform: translateY(20px); opacity: 0; }
.pricing-suffix { display: flex; flex-direction: row; align-items: baseline; gap: 4px; align-self: flex-end; margin-left: 4px; margin-bottom: 6px; }
.pricing-period { font-size: 15px; color: var(--color-gray-400); font-weight: 500; transition: opacity 0.3s ease; }
.pricing-tax { font-size: 15px; color: var(--color-gray-400); }
.pricing-bonus { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.15); border-radius: var(--radius-full); color: var(--color-success); font-size: 13px; font-weight: 600; margin-bottom: 28px; }
.pricing-bonus svg { width: 16px; height: 16px; }
.pricing-bonus.bonus-enter { animation: bonusBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.pricing-bonus.bonus-exit { animation: bonusFadeOut 0.3s ease forwards; }
@keyframes bonusBounceIn {
    0% { opacity: 0; transform: scale(0.3) translateY(10px); }
    50% { opacity: 1; transform: scale(1.08) translateY(-2px); }
    70% { transform: scale(0.95) translateY(0); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes bonusFadeOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8) translateY(8px); }
}
.pricing-features { margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 14px; color: var(--color-gray-600); }
.pricing-features li svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }
.pricing-features li.disabled { color: var(--color-gray-400); }
.pricing-features li.disabled svg { color: var(--color-gray-300); }
.pricing-trial { text-align: center; font-size: 13px; color: var(--color-gray-400); margin-top: 16px; }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-gray-100); transition: var(--transition); }
.blog-card:hover { border-color: rgba(26,171,138,0.2); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image { height: 220px; overflow: hidden; position: relative; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category { position: absolute; top: 8px; left: 8px; padding: 3px 10px; background: var(--color-accent); color: var(--color-white); font-size: 10px; font-weight: 600; border-radius: var(--radius-lg); }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--color-gray-400); margin-bottom: 12px; }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-meta svg { width: 14px; height: 14px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--color-accent); }
.blog-card p { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--color-accent); }
.blog-card-link:hover { gap: 10px; }
.blog-card-link svg { width: 16px; height: 16px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 100px 0; background: var(--gradient-primary); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(26,171,138,0.15); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-content { text-align: center; position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(28px, 4vw, 40px); color: var(--color-white); margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--color-gray-900); color: var(--color-gray-400); }
.footer-top { padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 40px; width: auto; }
.footer-slogan { font-size: 16px; font-weight: 600; color: var(--color-accent-light); margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; color: var(--color-gray-500); }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--color-gray-700); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-link:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-white); }
.social-link svg { width: 18px; height: 18px; }
.footer-col-title { font-size: 14px; font-weight: 700; color: var(--color-white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--color-gray-500); transition: var(--transition); }
.footer-links a:hover { color: var(--color-accent-light); transform: translateX(4px); display: inline-block; }
.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }
.footer-contact a:hover { color: var(--color-accent-light); }
.footer-cta { margin-top: 24px; }
/* Footer App Download */
.footer-app {
    border-top: 1px solid var(--color-gray-800);
    padding: 40px 0;
}
.footer-app-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.footer-app-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}
.footer-app-text p {
    font-size: 14px;
    color: var(--color-gray-500);
}
.footer-app-badges {
    display: flex;
    gap: 12px;
}
.footer-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gray-800);
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-lg);
    padding: 10px 20px;
    color: var(--color-white);
    transition: all 0.3s;
}
.footer-app-badge:hover {
    background: var(--color-gray-700);
    border-color: var(--color-gray-600);
}
.footer-app-badge svg, .footer-app-badge i {
    width: 24px;
    height: 24px;
}
.footer-app-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-app-badge-text small {
    font-size: 10px;
    color: var(--color-gray-400);
    font-weight: 500;
}
.footer-app-badge-text strong {
    font-size: 15px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .footer-app-inner { flex-direction: column; text-align: center; }
    .footer-app-badges { justify-content: center; }
}
@media (max-width: 480px) {
    .footer-app-badges { flex-direction: column; align-items: center; }
    .footer-app-badge { width: 200px; justify-content: center; }
}

.footer-bottom { border-top: 1px solid var(--color-gray-800); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.copyright { font-size: 14px; }
.footer-bottom .footer-app-badges { gap: 8px; }
.footer-bottom .footer-app-badge { padding: 6px 14px; border-radius: var(--radius-md); }
.footer-bottom .footer-app-badge svg, .footer-bottom .footer-app-badge i { width: 18px; height: 18px; }
.footer-bottom .footer-app-badge-text small { font-size: 8px; }
.footer-bottom .footer-app-badge-text strong { font-size: 12px; }

/* ============================================
   BACK TO TOP & COOKIE
   ============================================ */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary); color: var(--color-white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 99; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-accent); transform: translateY(-4px); }
.back-to-top svg { width: 22px; height: 22px; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-white); border-top: 1px solid var(--color-gray-200); padding: 20px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); z-index: 998; transform: translateY(100%); transition: var(--transition); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { max-width: var(--container-max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-content p { font-size: 14px; color: var(--color-gray-600); }
.cookie-content a { color: var(--color-accent); font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-us-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.why-us-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.why-us-image::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; background: var(--gradient-accent); border-radius: var(--radius-xl); z-index: -1; opacity: 0.3; }
.why-us-list { display: flex; flex-direction: column; gap: 24px; }
.why-us-item { display: flex; gap: 20px; padding: 20px; border-radius: var(--radius-md); transition: var(--transition); }
.why-us-item:hover { background: var(--color-gray-50); }
.why-us-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(26,171,138,0.1), rgba(22,161,184,0.1)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-accent); }
.why-us-icon svg { width: 24px; height: 24px; }
.why-us-item h3 { font-size: 17px; margin-bottom: 6px; }
.why-us-item p { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; }

/* ============================================
   KONTÖR CARDS
   ============================================ */
.kontor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.kontor-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-gray-200);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.kontor-card:hover {
    border-color: rgba(26,171,138,0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.kontor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}
.kontor-card:hover::before {
    opacity: 1;
}
.kontor-card-adet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(26,60,94,0.06), rgba(26,171,138,0.06));
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}
.kontor-card-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-primary);
    margin-bottom: 6px;
    line-height: 1;
}
.kontor-card-birim {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: rgba(26,171,138,0.08);
    color: var(--color-accent);
    font-weight: 700;
    border-radius: var(--radius-full);
    font-size: 14px;
    margin-top: 12px;
}
.kontor-card-label {
    font-size: 13px;
    color: var(--color-gray-400);
    margin-top: 4px;
}
.kontor-card.popular {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}
.kontor-card.popular::before {
    opacity: 1;
}
.kontor-card.popular .kontor-card-birim {
    background: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}
.error-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.error-visual {
    margin-bottom: 32px;
}
.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.error-digit {
    font-size: clamp(80px, 15vw, 140px);
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--color-primary);
    line-height: 1;
    animation: errorBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay, 0s) both;
}
.error-zero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 15vw, 140px);
    height: clamp(80px, 15vw, 140px);
    font-size: 0;
}
.error-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.error-circle circle {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 8;
    stroke-linecap: round;
    animation: errorCircleDraw 1.2s ease 0.4s both;
}
.error-icon {
    width: clamp(28px, 5vw, 44px);
    height: clamp(28px, 5vw, 44px);
    color: var(--color-accent);
    animation: errorFloat 3s ease-in-out infinite 1.2s;
}
.error-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: var(--font-primary);
    animation: fadeInUp 0.6s ease 0.5s both;
}
.error-desc {
    font-size: 16px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.6s both;
}
.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.7s both;
}
.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.error-actions .btn i,
.error-actions .btn svg {
    width: 18px;
    height: 18px;
}
.error-actions .btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 16px rgba(26,171,138,0.3);
}
.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26,171,138,0.4);
}
.error-actions .btn-outline {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-gray-200);
}
.error-actions .btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}
.error-suggestions {
    animation: fadeInUp 0.6s ease 0.8s both;
}
.error-suggestions-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.error-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.error-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
}
.error-link-card:hover {
    border-color: rgba(26,171,138,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.error-link-card i,
.error-link-card svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}
.error-link-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
}
.error-link-card:hover span {
    color: var(--color-accent);
}
/* BG Decorations */
.error-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.error-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.error-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    top: -150px;
    right: -100px;
    animation: errorFloat 8s ease-in-out infinite;
}
.error-shape-2 {
    width: 350px;
    height: 350px;
    background: var(--color-primary);
    bottom: -80px;
    left: -100px;
    animation: errorFloat 10s ease-in-out infinite 1s;
}
.error-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    top: 40%;
    left: 10%;
    animation: errorFloat 7s ease-in-out infinite 2s;
}
@keyframes errorBounceIn {
    0% { opacity: 0; transform: scale(0.3) translateY(40px); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes errorCircleDraw {
    from { stroke-dashoffset: 340; }
    to { stroke-dashoffset: 0; }
}
@keyframes errorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .btn-outline-header, .btn-primary-header { display: none; }
    .hamburger { display: flex; }
    .mega-dropdown { display: none; }
    .hero-features-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
    .kontor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 68px; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .hero-content { padding: 120px 24px 80px; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .hero-stat-number { font-size: 24px; }
    .hero-features-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .kontor-grid { grid-template-columns: 1fr; }
    .error-links { grid-template-columns: repeat(2, 1fr); }
    .error-actions { flex-direction: column; }
    .error-actions .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom .footer-app-badges { justify-content: center; }
    .cookie-content { flex-direction: column; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline-white { width: 100%; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .blog-detail-layout { grid-template-columns: 1fr; }
    .blog-detail-sidebar { order: -1; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .sectors-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 28px; }
    .pricing-value { font-size: 38px; }
    .blog-features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ÖZELLİKLER HERO
   ============================================ */

.ozellikler-hero {
    padding: 140px 0 60px;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('/images/ozellikler-breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ozellikler-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,60,94,0.88) 0%, rgba(42,90,140,0.80) 100%);
    z-index: 0;
}
.ozellikler-hero .container {
    position: relative;
    z-index: 1;
}
.ozellikler-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.ozellikler-hero-content .section-badge {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border-color: rgba(255,255,255,0.2);
}
.ozellikler-hero h1 {
    font-size: clamp(32px, 4.5vw, 42px);
    font-weight: 800;
    color: var(--color-white);
    margin: 20px 0 16px;
    line-height: 1.2;
}
.ozellikler-hero h1 span {
    color: var(--color-accent);
}
.ozellikler-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   BLOG PAGES
   ============================================ */

/* --- Blog Hero --- */
.blog-hero {
    padding: 140px 0 60px;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('/images/blog-breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,60,94,0.88) 0%, rgba(42,90,140,0.80) 100%);
    z-index: 0;
}
.blog-hero .container {
    position: relative;
    z-index: 1;
}
.blog-hero-content .section-badge {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
}
.blog-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-white);
    margin: 20px 0 16px;
    line-height: 1.2;
}
.blog-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Blog List Grid --- */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .blog-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-list-grid { grid-template-columns: 1fr; }
    .blog-hero h1 { font-size: 28px; }
    .blog-hero { padding: 120px 0 40px; }
}

/* --- Blog Detail Hero / Breadcrumb --- */
.blog-detail-hero {
    padding: 120px 0 24px;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-100);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-gray-400);
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--color-gray-500);
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--color-accent);
}
.breadcrumb svg {
    width: 14px;
    height: 14px;
    color: var(--color-gray-300);
}
.breadcrumb span {
    color: var(--color-gray-700);
    font-weight: 500;
}

/* --- Blog Detail Section --- */
.blog-detail-section {
    padding: 48px 0 80px;
}
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* --- Blog Detail Content --- */
.blog-detail-content {
    min-width: 0;
}
.blog-detail-header {
    margin-bottom: 32px;
}
.blog-detail-category {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(26,171,138,0.1);
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.blog-detail-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1.3;
    margin-bottom: 24px;
}
.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}
.author-avatar svg {
    width: 20px;
    height: 20px;
}
.author-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-gray-800);
}
.author-date {
    display: block;
    font-size: 13px;
    color: var(--color-gray-400);
}
.blog-detail-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-gray-400);
}
.blog-detail-info svg {
    width: 16px;
    height: 16px;
}

/* --- Blog Detail Image --- */
.blog-detail-image {
    margin-bottom: 36px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
}
.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Blog Detail Body --- */
.blog-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-700);
}
.blog-detail-body .blog-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--color-gray-800);
    font-weight: 400;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-100);
}
.blog-detail-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 40px 0 16px;
    line-height: 1.3;
}
.blog-detail-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gray-800);
    margin: 32px 0 12px;
}
.blog-detail-body p {
    margin-bottom: 18px;
}
.blog-detail-body ul,
.blog-detail-body ol {
    margin: 16px 0 24px 0;
    padding-left: 24px;
}
.blog-detail-body li {
    margin-bottom: 10px;
    padding-left: 4px;
    line-height: 1.7;
}
.blog-detail-body ul li {
    list-style-type: disc;
}
.blog-detail-body ol li {
    list-style-type: decimal;
}
.blog-detail-body strong {
    font-weight: 600;
    color: var(--color-gray-800);
}

/* --- Blog Highlight Box --- */
.blog-highlight {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(26,171,138,0.06);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 28px 0;
}
.blog-highlight > svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.blog-highlight strong {
    display: block;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 6px;
}
.blog-highlight p {
    margin: 0;
    font-size: 15px;
    color: var(--color-gray-600);
}

/* --- Blog Features Grid --- */
.blog-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}
.blog-feature-item {
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-100);
    transition: var(--transition);
}
.blog-feature-item:hover {
    border-color: rgba(26,171,138,0.2);
    box-shadow: var(--shadow-md);
}
.blog-feature-item svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.blog-feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 8px;
}
.blog-feature-item p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* --- Blog Table --- */
.blog-table-wrapper {
    overflow-x: auto;
    margin: 28px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-100);
}
.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.blog-table th,
.blog-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-100);
}
.blog-table th {
    background: var(--color-gray-50);
    font-weight: 600;
    color: var(--color-gray-800);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.blog-table td {
    color: var(--color-gray-600);
}
.blog-table tr:last-child td {
    border-bottom: none;
}
.blog-table tr:hover td {
    background: rgba(26,171,138,0.03);
}

/* --- Blog CTA Box --- */
.blog-cta-box {
    margin: 40px 0 24px;
    padding: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    text-align: center;
}
.blog-cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white) !important;
    margin: 0 0 12px !important;
}
.blog-cta-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.blog-cta-box .btn {
    background: var(--gradient-accent);
    border: none;
}

/* --- Blog Share --- */
.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    margin-top: 32px;
    border-top: 1px solid var(--color-gray-100);
}
.blog-detail-share > span {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-gray-700);
}
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    transition: var(--transition);
}
.share-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}
.share-btn svg {
    width: 18px;
    height: 18px;
}

/* --- Blog Sidebar --- */
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gray-100);
}
.sidebar-cta {
    background: var(--gradient-primary);
    border: none;
}
.sidebar-cta h4 {
    color: var(--color-white);
    border-bottom-color: rgba(255,255,255,0.15);
}
.sidebar-cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.sidebar-cta .btn {
    background: var(--gradient-accent);
    border: none;
}

/* --- Sidebar Categories --- */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-categories li {
    margin-bottom: 0;
}
.sidebar-categories a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-gray-600);
    border-bottom: 1px solid var(--color-gray-50);
    transition: var(--transition);
}
.sidebar-categories a:hover {
    color: var(--color-accent);
}
.sidebar-categories svg {
    width: 16px;
    height: 16px;
    color: var(--color-gray-300);
}
.sidebar-categories span {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-400);
    background: var(--color-gray-50);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}
.sidebar-categories li:last-child a {
    border-bottom: none;
}

/* --- Sidebar Posts --- */
.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-post {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.sidebar-post:hover {
    background: var(--color-gray-50);
}
.sidebar-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.sidebar-post h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: var(--transition);
}
.sidebar-post:hover h5 {
    color: var(--color-accent);
}
.sidebar-post span {
    font-size: 12px;
    color: var(--color-gray-400);
}

/* --- Blog Detail Responsive --- */
@media (max-width: 992px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
    .blog-detail-sidebar {
        position: static;
        order: 2;
    }
    .blog-detail-header h1 {
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    .blog-detail-hero {
        padding: 100px 0 20px;
    }
    .blog-detail-header h1 {
        font-size: 24px;
    }
    .blog-detail-body h2 {
        font-size: 20px;
    }
    .blog-detail-body .blog-lead {
        font-size: 16px;
    }
    .blog-features-grid {
        grid-template-columns: 1fr;
    }
    .blog-cta-box {
        padding: 28px 20px;
    }
    .blog-detail-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   FEATURE PAGES - MODERN REDESIGN
   ============================================ */

/* --- Feature Hero (Inner Pages) --- */
.fp-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #eef4f9 50%, rgba(26,171,138,0.05) 100%);
    position: relative;
    overflow: hidden;
}
.fp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,171,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.fp-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,60,94,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.fp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.fp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(26,171,138,0.08);
    border: 1px solid rgba(26,171,138,0.15);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.fp-hero-badge i, .fp-hero-badge svg {
    width: 16px;
    height: 16px;
}
.fp-hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.fp-hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fp-hero-desc {
    font-size: 17px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.fp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.fp-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.fp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-gray-500);
    font-weight: 500;
}
.fp-hero-trust-item i, .fp-hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}
.fp-hero-visual {
    position: relative;
}
.fp-hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,60,94,0.15);
}
.fp-hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.fp-hero-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 2;
    pointer-events: none;
}
.fp-hero-float-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 1px solid var(--color-gray-100);
}
.fp-hero-float-card.card-top {
    top: -20px;
    right: -20px;
}
.fp-hero-float-card.card-bottom {
    bottom: -20px;
    left: -20px;
}
.fp-float-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fp-float-icon.icon-green {
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.2));
    color: var(--color-success);
}
.fp-float-icon.icon-blue {
    background: linear-gradient(135deg, rgba(26,60,94,0.08), rgba(42,90,140,0.15));
    color: var(--color-primary-light);
}
.fp-float-icon.icon-accent {
    background: linear-gradient(135deg, rgba(26,171,138,0.08), rgba(26,171,138,0.18));
    color: var(--color-accent);
}
.fp-float-icon svg, .fp-float-icon i {
    width: 22px;
    height: 22px;
}
.fp-float-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}
.fp-float-text span {
    font-size: 12px;
    color: var(--color-gray-400);
}

/* --- Stats Bar --- */
.fp-stats {
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -40px;
}
.fp-stats-inner {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-100);
    padding: 32px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.fp-stat-item {
    text-align: center;
    position: relative;
}
.fp-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--color-gray-200);
}
.fp-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.fp-stat-number span {
    color: var(--color-accent);
}
.fp-stat-label {
    font-size: 13px;
    color: var(--color-gray-500);
    font-weight: 500;
}

/* --- Feature Cards Enhanced --- */
.fp-features {
    padding: 100px 0;
    background: var(--color-gray-50);
}
.fp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.fp-features-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.fp-feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--color-gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.fp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fp-feature-card:hover::before {
    transform: scaleX(1);
}
.fp-feature-card:hover {
    border-color: rgba(26,171,138,0.2);
    box-shadow: 0 12px 40px rgba(26,60,94,0.08);
    transform: translateY(-4px);
}
.fp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.fp-feature-icon.icon-1 { background: linear-gradient(135deg, rgba(26,171,138,0.1), rgba(22,161,184,0.15)); color: var(--color-accent); }
.fp-feature-icon.icon-2 { background: linear-gradient(135deg, rgba(26,60,94,0.08), rgba(42,90,140,0.12)); color: var(--color-primary-light); }
.fp-feature-icon.icon-3 { background: linear-gradient(135deg, rgba(22,161,184,0.1), rgba(26,171,138,0.1)); color: var(--color-teal); }
.fp-feature-icon.icon-4 { background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.15)); color: #22c55e; }
.fp-feature-icon.icon-5 { background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.15)); color: #f59e0b; }
.fp-feature-icon.icon-6 { background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(139,92,246,0.15)); color: #8b5cf6; }
.fp-feature-icon svg, .fp-feature-icon i {
    width: 26px;
    height: 26px;
}
.fp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary);
}
.fp-feature-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* --- Content Split Sections --- */
.fp-content {
    padding: 100px 0;
}
.fp-content.bg-gray {
    background: var(--color-gray-50);
}
.fp-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.fp-content-grid.reverse .fp-content-text {
    order: 2;
}
.fp-content-grid.reverse .fp-content-visual {
    order: 1;
}
.fp-content-text .section-badge {
    margin-bottom: 16px;
}
.fp-content-text h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.fp-content-text > p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}
.fp-content-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.fp-content-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.fp-content-list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(26,171,138,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.fp-content-list-icon svg, .fp-content-list-icon i {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}
.fp-content-list-item span {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.5;
}
.fp-content-list-item strong {
    color: var(--color-gray-800);
}
.fp-content-visual {
    position: relative;
}
.fp-content-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.fp-content-img img {
    width: 100%;
    height: auto;
    display: block;
}
.fp-content-img::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}
.fp-content-grid.reverse .fp-content-img::after {
    right: auto;
    left: -12px;
}

/* --- Advantages Section --- */
.fp-advantages {
    padding: 100px 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.fp-advantages::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(26,171,138,0.1);
    border-radius: 50%;
    pointer-events: none;
}
.fp-advantages::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}
.fp-advantages .section-header {
    position: relative;
    z-index: 2;
}
.fp-advantages .section-badge {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: var(--color-accent-light);
}
.fp-advantages .section-header h2 {
    color: var(--color-white);
}
.fp-advantages .section-header p {
    color: rgba(255,255,255,0.7);
}
.fp-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.fp-advantage-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.fp-advantage-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}
.fp-advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(26,171,138,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-accent-light);
}
.fp-advantage-icon svg, .fp-advantage-icon i {
    width: 24px;
    height: 24px;
}
.fp-advantage-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}
.fp-advantage-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* --- FAQ Section --- */
.fp-faq {
    padding: 100px 0;
}
.fp-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fp-faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.fp-faq-item.active {
    border-color: rgba(26,171,138,0.3);
    box-shadow: 0 4px 20px rgba(26,60,94,0.06);
}
.fp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition);
}
.fp-faq-question:hover {
    background: var(--color-gray-50);
}
.fp-faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-800);
    margin: 0;
    flex: 1;
}
.fp-faq-item.active .fp-faq-question h3 {
    color: var(--color-primary);
}
.fp-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.fp-faq-item.active .fp-faq-toggle {
    background: rgba(26,171,138,0.1);
    color: var(--color-accent);
    transform: rotate(180deg);
}
.fp-faq-toggle svg, .fp-faq-toggle i {
    width: 18px;
    height: 18px;
    color: var(--color-gray-400);
}
.fp-faq-item.active .fp-faq-toggle svg,
.fp-faq-item.active .fp-faq-toggle i {
    color: var(--color-accent);
}
.fp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fp-faq-item.active .fp-faq-answer {
    max-height: 300px;
}
.fp-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* --- Modern CTA --- */
.fp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #eef4f9 100%);
}
.fp-cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fp-cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(26,171,138,0.15);
    border-radius: 50%;
    pointer-events: none;
}
.fp-cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.fp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
}
.fp-cta-content h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.fp-cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}
.fp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-light {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--color-white);
    background: transparent;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-primary);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* --- Related Features --- */
.fp-related {
    padding: 80px 0;
    background: var(--color-gray-50);
}
.fp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fp-related-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}
.fp-related-card:hover {
    border-color: rgba(26,171,138,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.fp-related-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(26,171,138,0.08), rgba(22,161,184,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-accent);
}
.fp-related-icon svg, .fp-related-icon i {
    width: 22px;
    height: 22px;
}
.fp-related-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 4px;
}
.fp-related-card:hover h4 {
    color: var(--color-accent);
}
.fp-related-card span {
    font-size: 13px;
    color: var(--color-gray-400);
}

/* --- Feature Page Responsive --- */
@media (max-width: 1024px) {
    .fp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .fp-hero-visual { max-width: 600px; margin: 0 auto; }
    .fp-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .fp-stat-item:nth-child(2)::after { display: none; }
    .fp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-features-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .fp-content-grid { grid-template-columns: 1fr; gap: 40px; }
    .fp-content-grid.reverse .fp-content-text { order: 1; }
    .fp-content-grid.reverse .fp-content-visual { order: 2; }
    .fp-advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-related-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-hero-float-card.card-top { top: 10px; right: 10px; }
    .fp-hero-float-card.card-bottom { bottom: 10px; left: 10px; }
}

@media (max-width: 768px) {
    .fp-hero { padding: 120px 0 60px; }
    .fp-hero-actions { flex-direction: column; }
    .fp-hero-actions .btn { width: 100%; }
    .fp-hero-trust { flex-direction: column; gap: 12px; }
    .fp-stats-inner { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 24px; }
    .fp-stat-item::after { display: none; }
    .fp-features-grid { grid-template-columns: 1fr; }
    .fp-advantages-grid { grid-template-columns: 1fr; }
    .fp-cta-box { padding: 40px 24px; }
    .fp-cta-buttons { flex-direction: column; align-items: center; }
    .fp-cta-buttons .btn { width: 100%; }
    .fp-related-grid { grid-template-columns: 1fr 1fr; }
    .fp-content-img::after { display: none; }
    .fp-hero-float-card { display: none; }
}

@media (max-width: 480px) {
    .fp-stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; padding: 20px; }
    .fp-related-grid { grid-template-columns: 1fr; }
    .fp-stat-number { font-size: 24px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* --- Contact Hero --- */
.contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #eef4f9 50%, rgba(26,171,138,0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,171,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,60,94,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
}
.contact-hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.15;
}
.contact-hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-hero-desc {
    font-size: 17px;
    color: var(--color-gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Contact Info Cards --- */
.contact-cards {
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -36px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-card:hover::before {
    transform: scaleX(1);
}
.contact-card:hover {
    border-color: rgba(26,171,138,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.contact-card-icon.icon-blue {
    background: linear-gradient(135deg, rgba(26,60,94,0.08), rgba(42,90,140,0.15));
    color: var(--color-primary-light);
}
.contact-card-icon.icon-green {
    background: linear-gradient(135deg, rgba(26,171,138,0.08), rgba(26,171,138,0.18));
    color: var(--color-accent);
}
.contact-card-icon.icon-teal {
    background: linear-gradient(135deg, rgba(22,161,184,0.08), rgba(22,161,184,0.18));
    color: var(--color-teal);
}
.contact-card-icon.icon-purple {
    background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(139,92,246,0.15));
    color: #8b5cf6;
}
.contact-card-icon svg, .contact-card-icon i {
    width: 26px;
    height: 26px;
}
.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.contact-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin: 0;
}
.contact-card a {
    color: var(--color-gray-600);
    transition: var(--transition);
    font-size: 14px;
}
.contact-card a:hover {
    color: var(--color-accent);
}

/* --- Contact Main Section --- */
.contact-section {
    padding: 80px 0 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 44px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-lg);
}
.contact-form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.contact-form-desc {
    font-size: 15px;
    color: var(--color-gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 8px;
    font-family: var(--font-primary);
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 13px 18px;
    font-size: 15px;
    color: var(--color-gray-800);
    background: var(--color-gray-50);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-family: var(--font-secondary);
    outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(26,171,138,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-gray-400);
}
.form-textarea {
    resize: vertical;
    min-height: 140px;
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c8592' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.form-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
    box-shadow: 0 4px 15px rgba(26,171,138,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,171,138,0.4);
}
.form-submit svg, .form-submit i {
    width: 20px;
    height: 20px;
}
.form-note {
    font-size: 13px;
    color: var(--color-gray-400);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}

/* --- Contact Info Side --- */
.contact-info-side {
    position: sticky;
    top: 100px;
}
.contact-info-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 44px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}
.contact-info-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(26,171,138,0.15);
    border-radius: 50%;
    pointer-events: none;
}
.contact-info-box::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.contact-info-box-content {
    position: relative;
    z-index: 2;
}
.contact-info-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
}
.contact-info-box > .contact-info-box-content > p:first-of-type {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item-icon svg, .contact-info-item-icon i {
    width: 20px;
    height: 20px;
    color: var(--color-accent-light);
}
.contact-info-item-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}
.contact-info-item-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}
.contact-info-item-text a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.contact-info-item-text a:hover {
    color: var(--color-accent-light);
}

/* Working Hours Box */
.contact-hours-box {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-md);
}
.contact-hours-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-hours-box h3 svg, .contact-hours-box h3 i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-50);
    font-size: 14px;
}
.hours-row:last-child {
    border-bottom: none;
}
.hours-day {
    color: var(--color-gray-700);
    font-weight: 500;
}
.hours-time {
    color: var(--color-gray-500);
    font-weight: 600;
}
.hours-time.closed {
    color: var(--color-danger);
}

/* --- Map Section --- */
.contact-map {
    padding: 0 0 100px;
}
.contact-map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-md);
    height: 400px;
}
.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* --- Contact Page Responsive --- */
@media (max-width: 1024px) {
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-side { position: static; }
}
@media (max-width: 768px) {
    .contact-hero { padding: 120px 0 50px; }
    .contact-cards-grid { grid-template-columns: 1fr 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-box { padding: 32px 24px; }
}
@media (max-width: 480px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
}

/* ====================================
   LEGAL / TEXT PAGES (Gizlilik, KVKK, Kullanım Koşulları)
   ==================================== */
.legal-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #eef4f9 50%, rgba(26,171,138,0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,171,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.legal-hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.legal-hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.legal-hero-desc {
    font-size: 18px;
    color: var(--color-gray-500);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.legal-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-gray-400);
    position: relative;
    z-index: 2;
}
.legal-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.legal-hero-meta svg, .legal-hero-meta i {
    width: 16px;
    height: 16px;
}
.legal-content {
    padding: 80px 0 100px;
}
.legal-content-inner {
    max-width: 1060px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 56px 72px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-md);
}
.legal-content-inner h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(26,171,138,0.15);
}
.legal-content-inner h2:first-child {
    margin-top: 0;
}
.legal-content-inner h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-top: 28px;
    margin-bottom: 10px;
}
.legal-content-inner p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: 16px;
}
.legal-content-inner ul,
.legal-content-inner ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content-inner li {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: 8px;
}
.legal-content-inner strong {
    color: var(--color-gray-800);
}
.legal-content-inner a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.2s;
}
.legal-content-inner a:hover {
    color: var(--color-primary);
}
.legal-toc {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 32px;
    border: 1px solid var(--color-gray-100);
}
.legal-toc h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-400);
    margin-bottom: 12px;
}
.legal-toc ol {
    padding-left: 20px;
    margin-bottom: 0;
}
.legal-toc li {
    font-size: 14px;
    margin-bottom: 6px;
}
.legal-toc a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}
.legal-toc a:hover {
    color: var(--color-accent);
}

/* --- Legal Responsive --- */
@media (max-width: 768px) {
    .legal-hero { padding: 120px 0 50px; }
    .legal-hero-title { font-size: 30px; }
    .legal-content-inner { padding: 32px 24px; }
    .legal-content-inner h2 { font-size: 20px; }
}

/* ====================================
   ABOUT PAGE (Hakkımızda)
   ==================================== */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #eef4f9 50%, rgba(26,171,138,0.05) 100%);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,171,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,171,138,0.08);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.about-hero-badge svg, .about-hero-badge i {
    width: 16px;
    height: 16px;
}
.about-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.about-hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero-desc {
    font-size: 18px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}
.about-hero-visual {
    position: relative;
}
.about-hero-visual-box {
    background: var(--gradient-accent);
    border-radius: var(--radius-2xl);
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}
.about-hero-visual-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.about-hero-visual-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.about-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.about-visual-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.about-visual-desc {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* About Stats */
.about-stats {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-stat-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.about-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(26,171,138,0.08);
    color: var(--color-accent);
}
.about-stat-icon svg, .about-stat-icon i {
    width: 24px;
    height: 24px;
}
.about-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.about-stat-label {
    font-size: 14px;
    color: var(--color-gray-500);
    font-weight: 500;
}

/* About Story */
.about-story {
    padding: 100px 0;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-story-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.about-story-content h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-story-content p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* About Values */
.about-values {
    padding: 100px 0;
    background: var(--color-gray-50);
}
.about-values-header {
    text-align: center;
    margin-bottom: 56px;
}
.about-values-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.about-values-header h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-values-header p {
    font-size: 17px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.about-value-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(26,171,138,0.08);
    color: var(--color-accent);
}
.about-value-icon svg, .about-value-icon i {
    width: 26px;
    height: 26px;
}
.about-value-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.about-value-card p {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* About Affiliation */
.about-parent {
    padding: 80px 0;
}
.about-parent-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e5a8a 100%);
    border-radius: var(--radius-2xl);
    padding: 56px 64px;
    color: white;
    display: flex;
    align-items: center;
    gap: 48px;
}
.about-parent-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-parent-icon svg, .about-parent-icon i {
    width: 36px;
    height: 36px;
}
.about-parent-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.about-parent-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-parent-box { flex-direction: column; text-align: center; padding: 40px 32px; }
}
@media (max-width: 768px) {
    .about-hero { padding: 120px 0 60px; }
    .about-hero-title { font-size: 34px; }
    .about-stats { margin-top: -20px; }
    .about-stat-number { font-size: 28px; }
    .about-story-content h2 { font-size: 28px; }
    .about-values-header h2 { font-size: 28px; }
}
@media (max-width: 480px) {
    .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-stat-card { padding: 24px 16px; }
    .about-values-grid { grid-template-columns: 1fr; }
}

/* ====================================
   FAQ PAGE (S.S.S.)
   ==================================== */
.faq-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #eef4f9 50%, rgba(26,171,138,0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.faq-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,171,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.faq-hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.faq-hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-hero-desc {
    font-size: 18px;
    color: var(--color-gray-500);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* FAQ Categories */
.faq-categories {
    padding: 60px 0 0;
}
.faq-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.faq-cat-tab {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.faq-cat-tab svg, .faq-cat-tab i {
    width: 16px;
    height: 16px;
}
.faq-cat-tab:hover,
.faq-cat-tab.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* FAQ Sections */
.faq-sections {
    padding: 60px 0 100px;
}
.faq-section-block {
    margin-bottom: 56px;
}
.faq-section-block:last-child {
    margin-bottom: 0;
}
.faq-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(26,171,138,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-section-title svg, .faq-section-title i {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
    .faq-hero { padding: 120px 0 50px; }
    .faq-hero-title { font-size: 30px; }
    .faq-cat-tabs { gap: 8px; }
    .faq-cat-tab { padding: 8px 16px; font-size: 13px; }
    .faq-section-title { font-size: 20px; }
}

/* ====================================
   PARTNER / PROGRAM PAGES (Çözüm Ortaklığı, Mali Müşavir)
   ==================================== */
.partner-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #eef4f9 50%, rgba(26,171,138,0.05) 100%);
    position: relative;
    overflow: hidden;
}
.partner-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,171,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.partner-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.partner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,171,138,0.08);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.partner-hero-badge svg, .partner-hero-badge i {
    width: 16px;
    height: 16px;
}
.partner-hero-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.partner-hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.partner-hero-desc {
    font-size: 17px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}
.partner-hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.partner-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-gray-700);
    font-weight: 500;
}
.partner-hero-highlights li svg,
.partner-hero-highlights li i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Partner Form Card */
.partner-form-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-xl);
}
.partner-form-card h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.partner-form-card .partner-form-subtitle {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 28px;
}

/* Partner Benefits Section */
.partner-benefits {
    padding: 100px 0;
}
.partner-benefits-header {
    text-align: center;
    margin-bottom: 56px;
}
.partner-benefits-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.partner-benefits-header h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.partner-benefits-header p {
    font-size: 17px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}
.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.partner-benefit-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.partner-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.partner-benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(26,171,138,0.08);
    color: var(--color-accent);
}
.partner-benefit-icon svg, .partner-benefit-icon i {
    width: 28px;
    height: 28px;
}
.partner-benefit-icon.icon-primary {
    background: rgba(26,60,94,0.08);
    color: var(--color-primary);
}
.partner-benefit-icon.icon-warning {
    background: rgba(245,166,35,0.08);
    color: #f5a623;
}
.partner-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.partner-benefit-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* Partner How It Works */
.partner-steps {
    padding: 100px 0;
    background: var(--color-gray-50);
}
.partner-steps-header {
    text-align: center;
    margin-bottom: 56px;
}
.partner-steps-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.partner-steps-header h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.partner-steps-header p {
    font-size: 17px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}
.partner-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.partner-step-card {
    text-align: center;
    position: relative;
}
.partner-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 20px;
}
.partner-step-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.partner-step-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* Partner CTA Form Section */
.partner-cta-form {
    padding: 100px 0;
}
.partner-cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.partner-cta-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.partner-cta-info h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.partner-cta-info p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.partner-cta-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.partner-cta-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.6;
}
.partner-cta-info-list li svg,
.partner-cta-info-list li i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.partner-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,171,138,0.06);
    border: 1px solid rgba(26,171,138,0.15);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    margin-top: 24px;
    font-size: 14px;
    color: var(--color-gray-600);
}
.partner-trust-badge svg,
.partner-trust-badge i {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}
.partner-trust-badge strong {
    color: var(--color-primary);
}

/* Partner Page Responsive */
@media (max-width: 1024px) {
    .partner-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .partner-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-cta-form-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .partner-hero { padding: 120px 0 60px; }
    .partner-hero-title { font-size: 32px; }
    .partner-form-card { padding: 28px 20px; }
    .partner-benefits-header h2,
    .partner-steps-header h2,
    .partner-cta-info h2 { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .partner-benefits-grid { grid-template-columns: 1fr; }
    .partner-steps-grid { grid-template-columns: 1fr; }
}
