/* ════════════════════════════════════════════════════
   KarbonIz – Main Stylesheet
   Fonts: Fraunces (display) + DM Sans (body)
   Theme: Organic / Natural — white, sage-green, warm tones
   ════════════════════════════════════════════════════ */

:root {
  --green-900: #14532d;
  --green-700: #15803d;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;
  --sage:      #6b8f71;
  --sage-light:#a8c5ad;
  --earth:     #78716c;
  --cream:     #fafaf9;
  --white:     #ffffff;
  --gray-900:  #0f172a;
  --gray-700:  #334155;
  --gray-500:  #64748b;
  --gray-200:  #e2e8f0;
  --gray-100:  #f1f5f9;
  --radius:    14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition: .2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── Container ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700); color: var(--white);
  box-shadow: 0 2px 8px rgba(21,128,61,.25);
}
.btn-primary:hover { background: var(--green-900); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,128,61,.35); }
.btn-outline { border: 2px solid var(--green-700); color: var(--green-700); background: transparent; }
.btn-outline:hover { background: var(--green-50); }
.btn-outline-light { border: 2px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-ghost { background: var(--gray-100); color: var(--gray-700); }
.btn-ghost:hover { background: var(--gray-200); }
.btn-sm { padding: .35rem .9rem; font-size: .82rem; }
.btn-lg { padding: .8rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--green-700); display: flex; align-items: center; gap: .4rem;
}
.logo-leaf { font-size: 1.2rem; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1rem; }
.nav-link { color: var(--gray-700); font-weight: 500; font-size: .9rem; transition: color var(--transition); }
.nav-link:hover { color: var(--green-700); }
.nav-user { font-size: .85rem; color: var(--gray-500); margin-right: .5rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; }

/* ── Flash messages ─────────────────────────────────────────── */
.flash-container {
  position: fixed; top: 72px; right: 1rem; z-index: 200;
  display: flex; flex-direction: column; gap: .5rem; max-width: 380px;
}
.flash {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem 1rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 500;
  animation: slideIn .25s ease;
  box-shadow: var(--shadow);
}
.flash-success { background: var(--green-100); color: var(--green-900); border-left: 4px solid var(--green-500); }
.flash-error   { background: #fee2e2; color: #7f1d1d; border-left: 4px solid #ef4444; }
.flash-warning { background: #fef3c7; color: #78350f; border-left: 4px solid #f59e0b; }
.flash-info    { background: #e0f2fe; color: #075985; border-left: 4px solid #0ea5e9; }
.flash-close { font-size: .8rem; opacity: .6; }
.flash-close:hover { opacity: 1; }
@keyframes slideIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }

/* ── Section commons ────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; padding: .3rem .9rem; background: var(--green-100);
  color: var(--green-700); border-radius: 50px; font-size: .82rem; font-weight: 600;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--gray-900); line-height: 1.2;
}
.section-header p { color: var(--gray-500); margin-top: .6rem; }

/* ─────────────────────────────────────────────────────────────
   LANDING PAGE
   ─────────────────────────────────────────────────────────── */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 40%, #f0fdf4 100%);
  position: relative; overflow: hidden;
  max-width: 1160px; margin: 0 auto; gap: 3rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4ade80, transparent);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #86efac, transparent);
  bottom: -100px; left: -80px;
}
.hero-content { flex: 1; position: relative; z-index: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem; background: var(--white); border: 1px solid var(--green-100);
  border-radius: 50px; font-size: .85rem; font-weight: 500; color: var(--green-700);
  margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--green-700); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 2rem; max-width: 460px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-700); font-weight: 700; }
.stat span { font-size: .82rem; color: var(--gray-500); }
.stat-divider { width: 1px; height: 36px; background: var(--gray-200); }
.hero-visual {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; position: relative; min-height: 320px;
}
.hero-planet { font-size: 8rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-card-float {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.2rem; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); position: absolute;
}
.hero-card-float:first-child  { top: 10%; left: 0; }
.hero-card-float-2 { bottom: 10%; right: 0; }
.hcf-icon { font-size: 1.5rem; }
.hcf-text strong { display: block; font-size: .85rem; font-weight: 600; }
.hcf-text span   { font-size: .78rem; color: var(--gray-500); }

/* Benefits */
.benefits-section { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.benefit-card {
  padding: 2rem 1.5rem; border-radius: var(--radius);
  background: var(--gray-100); text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.benefit-card p  { color: var(--gray-500); font-size: .9rem; }

/* Steps */
.steps-section { background: var(--green-50); }
.steps-grid { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.step-card {
  flex: 1; min-width: 200px; padding: 2rem 1.5rem; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--green-100); line-height: 1; margin-bottom: .5rem;
}
.step-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.step-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.step-card p  { color: var(--gray-500); font-size: .9rem; }
.step-arrow   { font-size: 1.5rem; color: var(--green-400); align-self: center; flex: 0; }

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  padding: 4rem 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--white); }
.cta-band p  { color: rgba(255,255,255,.75); margin-top: .4rem; }
.cta-band-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   AUTH PAGES
   ─────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; padding-top: 64px;
}
.auth-left {
  flex: 1; background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: flex; align-items: center; justify-content: center; padding: 3rem;
}
.auth-left-inner { max-width: 360px; color: var(--white); }
.auth-back { color: rgba(255,255,255,.7); font-size: .9rem; display: inline-block; margin-bottom: 2rem; }
.auth-back:hover { color: var(--white); }
.auth-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.auth-left h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.auth-left p  { color: rgba(255,255,255,.8); line-height: 1.6; }
.auth-illustration { font-size: 6rem; margin-top: 2rem; }
.auth-right {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 3rem 2rem; background: var(--white);
}
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-wrap h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.auth-sub { color: var(--gray-500); margin-bottom: 2rem; }
.auth-sub a { color: var(--green-700); font-weight: 600; }

.auth-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select {
  padding: .75rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green-500); }
.input-eye { position: relative; }
.input-eye input { padding-right: 3rem; }
.eye-btn { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); font-size: 1rem; opacity: .5; }
.eye-btn:hover { opacity: 1; }

/* İsteğe bağlı alan etiketi */
.field-optional {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: .1rem .45rem;
  border-radius: 4px;
  margin-left: .4rem;
  vertical-align: middle;
  letter-spacing: .01em;
}

/* ── KVKK kutusu ────────────────────────────────────────────── */
.kvkk-box {
  background: #f8fafc;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.kvkk-title {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-600);
}
.kvkk-text {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.kvkk-text p { margin: 0; }
.kvkk-text strong { color: var(--gray-700); }
.kvkk-link { color: var(--green-700); font-weight: 600; text-decoration: underline; }
.kvkk-check-label {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  font-size: .82rem;
  color: var(--gray-700);
  line-height: 1.5;
  padding-top: .25rem;
  border-top: 1px solid var(--gray-200);
}
.kvkk-check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: .15rem;
  accent-color: var(--green-700);
  cursor: pointer;
}
.kvkk-check-label strong { color: var(--gray-900); }

/* ─────────────────────────────────────────────────────────────
   CALCULATOR PAGE
   ─────────────────────────────────────────────────────────── */
.calc-page { padding-top: 64px; }
.calc-header {
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  padding: 3rem 0 2rem;
  text-align: center;
}
.calc-header h1 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; margin-bottom: .5rem; }
.calc-header p   { color: var(--gray-500); }
.calc-body { padding: 2.5rem 1.5rem 5rem; }

.calc-section {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.section-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sage); margin-bottom: 1rem; }
.section-title-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.section-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c, #22c55e) 15%, white);
  font-size: 1.4rem; flex-shrink: 0;
}
.section-title-row h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: .2rem; }
.section-title-row p  { color: var(--gray-500); font-size: .88rem; }

.input-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.input-card { display: flex; flex-direction: column; gap: .4rem; }
.input-card label { font-size: .88rem; font-weight: 600; color: var(--gray-700); }
.input-wrap { position: relative; }
.input-wrap input { padding-right: 3rem; width: 100%; }
.input-unit {
  position: absolute; right: .85rem; top: 50%; transform: translateY(-50%);
  font-size: .8rem; font-weight: 600; color: var(--gray-500);
}
.input-hint { font-size: .78rem; color: var(--gray-500); }

.input-card input,
.input-card select {
  padding: .7rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); outline: none; width: 100%;
  transition: border-color var(--transition);
}
.input-card input:focus,
.input-card select:focus { border-color: var(--green-500); }

/* Range slider */
.range-wrap { display: flex; align-items: center; gap: .75rem; }
.range-wrap input[type=range] { flex: 1; accent-color: var(--green-700); }
.range-val { font-weight: 700; color: var(--green-700); min-width: 2ch; }

/* Usage toggle */
.usage-toggle { display: flex; gap: .5rem; }
.toggle-opt input[type=radio] { display: none; }
.toggle-btn {
  display: block; padding: .6rem 1.4rem;
  border: 2px solid var(--gray-200); border-radius: 50px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.toggle-opt input:checked + .toggle-btn {
  border-color: var(--green-700); background: var(--green-50); color: var(--green-700);
}

/* Submit */
.calc-submit { text-align: center; margin-top: 2rem; }
.submit-note { margin-top: 1rem; font-size: .82rem; color: var(--gray-500); }

/* ─────────────────────────────────────────────────────────────
   REPORT PAGE
   ─────────────────────────────────────────────────────────── */
.report-page { padding-top: 64px; }
.report-header {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 3rem 0 2.5rem; color: var(--white);
}
.report-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.report-date { font-size: .82rem; opacity: .7; margin-bottom: .5rem; }
.report-header h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.report-header p  { opacity: .8; margin-top: .3rem; }
.report-header-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.report-body { padding: 2.5rem 1.5rem 5rem; }

/* Hope Banner */
.hope-banner {
  background: linear-gradient(135deg, #0f4c2a 0%, #166534 50%, #14532d 100%);
  border-radius: 20px; padding: 2.5rem 3rem;
  color: var(--white); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(21,101,52,.3);
}
.hope-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='150' cy='60' r='80' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='30' cy='150' r='60' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") no-repeat center / cover;
  pointer-events: none;
}
.hope-banner-deco { font-size: 4rem; flex-shrink: 0; filter: drop-shadow(0 0 16px rgba(74,222,128,.4)); }
.hope-banner-content { position: relative; z-index: 1; }
.hope-tag {
  display: inline-block; padding: .25rem .8rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; font-size: .78rem; font-weight: 600;
  margin-bottom: .75rem; letter-spacing: .04em;
}
.hope-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 800; margin-bottom: .75rem; line-height: 1.2;
}
.hope-banner p  { opacity: .85; font-size: .95rem; line-height: 1.6; max-width: 520px; margin-bottom: 1.25rem; }
.hope-banner-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-hope {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; background: var(--green-400); color: var(--green-900);
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  transition: all var(--transition);
}
.btn-hope:hover { background: var(--white); transform: translateY(-2px); }
.btn-hope-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; border: 2px solid rgba(255,255,255,.5); color: var(--white);
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  transition: all var(--transition);
}
.btn-hope-outline:hover { background: rgba(255,255,255,.1); }

/* Score row */
.score-row { display: grid; grid-template-columns: 1fr 2fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.score-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.score-main { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; }
.score-label  { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.score-value  { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--green-700); line-height: 1; }
.score-value span { font-size: 1.2rem; color: var(--gray-500); }
.score-annual { font-size: .88rem; color: var(--gray-500); }
.score-level  { padding: .4rem 1.2rem; border-radius: 50px; font-size: .9rem; font-weight: 700; }
.level-low    { background: #dcfce7; color: #166534; }
.level-medium { background: #fef3c7; color: #92400e; }
.level-high   { background: #fee2e2; color: #991b1b; }

.score-compare { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.compare-title { font-weight: 700; margin-bottom: 1.5rem; }
.compare-item  { margin-bottom: 1.2rem; }
.compare-bar-wrap { display: flex; flex-direction: column; gap: .3rem; }
.compare-label { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.compare-bar   { height: 10px; background: var(--gray-100); border-radius: 50px; overflow: hidden; }
.compare-fill  { height: 100%; border-radius: 50px; transition: width .8s ease; }
.compare-you   { background: var(--green-500); }
.compare-avg   { background: #f59e0b; }
.compare-world { background: #ef4444; }
.compare-num   { font-size: .8rem; color: var(--gray-500); }

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.cat-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.cat-top { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.cat-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: color-mix(in srgb, var(--cc, #22c55e) 15%, white);
}
.cat-meta { flex: 1; }
.cat-name    { font-weight: 700; font-size: .95rem; }
.cat-monthly { font-size: .8rem; color: var(--gray-500); }
.cat-pct     { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.cat-bar-track { height: 8px; background: var(--gray-100); border-radius: 50px; overflow: hidden; margin-bottom: .75rem; }
.cat-bar-fill  { height: 100%; border-radius: 50px; transition: width 1s ease; }
.cat-annual { font-size: .82rem; color: var(--gray-500); }

/* Suggestions */
.suggestions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.suggestion-card {
  background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
}
.suggestion-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.suggestion-card p { font-size: .9rem; color: var(--gray-700); line-height: 1.5; }

.report-cta-bottom { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }

/* ─────────────────────────────────────────────────────────────
   HISTORY PAGE
   ─────────────────────────────────────────────────────────── */
.history-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
.history-table { width: 100%; border-collapse: collapse; background: var(--white); }
.history-table th { background: var(--gray-100); padding: .75rem 1rem; text-align: left; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); }
.history-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--gray-100); }
.history-table tbody tr:hover { background: var(--green-50); }
.level-badge { padding: .25rem .7rem; border-radius: 50px; font-size: .8rem; font-weight: 700; }

.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-icon  { font-size: 4rem; margin-bottom: 1rem; }
.empty-state h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .5rem; }
.empty-state p  { color: var(--gray-500); margin-bottom: 1.5rem; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────── */
.footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-leaf { font-size: 1.2rem; }
.footer-brand strong { color: var(--white); font-size: 1.2rem; }
.footer-brand p { margin-top: .5rem; font-size: .85rem; line-height: 1.5; }
.footer-links, .footer-partner { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a, .footer-partner a { font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--green-400); }
.footer-hope { color: var(--green-400); font-weight: 600; font-size: 1rem; }
.footer-bottom { text-align: center; padding-top: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 5rem; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .score-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hope-banner { flex-direction: column; gap: 1rem; text-align: center; }
  .hope-banner-btns { justify-content: center; }
}
@media (max-width: 640px) {
  .auth-left { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .report-header-inner { flex-direction: column; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media print {
  .navbar, .report-header-btns, .report-cta-bottom, .hope-banner-btns { display: none; }
  .report-page { padding-top: 0; }
}


/* ═══════════════════════════════════════════════════════════
   PARTNER LOGOS — Navbar, Footer, Partners Section
   ═══════════════════════════════════════════════════════════ */

/* ── Navbar partner logos ──────────────────────────────────── */
.nav-partners {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--gray-200);
}
.nav-partner-link {
  display: flex;
  align-items: center;
  opacity: .85;
  transition: opacity var(--transition);
}
.nav-partner-link:hover { opacity: 1; }
.nav-partner-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
/* ZOI logosu koyu zemin üzerinde — beyaz çerçeve */
.nav-partner-logo--dark {
  background:  #fff;
  border-radius: 5px;
  padding: 2px 6px;
  height: 26px;
}

/* ── Footer partner columns ────────────────────────────────── */
.footer-inner {
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr; /* 4 sütun */
}
.footer-partner-col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: .25rem;
}
.footer-logo-link {
  display: inline-block;
  width: fit-content;
}
.footer-partner-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
  padding: 4px 8px;
  transition: opacity var(--transition);
}
.footer-partner-logo:hover { opacity: .85; }
.footer-partner-logo--dark {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-partner-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-text-link {
  color: var(--green-400);
  font-weight: 600;
}
.footer-text-link:hover { text-decoration: underline; }

/* ── Footer bottom ─────────────────────────────────────────── */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-inner a { color: rgba(255,255,255,.6); }
.footer-bottom-inner a:hover { color: var(--green-400); }
.footer-sep { opacity: .35; }

/* ── Partners section (index.html) ─────────────────────────── */
.partners-section {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.partner-block {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  text-align: center;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.partner-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sage);
}
.partner-logo {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: opacity var(--transition), transform var(--transition);
}
.partner-logo:hover { opacity: .85; transform: scale(1.03); }
.partner-logo--dark {
  background:#fff;
  border-radius: 8px;
  padding: 8px 16px;
}
.partner-block p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 280px;
}
.partner-divider {
  width: 1px;
  height: 120px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ── SEO İçerik Bölümü ─────────────────────────────────────── */
.seo-content-section { background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%); }

.seo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2.5rem 3rem;
  margin-bottom: 2rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.seo-card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid #bbf7d0;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.seo-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.1rem;
  line-height: 1.25;
}
.seo-card-body { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.seo-card-body p { color: var(--gray-600); line-height: 1.75; font-size: .95rem; }
.seo-card-btn { align-self: flex-start; }

.seo-tags-block {
  text-align: center;
}
.seo-tags-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.seo-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.seo-tag:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.1); text-decoration: none; }
.seo-tag-green  { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.seo-tag-green:hover  { background: #dcfce7; color: #166534; }
.seo-tag-blue   { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.seo-tag-blue:hover   { background: #dbeafe; color: #1e3a8a; }
.seo-tag-purple { background: #faf5ff; color: #6b21a8; border-color: #e9d5ff; }
.seo-tag-purple:hover { background: #f3e8ff; color: #581c87; }
.seo-tag-amber  { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.seo-tag-amber:hover  { background: #fef3c7; color: #78350f; }

/* ── FAQ Bölümü ─────────────────────────────────────────────── */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover {
  border-color: #86efac;
  box-shadow: 0 4px 16px rgba(21,128,61,.08);
}
.faq-item[open] {
  border-color: var(--green-500);
  box-shadow: 0 4px 20px rgba(21,128,61,.12);
}

.faq-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }

.faq-icon-wrap {
  font-size: 1.25rem;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--green-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.faq-item[open] .faq-icon-wrap { background: #dcfce7; }

.faq-q {
  flex: 1;
  font-size: .97rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
}
.faq-item[open] .faq-q { color: var(--green-700); }

.faq-chevron {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .25s ease, color .2s;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--green-600);
}

.faq-body {
  padding: 0 1.4rem 1.25rem 4rem;
  animation: faqSlideIn .22s ease;
}
.faq-body p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-link {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #86efac;
}
.faq-link:hover { color: var(--green-800); }

/* Kapsam rozet satırları (2. SSS) */
.faq-scope-rows { display: flex; flex-direction: column; gap: .65rem; }
.faq-scope-row  { display: flex; align-items: baseline; gap: .75rem; }
.faq-scope-badge {
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: .2rem .65rem; border-radius: 50px; white-space: nowrap; flex-shrink: 0;
}
.faq-s1 { background: #fef3c7; color: #92400e; }
.faq-s2 { background: #dbeafe; color: #1e40af; }
.faq-s3 { background: #dcfce7; color: #166534; }
.faq-scope-row p { font-size: .88rem; color: var(--gray-600); margin: 0; line-height: 1.55; }

@keyframes faqSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Report page Hope banner tweaks ───────────────────────── */
/* ZOI küçük atıf — rapor footer'ında opsiyonel */
.report-built-by {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.report-built-by a { color: var(--green-700); font-weight: 600; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-partners { display: none; }
  .partner-divider { width: 80%; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════ */

/* Hero */
.blog-hero { background: linear-gradient(135deg, var(--green-50), #f0fdf4); padding: 4rem 0 3rem; text-align: center; border-bottom: 1px solid var(--gray-200); }
.blog-hero-inner { max-width: 640px; margin: 0 auto; }
.blog-hero h1 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; margin: .6rem 0 1rem; }
.blog-hero p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.7; }

/* Kart grid */
.blog-list-section { padding-bottom: 5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; margin-bottom: 3.5rem; }

.blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-cover { font-size: 3.5rem; background: var(--green-50); padding: 1.75rem; text-align: center; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .75rem; }
.blog-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; line-height: 1.4; margin-bottom: .65rem; }
.blog-card-title a { color: var(--gray-900); }
.blog-card-title a:hover { color: var(--green-700); }
.blog-card-desc { font-size: .88rem; color: var(--gray-500); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card-meta { font-size: .78rem; color: var(--gray-400); margin-bottom: .75rem; }
.blog-card-sep { margin: 0 .3rem; }
.blog-card-link { font-size: .87rem; font-weight: 700; color: var(--green-700); }
.blog-card-link:hover { color: var(--green-900); }

/* Etiket */
.blog-tag { display: inline-block; font-size: .72rem; font-weight: 700; padding: .18rem .6rem; border-radius: 50px; background: var(--green-100); color: #166534; }
.blog-tag-sm { font-size: .68rem; padding: .12rem .45rem; }

/* Blog yazı sayfası */
.blog-post-page { min-height: 80vh; }
.blog-post-header { background: linear-gradient(135deg, var(--green-50), #f0fdf4); padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--gray-200); }
.blog-post-header-inner { max-width: 760px; margin: 0 auto; }
.blog-back { font-size: .85rem; font-weight: 600; color: var(--green-700); display: inline-block; margin-bottom: 1.5rem; }
.blog-back:hover { color: var(--green-900); }
.blog-post-cover-emoji { font-size: 3rem; margin-bottom: 1rem; }
.blog-post-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.blog-post-header h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1.3; margin-bottom: .9rem; }
.blog-post-lead { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.1rem; }
.blog-post-meta-row { font-size: .82rem; color: var(--gray-400); display: flex; gap: .25rem; flex-wrap: wrap; }
.blog-meta-sep { margin: 0 .2rem; }

/* İçerik alanı */
.blog-post-body { max-width: 760px; margin: 0 auto; padding: 3rem 0 5rem; }
.blog-post-content { line-height: 1.8; color: var(--gray-700); }
.blog-post-content h2 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--gray-900); margin: 2.5rem 0 .9rem; padding-bottom: .5rem; border-bottom: 2px solid var(--green-100); }
.blog-post-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin: 1.75rem 0 .6rem; }
.blog-post-content p { margin-bottom: 1.1rem; }
.blog-post-content ul, .blog-post-content ol { padding-left: 1.4rem; margin-bottom: 1.1rem; }
.blog-post-content li { margin-bottom: .4rem; }
.blog-post-content strong { color: var(--gray-900); }
.blog-lead-para { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; border-left: 4px solid var(--green-400); padding-left: 1.1rem; margin-bottom: 2rem; }

/* Blog içi özel bileşenler */
.blog-info-box { background: #f0fdf4; border: 1px solid #86efac; border-radius: 10px; padding: 1rem 1.25rem; font-size: .9rem; margin: 1.5rem 0; color: #166534; }
.blog-formula-box { background: var(--gray-100); border-radius: 8px; padding: .85rem 1.25rem; font-family: monospace; font-size: .95rem; text-align: center; margin: 1.25rem 0; color: var(--gray-900); border: 1px solid var(--gray-200); }
.blog-cta-inline { margin: 2rem 0; }
.blog-ol { padding-left: 1.4rem; counter-reset: none; }
.blog-ol li { margin-bottom: .7rem; }

/* Scope kartlar (yazı içi) */
.blog-scope-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.25rem 0 1.5rem; }
.blog-scope-card { border-radius: 10px; padding: 1.25rem; font-size: .88rem; }
.blog-scope-card h3 { font-size: .95rem; font-weight: 700; margin: .4rem 0 .6rem; }
.blog-scope-card ul { padding-left: 1.1rem; margin: 0; }
.blog-scope-card li { margin-bottom: .3rem; color: var(--gray-600); }
.blog-scope1 { background: #fffbeb; border: 1px solid #fde68a; }
.blog-scope2 { background: #eff6ff; border: 1px solid #bfdbfe; }
.blog-scope3 { background: #f0fdf4; border: 1px solid #86efac; }
.blog-scope-badge { display: inline-block; font-size: .72rem; font-weight: 800; padding: .18rem .65rem; border-radius: 50px; background: #fef3c7; color: #92400e; margin-bottom: .5rem; }

/* Veri tablosu (yazı içi) */
.blog-data-table { overflow-x: auto; margin: 1.25rem 0; border-radius: 10px; border: 1px solid var(--gray-200); }
.blog-data-table table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.blog-data-table th { background: var(--gray-100); padding: .55rem 1rem; text-align: left; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-500); }
.blog-data-table td { padding: .55rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.blog-data-table tbody tr:last-child td { border-bottom: none; }
.blog-scope-pill { display: inline-block; font-size: .7rem; font-weight: 700; padding: .12rem .5rem; border-radius: 50px; }
.s1 { background: #fef3c7; color: #92400e; }
.s2 { background: #dbeafe; color: #1e40af; }
.s3 { background: #dcfce7; color: #166534; }

/* WhatsApp CTA (yazı altı) */
.blog-wa-cta { background: linear-gradient(135deg, #f0fdf4, #ecfdf5); border: 1.5px solid #86efac; border-radius: var(--radius); padding: 2rem; display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; margin: 3rem 0; }
.blog-wa-cta-text { flex: 1; min-width: 240px; }
.blog-wa-cta-text h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #166534; margin-bottom: .5rem; }
.blog-wa-cta-text p { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }
.blog-wa-cta-btns { display: flex; flex-direction: column; gap: .65rem; flex-shrink: 0; }

/* İlgili yazılar */
.blog-related { border-top: 1px solid var(--gray-200); padding-top: 2.5rem; margin-top: 2rem; }
.blog-related-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--gray-900); }
.blog-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.blog-related-card { display: flex; gap: .85rem; align-items: flex-start; background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 1rem; transition: border-color var(--transition), box-shadow var(--transition); color: var(--gray-900); }
.blog-related-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-sm); }
.blog-related-emoji { font-size: 1.6rem; flex-shrink: 0; }
.blog-related-card-tags { margin-bottom: .3rem; }
.blog-related-card-title { font-size: .87rem; font-weight: 700; line-height: 1.4; margin-bottom: .25rem; }
.blog-related-card-meta { font-size: .74rem; color: var(--gray-400); }

/* Blog alt CTA */
.blog-bottom-cta { background: linear-gradient(135deg, #14532d, #15803d); border-radius: var(--radius); padding: 2.5rem; color: var(--white); }
.blog-bottom-cta-inner { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.blog-bottom-cta h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: .4rem; }
.blog-bottom-cta p { font-size: .9rem; opacity: .85; }
.blog-bottom-cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

/* Footer blog linki */
.footer-links a[href*="blog"] { font-weight: 600; }

@media (max-width: 700px) {
  .blog-post-header h1 { font-size: 1.5rem; }
  .blog-wa-cta { flex-direction: column; }
  .blog-wa-cta-btns { flex-direction: row; flex-wrap: wrap; }
  .blog-bottom-cta-inner { flex-direction: column; }
  .blog-hero h1 { font-size: 1.75rem; }
}

/* ── WhatsApp Buton Varyantı ────────────────────────────────── */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  display: inline-flex;
  align-items: center;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

/* seo-card iki buton yan yana */
.seo-card-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.25rem;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-bar { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: .55rem 0; font-size: .8rem; }
.breadcrumb-list { display: flex; align-items: center; gap: .4rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: .4rem; color: var(--gray-400); }
.breadcrumb-list li::after { content: "/"; color: var(--gray-300); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--green-700); font-weight: 600; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li[aria-current="page"] { color: var(--gray-600); font-weight: 600; }

/* ── Blog kart güncelleme ────────────────────────────────────── */
/* Tıklanabilir tam kart */
.blog-card { cursor: pointer; }
.blog-card:hover .blog-card-cta { gap: .5rem; }
.blog-card-cta {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .85rem; font-weight: 700; color: var(--green-700);
  margin-top: auto; padding-top: .75rem;
  transition: gap .15s ease;
}
.blog-card-cta:hover { color: var(--green-900); }
.blog-card-desc { -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }

/* RSS link */
.blog-rss-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: #e85d1a;
  margin-top: .75rem; opacity: .75; transition: opacity .15s;
}
.blog-rss-link:hover { opacity: 1; }

/* Kategori etiketleri (açık, header üzerinde) */
.blog-tag-light {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
}

/* ── Blog yazı sayfası (2 sütunlu layout) ───────────────────── */
.blog-post-header {
  padding: 3rem 0 2.5rem;
  border-bottom: none;
}
.blog-post-header h1 { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.2); }
.blog-post-lead { color: rgba(255,255,255,.88); }
.blog-post-meta-row { color: rgba(255,255,255,.75); }
.blog-meta-author-link { color: rgba(255,255,255,.88); font-weight: 600; }
.blog-meta-author-link:hover { color: #fff; }

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 2rem;
}

/* Sidebar */
.blog-post-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 80px; }
.blog-sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; }
.blog-sidebar-title { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: .85rem; }
.blog-sidebar-row { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; margin-bottom: .45rem; }
.blog-sidebar-row span { color: var(--gray-500); }
.blog-sidebar-row strong { color: var(--gray-800); }
.blog-sidebar-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--gray-100); }
.blog-sidebar-cta { background: linear-gradient(135deg, #f0fdf4, #ecfdf5); border: 1.5px solid #86efac; border-radius: var(--radius); padding: 1.1rem; }
.blog-sidebar-cta p { font-size: .82rem; color: var(--gray-600); line-height: 1.5; margin-bottom: .75rem; }
.blog-sidebar-post { display: flex; gap: .75rem; align-items: center; padding: .65rem 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-800); transition: color .15s; }
.blog-sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.blog-sidebar-post:hover { color: var(--green-700); }
.blog-sidebar-post-emoji { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.blog-sidebar-post-title { font-size: .82rem; font-weight: 600; line-height: 1.4; }
.blog-sidebar-post-meta { font-size: .72rem; color: var(--gray-400); margin-top: .15rem; }

/* No results */
.blog-no-results { text-align: center; color: var(--gray-500); padding: 2rem 0; font-size: .95rem; }

@media (max-width: 900px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-post-sidebar { position: static; }
}

/* ── WhatsApp Kayan Buton ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float-label { white-space: nowrap; }

@media (max-width: 480px) {
  .whatsapp-float { padding: 13px; border-radius: 50%; }
  .whatsapp-float-label { display: none; }
}