/* ============================================================
   KrediKarşılaştır — Kurumsal Tema v3
   Beyaz navbar · Turuncu / Teal · Yumuşak mint arka plan
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --orange: #f26522;
    --orange-dark: #d9541a;
    --orange-soft: #fff1ea;
    --teal: #3cb8b0;
    --teal-dark: #2fa39b;
    --teal-soft: #e7f7f5;
    --teal-border: #bfe6e2;
    --navy: #1f2a44;
    --text: #2b3445;
    --muted: #6b7280;
    --line: #e6eaee;
    --bg: #f4f8f7;
    --white: #ffffff;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(31, 42, 68, 0.06);
    --shadow-md: 0 8px 24px rgba(31, 42, 68, 0.10);
    --shadow-lg: 0 16px 40px rgba(31, 42, 68, 0.14);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    /* geriye dönük uyumluluk (admin sayfaları) */
    --primary-color: #f26522;
    --secondary-color: #1f2a44;
    --light-bg: #f4f8f7;
    --dark-text: #2b3445;
    --border-color: #e6eaee;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #e6f3f0 0%, #f4f8f7 260px, #ffffff 100%);
    line-height: 1.6;
    min-height: 100vh;
}
a { color: var(--orange); }
img { max-width: 100%; }

/* ============= ANİMASYONLAR ============= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(242,101,34,.45); } 100% { box-shadow: 0 0 0 14px rgba(242,101,34,0); } }
@keyframes shimmer { 0% { background-position: -600px 0; } 100% { background-position: 600px 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.anim-up { animation: fadeUp .6s var(--ease) both; }
.delay-1 { animation-delay: .1s; } .delay-2 { animation-delay: .2s; } .delay-3 { animation-delay: .3s; }

/* ============= NAVBAR ============= */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(31,42,68,.05);
    position: sticky; top: 0; z-index: 1000;
}
.navbar-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
    display: flex; align-items: center; gap: 8px; text-decoration: none;
    font-weight: 800; font-size: 24px; letter-spacing: -.3px; color: var(--navy);
}
.logo .logo-mark {
    width: 34px; height: 34px; border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), #ff9a5c);
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.logo .logo-mark svg { width: 20px; height: 20px; }
.logo span.accent { color: var(--orange); }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 10px;
    color: var(--navy); font-weight: 600; font-size: 15px; text-decoration: none;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-menu > li > a:hover { background: var(--bg); color: var(--orange); }
.nav-menu > li > a .caret { width: 12px; height: 12px; transition: transform .25s; }
.nav-menu > li.open > a .caret { transform: rotate(180deg); }
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
    padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .25s var(--ease);
}
.nav-menu > li.open .dropdown, .nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
    display: block; padding: 10px 12px; border-radius: 10px; text-decoration: none;
    color: var(--text); font-size: 14px; font-weight: 500; transition: all .2s;
}
.dropdown a:hover { background: var(--orange-soft); color: var(--orange); padding-left: 16px; }

.btn-login {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 999px;
    background: var(--orange); color: #fff !important; font-weight: 700; font-size: 15px; text-decoration: none;
    box-shadow: 0 6px 18px rgba(242,101,34,.35); transition: all .25s var(--ease); border: none; cursor: pointer;
}
.btn-login:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(242,101,34,.4); }
.btn-login svg { width: 18px; height: 18px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: .3s; }

/* ============= GENEL ============= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 18px 0 6px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb strong { color: var(--navy); font-weight: 700; }

.page-title { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -.3px; }
.page-sub { font-size: 20px; color: var(--text); font-weight: 400; margin-top: 4px; }

.card {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
    padding: 28px;
}

/* ============= BANNER (Reklam alanı) ============= */
.promo-banner {
    margin: 16px 0 0; border-radius: 14px; overflow: hidden; color: #fff; position: relative;
    background: linear-gradient(100deg, var(--navy) 0%, #2d4a8a 55%, var(--teal) 100%);
    display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 32px;
    box-shadow: var(--shadow-md);
}
.promo-banner::after {
    content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%;
    background: rgba(255,255,255,.08); animation: floatY 6s ease-in-out infinite;
}
.promo-banner .promo-rate { font-size: 34px; font-weight: 800; line-height: 1; }
.promo-banner .promo-rate small { display: block; font-size: 13px; font-weight: 600; opacity: .9; }
.promo-banner .promo-text { font-size: 22px; font-weight: 700; flex: 1; }
.promo-banner .promo-text b { font-size: 34px; display: block; }
.promo-banner .btn-white {
    background: #fff; color: var(--navy); border-radius: 999px; padding: 12px 24px; font-weight: 700; text-decoration: none;
    transition: .25s; white-space: nowrap;
}
.promo-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

/* ============= HERO (2 sütun) ============= */
.hero-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; padding: 28px 0 40px;
}
.steps { margin-top: 32px; display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
    flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--orange);
    color: var(--orange); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 15px;
    background: #fff; transition: .3s;
}
.step:hover .step-num { background: var(--orange); color: #fff; animation: pulseRing 1s var(--ease); }
.step h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step p { font-size: 15px; color: var(--muted); }
.info-pill {
    margin-top: 36px; display: inline-flex; align-items: center; gap: 10px; background: #e3e8ee; color: var(--navy);
    border-radius: 12px; padding: 14px 22px; font-weight: 700; font-size: 14px; text-decoration: none; transition: .25s;
}
.info-pill:hover { background: #d5dce5; }

/* Hesaplama Kartı */
.calc-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 32px; position: relative; }
.calc-card h2 { font-size: 26px; font-weight: 800; color: var(--navy); text-align: center; line-height: 1.25; margin-bottom: 22px; }
.calc-card .help { position: absolute; right: 20px; top: 20px; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid #c7ced8; color: #9aa4b2; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.slider-box { background: var(--bg); border-radius: 12px; padding: 14px 16px 6px; margin-bottom: 18px; }
.slider-box .slider-head { display: flex; align-items: baseline; justify-content: space-between; }
.slider-box .slider-value { font-size: 26px; font-weight: 700; color: var(--navy); }
.slider-box .slider-tag { font-size: 12px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 8px; padding: 3px 9px; font-weight: 600; }
.range {
    -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px;
    background: linear-gradient(to right, var(--teal) 0%, var(--teal) var(--pct, 30%), #d5dde3 var(--pct, 30%), #d5dde3 100%);
    outline: none; margin: 12px 0 8px;
}
.range::-webkit-slider-thumb {
    -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(60,184,176,.5); cursor: pointer; transition: transform .2s;
}
.range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.range::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(60,184,176,.5); cursor: pointer; }
.calc-summary { text-align: center; font-size: 14px; color: var(--teal-dark); font-weight: 700; margin: 4px 0 12px; }

.btn-teal {
    display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
    background: var(--teal); color: #fff; border: none; border-radius: 12px; padding: 16px; font-size: 17px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all .25s var(--ease); box-shadow: 0 6px 18px rgba(60,184,176,.35);
    position: relative; overflow: hidden;
}
.btn-teal::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%); transform: translateX(-100%); transition: transform .6s; }
.btn-teal:hover::after { transform: translateX(100%); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-teal svg { width: 18px; height: 18px; }

.btn-orange {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--orange); color: #fff !important; border: none; border-radius: 12px; padding: 16px 32px; font-size: 17px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all .25s var(--ease); box-shadow: 0 6px 18px rgba(242,101,34,.3);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: #fff; color: var(--navy); border: 1.5px solid #cfd6de; border-radius: 10px; padding: 11px 22px; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all .25s var(--ease);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-soft); }
.btn-outline-teal { background: #fff; color: var(--teal-dark); border: 1.5px solid var(--teal); border-radius: 10px; padding: 11px 22px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: .25s; }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

.popular { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 16px; text-align: center; }
.popular .title { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.popular .chips { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.chip {
    border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; background: #fff; cursor: pointer;
    font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.4; transition: .2s;
}
.chip small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }
.chip:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }

/* ============= TEKLİF KARTLARI ============= */
.section-title { text-align: center; font-size: 24px; font-weight: 800; color: var(--navy); margin: 24px 0 22px; }
.results-title { font-size: 22px; font-weight: 800; color: var(--navy); margin: 18px 0 20px; }
.offers { display: flex; flex-direction: column; gap: 18px; }
.offer {
    position: relative; background: #fff; border: 1.5px solid var(--teal-border); border-radius: 16px;
    padding: 22px 24px 0; box-shadow: var(--shadow-sm); transition: all .3s var(--ease); overflow: visible;
}
.offer:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal); }
.offer-tags { position: absolute; top: -13px; left: 16px; display: flex; gap: 8px; }
.tag { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 8px 8px 0 0; }
.tag-ad { background: var(--teal-soft); color: var(--teal-dark); border: 1px solid var(--teal-border); }
.tag-hot { background: #fde7e7; color: #d84343; border: 1px solid #f7c8c8; }
.tag-new { background: var(--orange-soft); color: var(--orange); border: 1px solid #ffd3bd; }
.offer-body { display: grid; grid-template-columns: 180px 1fr 150px; gap: 20px; align-items: center; padding-bottom: 18px; }
.bank-logo {
    height: 56px; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--navy); letter-spacing: -.3px;
}
.bank-logo .mark { width: 44px; height: 44px; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--orange); font-weight: 800; border: 1px solid var(--line); }
.bank-logo img { max-height: 44px; max-width: 150px; object-fit: contain; }
.offer-stats { display: flex; justify-content: space-around; align-items: center; }
.stat { text-align: center; padding: 0 22px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .k { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.stat .v { font-size: 18px; font-weight: 700; color: var(--navy); }
.stat .v.hl { color: var(--teal-dark); }
.offer-actions { display: flex; flex-direction: column; gap: 10px; }
.offer-actions .btn-teal { padding: 12px; font-size: 15px; border-radius: 10px; }
.offer-actions .row { display: flex; gap: 8px; align-items: center; }
.offer-actions .row .btn-outline { flex: 1; }
.share-ico { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: #9aa4b2; border-radius: 8px; cursor: pointer; }
.share-ico:hover { background: var(--bg); color: var(--teal-dark); }
.offer-foot { margin: 0 -24px; background: var(--bg); border-top: 1px solid var(--line); border-radius: 0 0 16px 16px; padding: 12px 24px; font-size: 13.5px; color: var(--text); }

/* ============= SONUÇ SAYFASI (Sidebar) ============= */
.results-grid { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; padding-bottom: 40px; }
.sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.date-box { background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm); padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }
.date-box svg { width: 20px; height: 20px; color: var(--muted); }
.filter-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-md); padding: 22px; }
.filter-card h3 { text-align: center; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.filter-card label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin: 14px 0 6px; }
.filter-card select, .filter-card .val-box { width: 100%; background: var(--bg); border: 1px solid transparent; border-radius: 10px; padding: 11px 12px; font: inherit; font-size: 14px; color: var(--navy); font-weight: 600; }
.filter-card select:focus { outline: none; border-color: var(--teal); }
.filter-card .range { margin: 8px 0 0; }
.filter-card .btn-outline-teal { width: 100%; margin-top: 18px; }
.recent-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 20px; }
.recent-card h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.recent-card .chip { display: inline-block; margin: 4px 4px 0 0; }

/* ============= KREDİ KARTLARI (Grid – Bankalar vb.) ============= */
.credits-container { max-width: 1200px; margin: 0 auto; padding: 20px 24px 40px; }
.credits-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.credit-card { background: #fff; border: 1.5px solid var(--teal-border); border-radius: 16px; padding: 24px; transition: .3s var(--ease); }
.credit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.institution-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.institution-logo { width: 56px; height: 56px; border-radius: 12px; background: var(--bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--orange); }
.institution-logo img { width: 100%; height: 100%; object-fit: contain; }
.institution-info h3 { font-size: 17px; color: var(--navy); font-weight: 800; }
.institution-info p { font-size: 13px; color: var(--muted); }
.credit-type { display: inline-block; background: var(--teal-soft); color: var(--teal-dark); border: 1px solid var(--teal-border); padding: 5px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.credit-details { background: var(--bg); border-radius: 12px; padding: 12px 16px; margin-bottom: 12px; }
.detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--muted); }
.detail-value { font-weight: 700; color: var(--navy); }
.monthly-payment { text-align: center; padding: 14px; border: 1.5px dashed var(--teal-border); border-radius: 12px; margin-bottom: 14px; }
.monthly-payment .label { font-size: 12px; color: var(--muted); }
.monthly-payment .amount { font-size: 26px; font-weight: 800; color: var(--teal-dark); }
.apply-btn { display: block; width: 100%; text-align: center; background: var(--teal); color: #fff; border: none; border-radius: 10px; padding: 13px; font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer; transition: .25s; }
.apply-btn:hover { background: var(--teal-dark); transform: translateY(-2px); }
.no-results { text-align: center; padding: 60px 20px; color: var(--muted); }
.no-results svg { width: 80px; height: 80px; opacity: .3; margin-bottom: 16px; }

/* ============= FİLTRE (eski index uyumu) ============= */
.filters { background: #fff; border-radius: 16px; box-shadow: var(--shadow-md); padding: 24px; margin: 24px 0; }
.filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; align-items: end; }
.filter-group { display: flex; flex-direction: column; }
.filter-group label { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.filter-group input, .filter-group select { padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; font-size: 14px; background: #fff; transition: .25s; }
.filter-group input:focus, .filter-group select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(60,184,176,.15); }

/* ============= FORMLAR ============= */
.form-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 32px; }
.form-section-title { font-size: 17px; font-weight: 800; color: var(--navy); padding-bottom: 12px; margin: 26px 0 16px; border-bottom: 2px solid var(--line); display: flex; align-items: center; gap: 10px; }
.form-section-title:first-child { margin-top: 0; }
.form-section-title .n { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--orange); color: var(--orange); font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.form-group label .req { color: var(--danger); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; font-size: 15px; color: var(--navy);
    background: var(--bg); transition: .25s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; background: #fff; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(60,184,176,.15); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group .hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.form-group input.invalid { border-color: var(--danger); background: #fff5f5; }
.form-group input.valid { border-color: var(--success); }
.notice { border-radius: 10px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 18px; }
.notice-orange { background: var(--orange-soft); color: var(--orange-dark); text-align: center; font-weight: 600; }
.notice-teal { background: var(--teal-soft); color: var(--teal-dark); }
.notice-gray { background: var(--bg); color: var(--muted); }
.steps-dots { display: flex; gap: 6px; justify-content: center; margin: 12px 0; }
.steps-dots i { width: 10px; height: 10px; border-radius: 50%; background: #d5dde3; transition: .3s; }
.steps-dots i.active { width: 22px; border-radius: 6px; background: var(--orange); }

.pw-strength { height: 5px; background: #e3e8ee; border-radius: 6px; margin-top: 8px; overflow: hidden; }
.pw-strength i { display: block; height: 100%; width: 0; border-radius: 6px; transition: .3s; }
.pw-strength i.weak { width: 33%; background: var(--danger); }
.pw-strength i.medium { width: 66%; background: var(--warning); }
.pw-strength i.strong { width: 100%; background: var(--success); }

/* ============= SUMMARY / PREVIEW ============= */
.summary-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 20px; }
.summary-strip .box { background: #fff; border: 1.5px solid var(--teal-border); border-radius: 12px; padding: 14px; text-align: center; }
.summary-strip .k { font-size: 12px; color: var(--muted); font-weight: 600; }
.summary-strip .v { font-size: 18px; font-weight: 800; color: var(--navy); margin-top: 2px; }
.preview-box { background: var(--teal-soft); border: 1px solid var(--teal-border); border-radius: 12px; padding: 16px 18px; margin: 8px 0 18px; }
.preview-box .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.preview-box .row b { color: var(--teal-dark); font-size: 16px; }

/* ============= HESAPLAYICI SAYFASI ============= */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.result-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tile { background: var(--bg); border-radius: 12px; padding: 16px; }
.tile .k { font-size: 12px; color: var(--muted); font-weight: 600; }
.tile .v { font-size: 22px; font-weight: 800; color: var(--navy); }
.tile.hl { background: var(--teal-soft); }
.tile.hl .v { color: var(--teal-dark); }
.bar-list { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 150px 1fr 70px; gap: 12px; align-items: center; font-size: 14px; }
.bar-row .name { font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-row .bar { height: 12px; background: #e3e8ee; border-radius: 6px; overflow: hidden; }
.bar-row .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), var(--orange)); border-radius: 6px; transition: width 1s var(--ease); }
.bar-row .pct { text-align: right; font-weight: 700; color: var(--teal-dark); }

/* ============= TABLO / MODAL / ALERT (admin ile ortak) ============= */
.table-container { overflow-x: auto; background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: #fff; }
th { background: var(--bg); color: var(--muted); padding: 14px 16px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 2px solid var(--line); }
td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
tbody tr:hover { background: #f9fbfb; }
.action-buttons { display: flex; gap: 8px; }
.btn-primary { background: var(--orange); color: #fff; padding: 12px 24px; border: none; border-radius: 10px; cursor: pointer; font-weight: 700; font: inherit; font-weight: 700; transition: .25s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary { background: #e3e8ee; color: var(--navy); padding: 9px 16px; border: none; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 700; transition: .2s; }
.btn-secondary:hover { background: #d5dce5; }
.btn-danger { background: var(--danger); color: #fff; padding: 9px 16px; border: none; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 700; }
.btn-danger:hover { background: #c0392b; }
.btn-success { background: var(--success); color: #fff; padding: 11px 24px; border: none; border-radius: 10px; cursor: pointer; font-weight: 700; }
.admin-container { max-width: 1200px; margin: 0 auto; padding: 30px 24px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-header h1 { font-size: 26px; color: var(--navy); }
.modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(31,42,68,.5); backdrop-filter: blur(4px); }
.modal.active { display: flex; align-items: center; justify-content: center; animation: fadeIn .25s; }
.modal-content { background: #fff; border-radius: 16px; padding: 30px; max-width: 620px; width: 92%; box-shadow: var(--shadow-lg); animation: fadeUp .35s var(--ease); max-height: 90vh; overflow: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.modal-header h2 { color: var(--navy); font-size: 20px; }
.close-btn { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--muted); }
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; animation: fadeUp .4s var(--ease); }
.alert-success { background: #e8f7ee; color: #14663a; border: 1px solid #bfe8cf; }
.alert-danger { background: #fdecec; color: #9b2222; border: 1px solid #f5c6c6; }
.alert-warning { background: #fff6e0; color: #7a4d00; border: 1px solid #ffe2a8; }
.alert-info { background: var(--teal-soft); color: var(--teal-dark); border: 1px solid var(--teal-border); }

/* ============= SSS ACCORDION ============= */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 16px 18px; font: inherit; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--teal); transition: .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); padding: 0 18px; color: var(--muted); font-size: 14px; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 16px; }

/* ============= FOOTER ============= */
footer { background: var(--navy); color: #fff; margin-top: 60px; padding: 50px 24px 24px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-section h4 { font-size: 15px; font-weight: 800; margin-bottom: 14px; color: #fff; }
.footer-section p { font-size: 14px; color: #b9c2d3; line-height: 1.8; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 9px; }
.footer-section a { color: #b9c2d3; font-size: 14px; text-decoration: none; transition: .2s; }
.footer-section a:hover { color: var(--orange); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: .25s; }
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 13px; color: #8f9ab0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ============= TOAST ============= */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: #fff; padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow-lg); font-size: 14px; z-index: 3000; transform: translateY(80px); opacity: 0; transition: .35s var(--ease); }
.toast.show { transform: none; opacity: 1; }

/* ============= YARDIMCI ============= */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }
.skeleton { background: linear-gradient(90deg, #eef1f4 25%, #f7f9fa 50%, #eef1f4 75%); background-size: 1200px 100%; animation: shimmer 1.6s infinite; border-radius: 8px; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .results-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .calc-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .offer-body { grid-template-columns: 1fr; text-align: center; }
    .offer-stats { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .bank-logo { justify-content: center; }
}
@media (max-width: 768px) {
    .navbar-container { height: 70px; }
    .nav-toggle { display: block; }
    .nav-menu {
        position: absolute; left: 0; right: 0; top: 70px; background: #fff; flex-direction: column; align-items: stretch;
        padding: 12px 16px 18px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--line); display: none;
    }
    .nav-menu.show { display: flex; animation: fadeUp .3s var(--ease); }
    .nav-menu > li > a { justify-content: space-between; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding-left: 12px; }
    .nav-menu > li.open .dropdown { display: block; }
    .nav-menu > li:hover .dropdown { display: none; }
    .nav-menu > li.open:hover .dropdown { display: block; }
    .btn-login { justify-content: center; margin-top: 6px; }
    .promo-banner { flex-direction: column; text-align: center; padding: 22px; }
    .promo-banner .promo-text b { font-size: 28px; }
    .page-title { font-size: 22px; } .page-sub { font-size: 17px; }
    .calc-card { padding: 22px; }
    .calc-card h2 { font-size: 22px; }
    .stat { padding: 0 12px; }
    .footer-content { grid-template-columns: 1fr; }
    .result-tiles { grid-template-columns: 1fr; }
    .bar-row { grid-template-columns: 100px 1fr 60px; }
    .form-card { padding: 20px; }
}

/* ============= v4: FOOTER (geniş), ÇEREZ, BLOG, KAMPANYA, KURUMSAL ============= */
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--orange); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 5000; }
.skip-link:focus { left: 8px; }
.site-footer { background: #f7f9f9; color: var(--text); border-top: 1px solid var(--line); margin-top: 70px; padding: 56px 24px 24px; }
.site-footer .footer-content { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .footer-section h4 { color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: .8px; margin: 22px 0 12px; padding-bottom: 8px; position: relative; }
.site-footer .footer-section h4:first-child, .site-footer .footer-brand h4:first-of-type { margin-top: 0; }
.site-footer .footer-section h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; border-radius: 3px; background: var(--orange); }
.site-footer .footer-brand h4 { margin-top: 22px; }
.site-footer .footer-brand h4::after { display: none; }
.site-footer .footer-section p { color: var(--text); font-size: 14px; }
.site-footer .footer-section a { color: var(--navy); font-size: 14px; }
.site-footer .footer-section a:hover { color: var(--orange); }
.site-footer .footer-section li { margin-bottom: 9px; }
.site-footer .footer-posts a { display: block; line-height: 1.4; }
.site-footer .footer-contact li { color: var(--muted); font-size: 14px; }
.site-footer .footer-social a { background: #6b7280; }
.site-footer .footer-social a:hover { background: var(--orange); }
.site-footer .footer-bottom { border-top: 1px solid var(--line); color: var(--muted); }
.store-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.store-btns a { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; text-decoration: none; color: var(--navy); font-weight: 700; font-size: 13px; line-height: 1.1; transition: .2s; }
.store-btns a small { display: block; font-size: 9px; font-weight: 500; color: var(--muted); }
.store-btns a svg { width: 20px; height: 20px; }
.store-btns a:hover { border-color: var(--navy); transform: translateY(-2px); }
.wa-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 9px 14px; text-decoration: none; color: var(--navy) !important; font-weight: 700; font-size: 13px; margin-top: 6px; transition: .2s; }
.wa-btn svg { width: 18px; height: 18px; color: #25d366; }
.wa-btn:hover { border-color: #25d366; }
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,.4); z-index: 900; transition: .25s; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }

/* Çerez bandı */
.cookie-bar { position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 140%); width: min(1100px, calc(100% - 32px)); background: #fff; border-radius: 16px; box-shadow: 0 20px 50px rgba(31,42,68,.25); padding: 20px 24px; display: flex; align-items: center; gap: 20px; z-index: 950; transition: transform .5s var(--ease); border: 1px solid var(--line); }
.cookie-bar.show { transform: translate(-50%, 0); }
.cookie-text { flex: 1; font-size: 14px; }
.cookie-text b { display: block; margin-bottom: 4px; color: var(--navy); }
.cookie-text p { color: var(--muted); }
.cookie-opts[hidden] { display: none; }
.cookie-opts { display: flex; gap: 16px; margin-top: 10px; font-size: 13px; }
.cookie-opts label { display: flex; align-items: center; gap: 6px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn-outline { padding: 10px 16px; font-size: 13px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; transition: .3s var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-cover { height: 170px; background: linear-gradient(135deg, var(--navy), #2d4a8a 60%, var(--teal)); position: relative; display: flex; align-items: flex-end; padding: 16px; color: #fff; }
.post-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-cover .cat { position: relative; background: var(--orange); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 8px; text-transform: uppercase; letter-spacing: .5px; }
.post-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-body h3 { font-size: 17px; line-height: 1.35; }
.post-body h3 a { color: var(--navy); text-decoration: none; }
.post-body h3 a:hover { color: var(--orange); }
.post-body p { font-size: 14px; color: var(--muted); flex: 1; }
.post-meta { font-size: 12px; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.post-meta b { color: var(--teal-dark); }
.post-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.post-featured .post-cover { height: 100%; min-height: 280px; }
.post-featured .post-body h3 { font-size: 26px; }
.article { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 40px; max-width: 820px; }
.article h1 { font-size: 32px; line-height: 1.25; color: var(--navy); margin-bottom: 12px; }
.article .post-meta { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.prose { font-size: 16px; line-height: 1.8; color: var(--text); }
.prose h2 { font-size: 22px; color: var(--navy); margin: 30px 0 10px; }
.prose h3 { font-size: 18px; color: var(--navy); margin: 22px 0 8px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose th { background: var(--bg); color: var(--navy); }
.prose a { color: var(--orange); font-weight: 600; }
.prose blockquote { border-left: 4px solid var(--teal); background: var(--teal-soft); padding: 12px 18px; border-radius: 0 10px 10px 0; margin: 16px 0; }
.share-row { display: flex; gap: 8px; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); align-items: center; font-size: 13px; color: var(--muted); }
.share-row a, .share-row button { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 7px 12px; font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; cursor: pointer; font-family: inherit; }
.share-row a:hover, .share-row button:hover { border-color: var(--teal); color: var(--teal-dark); }
.side-list { list-style: none; }
.side-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.side-list li:last-child { border-bottom: none; }
.side-list a { color: var(--navy); text-decoration: none; font-weight: 600; }
.side-list a:hover { color: var(--orange); }
.side-list small { display: block; color: var(--muted); font-weight: 500; }
.cat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0 22px; }
.cat-pills a { text-decoration: none; }
.cat-pills a.active { border-color: var(--orange); background: var(--orange-soft); color: var(--orange); }

/* Kampanyalar */
.camp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.camp-card { background: #fff; border: 1.5px solid var(--teal-border); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 10px; position: relative; transition: .3s var(--ease); overflow: hidden; }
.camp-card::before { content: ''; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--teal-soft); transition: .4s; }
.camp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.camp-card:hover::before { transform: scale(1.4); }
.camp-card > * { position: relative; }
.camp-badge { align-self: flex-start; background: var(--orange-soft); color: var(--orange); border: 1px solid #ffd3bd; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 8px; text-transform: uppercase; letter-spacing: .5px; }
.camp-card h3 { font-size: 17px; color: var(--navy); line-height: 1.35; }
.camp-card h3 a { color: inherit; text-decoration: none; }
.camp-card p { font-size: 14px; color: var(--muted); flex: 1; }
.camp-meta { font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.camp-meta .inst { font-weight: 700; color: var(--navy); }
.camp-card .btn-teal { padding: 12px; font-size: 14px; border-radius: 10px; }
.camp-hero { background: linear-gradient(100deg, var(--navy), #2d4a8a 55%, var(--teal)); color: #fff; border-radius: 16px; padding: 36px; margin-bottom: 26px; position: relative; overflow: hidden; }
.camp-hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); }
.camp-hero h1 { font-size: 30px; margin: 8px 0; }
.camp-hero p { opacity: .92; max-width: 640px; }

/* Kurumsal – hakkımızda */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 26px 0; }
.stat-tile { background: #fff; border-radius: 14px; padding: 22px; text-align: center; box-shadow: var(--shadow-sm); border-top: 4px solid var(--orange); }
.stat-tile b { display: block; font-size: 30px; color: var(--navy); }
.stat-tile span { font-size: 13px; color: var(--muted); font-weight: 600; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 26px 0; }
.vm-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: var(--shadow-sm); border-left: 5px solid var(--teal); }
.vm-card.orange { border-left-color: var(--orange); }
.vm-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.vm-card h3 svg { width: 24px; height: 24px; color: var(--teal); }
.vm-card.orange h3 svg { color: var(--orange); }
.vm-card p { color: var(--text); font-size: 15px; line-height: 1.7; }
.company-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px 24px; font-size: 14px; }
.company-info div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.company-info span { display: block; font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { background: #fff; border-radius: 14px; padding: 22px; box-shadow: var(--shadow-sm); }
.value-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.value-card .ic svg { width: 22px; height: 22px; }
.value-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--muted); }

/* İletişim */
.contact-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.ci { background: #fff; border-radius: 14px; padding: 18px; box-shadow: var(--shadow-sm); display: flex; gap: 12px; align-items: flex-start; }
.ci .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci .ic svg { width: 20px; height: 20px; }
.ci b { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.ci a, .ci span { color: var(--navy); font-weight: 600; font-size: 14px; text-decoration: none; }
.map-box { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 26px; min-height: 280px; background: var(--bg); }
.map-box iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Yardım merkezi */
.help-search { display: flex; gap: 10px; margin: 18px 0 26px; }
.help-search input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; font-size: 15px; background: #fff; }
.help-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(60,184,176,.15); }
.help-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.help-cat { background: #fff; border-radius: 14px; padding: 18px; box-shadow: var(--shadow-sm); text-decoration: none; color: var(--navy); border: 1.5px solid transparent; transition: .2s; }
.help-cat:hover { border-color: var(--teal); transform: translateY(-3px); }
.help-cat b { display: block; font-size: 15px; margin-bottom: 4px; }
.help-cat span { font-size: 13px; color: var(--muted); }

/* Ana sayfa bölümleri */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin: 56px 0 20px; }
.section-head h2 { font-size: 24px; font-weight: 800; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.section-head a { white-space: nowrap; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.trust { display: flex; gap: 12px; align-items: center; background: #fff; border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.trust .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust .ic svg { width: 22px; height: 22px; }
.trust b { display: block; color: var(--navy); font-size: 14px; }
.trust span { font-size: 12.5px; color: var(--muted); }

@media (max-width: 1024px) {
    .site-footer .footer-content { grid-template-columns: 1fr 1fr; }
    .blog-grid, .camp-grid { grid-template-columns: 1fr 1fr; }
    .post-featured { grid-template-columns: 1fr; }
    .stats-row, .values-grid, .help-cats, .trust-row { grid-template-columns: 1fr 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .site-footer .footer-content { grid-template-columns: 1fr; }
    .blog-grid, .camp-grid, .contact-info { grid-template-columns: 1fr; }
    .cookie-bar { flex-direction: column; align-items: stretch; }
    .cookie-actions { justify-content: flex-end; }
    .article { padding: 22px; }
    .article h1 { font-size: 24px; }
    .stats-row, .values-grid, .help-cats, .trust-row { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .wa-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}
