:root {
    --primary: #0052FF;
    --primary-hover: #0043D1;
    --primary-light: #EEF3FF;
    --text: #0f172a;
    --text-secondary: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --surface: #f8fafc;
    --surface-hover: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
    --transition: all 0.25s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #ffffff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-light { background: var(--surface); }

/* ========== BUTONLAR ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,82,255,0.25);
}
.btn-primary.btn-large { padding: 14px 32px; font-size: 16px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--text);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    font-size: 15px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: #cbd5e1;
    transform: translateY(-1px);
}
.btn-secondary.btn-large { padding: 14px 32px; font-size: 16px; }

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.btn-white:hover { background: #f0f4ff; transform: translateY(-1px); }
.btn-white.btn-large { padding: 14px 32px; font-size: 16px; }

.btn-login {
    color: var(--muted);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 14px;
}
.btn-login:hover { color: var(--text); }

/* ========== HEADER ========== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
header.scrolled {
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo a {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    color: var(--text);
}
.logo span { color: var(--primary); }

.nav-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
}

.nav-links {
    display: flex;
    gap: 0;
}
.nav-links a {
    padding: 0 16px;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-icon {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
    padding: 6px;
    border-radius: 8px;
    transition: var(--transition);
}
.mobile-menu-icon:hover { background: var(--surface); }

/* Mobil Menü */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--border);
    background: #fff;
    gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 13px 12px;
    color: var(--muted);
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--text); background: var(--surface); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.mobile-menu-actions .btn-login,
.mobile-menu-actions .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
}
.mobile-menu-actions .btn-login {
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

/* ========== BAŞLIK YARDIMCILARI ========== */
.section-title {
    text-align: center;
    margin-bottom: 52px;
}
.section-title h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    color: var(--text);
}
.section-title p { color: var(--muted); font-size: 17px; }

.section-title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}
.title-left h2 { font-size: 28px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.03em; color: var(--text); }
.title-left p { color: var(--muted); font-size: 16px; }

/* ========== PAGE HERO ========== */
.page-hero {
    padding: 130px 0 70px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-light) 0%, #ffffff 100%);
}
.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    color: var(--text);
}
.page-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto;
}

/* ========== SECTION BADGE ========== */
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* ========== HIGHLIGHT ========== */
.highlight { color: var(--primary); }

/* ========== HERO ========== */
.hero {
    padding: 140px 0 90px;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 60%);
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-content { flex: 1; }
.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: var(--text);
}
.hero p { font-size: 18px; color: var(--muted); margin-bottom: 32px; max-width: 500px; }
.hero-buttons { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 20px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.hero-trust i { color: #16a34a; margin-right: 5px; }
.hero-image { flex: 1; }
.mockup-placeholder {
    background: #f1f5f9;
    border: 1.5px dashed var(--border);
    border-radius: 20px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    gap: 12px;
}
.mockup-placeholder i { font-size: 44px; color: #94a3b8; }

/* ========== SEKTÖRLER ========== */
.sectors { padding: 80px 0; }
.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.sector-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.sector-card:hover {
    border-color: #bfdbfe;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.sector-card i { font-size: 30px; color: var(--primary); margin-bottom: 14px; display: block; }
.sector-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.sector-card p { font-size: 13px; color: var(--muted); }

/* ========== NASIL ÇALIŞIR ========== */
.how-it-works { padding: 80px 0; }
.video-wrapper { max-width: 860px; margin: 0 auto; }
.video-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.play-button {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 14px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,82,255,0.30);
}
.video-placeholder p { color: var(--muted); font-weight: 600; font-size: 16px; }
.video-placeholder:hover .play-button { transform: scale(1.1); }

/* ========== ÖZELLİKLER ========== */
.features { padding: 80px 0; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    padding: 34px 26px;
    border-radius: 18px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    border-color: #bfdbfe;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.feature-card .icon {
    width: 58px;
    height: 58px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 18px;
}
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ========== FİYAT BANNER ========== */
.pricing-banner { background: var(--primary); padding: 60px 0; color: #fff; }
.pricing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.pricing-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.pricing-text p { font-size: 17px; opacity: 0.9; }

/* ========== FİYATLANDIRMA SAYFASI ========== */
.pricing-section { padding: 60px 0 80px; }
.pricing-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}
.price-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.price-card.featured {
    background: #f0f4ff;
    border-color: #93c5fd;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.price-card .tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
}
.price-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.price-card > p { color: var(--muted); margin-bottom: 18px; min-height: 40px; font-size: 14px; }
.price-main { font-size: 40px; font-weight: 900; margin-bottom: 6px; color: var(--text); }
.price-main small { font-size: 15px; font-weight: 500; color: var(--muted); }
.price-features {
    list-style: none;
    margin: 22px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}
.price-features i { color: #16a34a; flex-shrink: 0; }

/* ========== BLOG ========== */
.blog-section { padding: 80px 0; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #bfdbfe;
}
.blog-img {
    height: 200px;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--text); }
.blog-card p { color: var(--muted); font-size: 13px; margin-bottom: 18px; line-height: 1.7; }
.read-more { color: var(--primary); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ========== BLOG DETAY ========== */
.blog-detail-hero {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, var(--primary-light) 0%, #ffffff 100%);
}
.blog-detail-hero h1 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: var(--text);
    max-width: 760px;
    margin-bottom: 16px;
}
.blog-meta { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.blog-detail-img {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
}
.blog-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 80px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
}
.blog-detail-content p { margin-bottom: 20px; }
.blog-detail-content h2,
.blog-detail-content h3 { font-weight: 800; color: var(--text); margin: 32px 0 14px; letter-spacing: -0.02em; }

/* ========== SSS ========== */
.faq-section { padding: 80px 0; }
.faq-container { max-width: 760px; margin: 0 auto; }
.accordion-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item:hover { border-color: #bfdbfe; }
.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    text-align: left;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}
.accordion-header:hover { background: var(--surface); }
.accordion-header i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-content p { padding: 0 22px 20px; color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ========== HAKKIMIZDA ========== */
.about-who { padding: 70px 0 90px; }
.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-who-content h2 {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    color: var(--text);
}
.about-who-content p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.85;
}
.about-img-placeholder {
    width: 100%;
    height: 380px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--muted);
    overflow: hidden;
}
.about-img-placeholder i { font-size: 44px; color: #94a3b8; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }

.about-stats-section { padding: 80px 0; }
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 30px 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #bfdbfe; }
.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--primary);
}
.stat-card .stat-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card .stat-label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.about-values { padding: 80px 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #bfdbfe; }
.value-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
}
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; color: var(--text); }
.value-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.about-cta { padding: 50px 0 80px; }
.cta-band {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border-radius: 24px;
    padding: 48px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,82,255,0.20);
}
.cta-band h3 { font-size: 30px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 8px; }
.cta-band p { opacity: 0.85; font-size: 15px; }

/* ========== "SİZİ ARAYALIM" FORMU ========== */
.call-section {
    padding: 90px 0;
    background: var(--surface);
}
.call-inner {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 52px 48px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.call-inner h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    color: var(--text);
}
.call-inner > p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 36px;
}
.call-form { text-align: left; }
.call-form .form-group { margin-bottom: 18px; }
.call-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.call-form input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.call-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,82,255,0.10); }
.call-form input::placeholder { color: #94a3b8; }
.call-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 8px;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.call-success {
    display: none;
    padding: 24px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 12px;
    color: #15803d;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

/* ========== COMING SOON ========== */
.coming-soon {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
}
.coming-soon-inner { max-width: 480px; }
.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin: 0 auto 28px;
}
.coming-soon h1 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    color: var(--text);
}
.coming-soon p { color: var(--muted); font-size: 17px; line-height: 1.7; }

/* ========== İŞ ORTAKLARI ========== */
.partners-section { padding: 60px 0 80px; }

/* ========== FOOTER ========== */
footer {
    border-top: 1px solid #1e293b;
    background: #0f172a;
    padding: 60px 0 0;
    color: #e2e8f0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand h3 { font-size: 21px; font-weight: 900; margin-bottom: 8px; color: #fff; }
.footer-brand span { color: #60a5fa; }
.footer-brand p { color: #94a3b8; font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    transition: var(--transition);
    font-size: 15px;
}
.footer-socials a:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.20);
    transform: translateY(-2px);
}
.footer-links-group h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.footer-links-group a {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 11px;
    transition: var(--transition);
}
.footer-links-group a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 22px 0;
    text-align: center;
}
.footer-bottom p { color: #475569; font-size: 13px; }

/* =====================================================
   MOBİL — TABLET (max 1024px)
   ===================================================== */
@media (max-width: 1024px) {
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .price-card.featured { transform: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .call-inner { padding: 40px 36px; }
}

/* =====================================================
   MOBİL — TELEFON (max 768px)
   ===================================================== */
@media (max-width: 768px) {

    /* Container */
    .container { padding: 0 18px; }

    /* Navbar */
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-icon { display: block; }
    .nav-container { height: 64px; }
    .nav-logo { height: 28px; }

    /* Hero */
    .hero { padding: 100px 0 60px; }
    .hero-container { flex-direction: column; text-align: center; gap: 36px; }
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 16px; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; flex-direction: column; gap: 10px; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; justify-content: center; padding: 15px 20px; font-size: 15px; }
    .hero-trust { justify-content: center; gap: 14px; }
    .hero-image { width: 100%; }
    .mockup-placeholder { height: 260px; }

    /* Page Hero */
    .page-hero { padding: 110px 0 50px; }
    .page-hero h1 { font-size: 30px; line-height: 1.15; }
    .page-hero p { font-size: 16px; }

    /* Section Title */
    .section-title { margin-bottom: 36px; }
    .section-title h2 { font-size: 26px; }
    .section-title p { font-size: 15px; }
    .section-title-flex { flex-direction: column; align-items: flex-start; gap: 14px; }

    /* Sektörler */
    .sectors { padding: 60px 0; }
    .sector-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .sector-card { padding: 22px 14px; }
    .sector-card i { font-size: 26px; }
    .sector-card h3 { font-size: 15px; }
    .sector-card p { font-size: 12px; }

    /* Video */
    .how-it-works { padding: 60px 0; }
    .video-placeholder { height: 220px; border-radius: 16px; }
    .play-button { width: 56px; height: 56px; font-size: 20px; }
    .video-placeholder p { font-size: 14px; }

    /* Özellikler */
    .features { padding: 60px 0; }
    .feature-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 26px 22px; display: flex; align-items: flex-start; gap: 18px; text-align: left; }
    .feature-card .icon { margin: 0; flex-shrink: 0; width: 50px; height: 50px; }

    /* Fiyat Banner */
    .pricing-banner { padding: 44px 0; }
    .pricing-container { flex-direction: column; text-align: center; gap: 20px; }
    .pricing-text h2 { font-size: 22px; }
    .pricing-text p { font-size: 15px; }
    .pricing-banner .btn-white { width: 100%; max-width: 280px; justify-content: center; padding: 14px 20px; }

    /* Blog */
    .blog-section { padding: 60px 0; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-img { height: 200px; }

    /* SSS */
    .faq-section { padding: 60px 0; }
    .accordion-header { font-size: 14px; padding: 17px 18px; }

    /* Hakkımızda */
    .about-who { padding: 50px 0 60px; }
    .about-who-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-who-content h2 { font-size: 28px; }
    .about-img-placeholder { height: 240px; border-radius: 16px; }
    .about-stats-section { padding: 60px 0; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-card { padding: 22px 12px; border-radius: 14px; }
    .stat-card .stat-number { font-size: 32px; }
    .about-values { padding: 60px 0; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .value-card { padding: 22px 16px; }
    .about-cta { padding: 40px 0 60px; }
    .cta-band { flex-direction: column; text-align: center; padding: 36px 24px; border-radius: 20px; }
    .cta-band h3 { font-size: 24px; }
    .cta-band .btn-white { width: 100%; max-width: 280px; justify-content: center; }

    /* Call Section */
    .call-section { padding: 60px 0; }
    .call-inner { padding: 32px 22px; border-radius: 18px; }
    .call-inner h2 { font-size: 26px; }

    /* Coming Soon */
    .coming-soon h1 { font-size: 28px; }
    .coming-soon p { font-size: 15px; }

    /* Blog Detail */
    .blog-detail-hero h1 { font-size: 28px; }
    .blog-detail-img { height: 240px; border-radius: 14px; }

    /* Footer */
    footer { padding: 44px 0 0; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
    .footer-brand { grid-column: 1 / -1; }

    /* Pricing */
    .pricing-wrap { max-width: 100%; }
}

/* =====================================================
   MOBİL — KÜÇÜK EKRAN (max 480px)
   ===================================================== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 28px; }
    .page-hero h1 { font-size: 24px; }
    .sector-grid { grid-template-columns: 1fr 1fr; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .section-title h2 { font-size: 23px; }
    .about-who-content h2 { font-size: 22px; }
    .cta-band h3 { font-size: 21px; }
    .call-inner { padding: 28px 18px; }
    .call-inner h2 { font-size: 22px; }
}
