@font-face {
    font-family: 'Inter';
    src: url('../font/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/inter-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* --- DEĞİŞKENLER VE SIFIRLAMA --- */
:root {
  --bg-top: #022C12; /* Top banner koyu yeşili */
  --bg-hdr: #F4F6F8; /* Resimdeki krem/kırık beyaz arkaplan */
  --txt-main: #022C12; /* İstenilen menü ve metin rengi */
  --btn-dk: #0B1D3A; /* İstenilen buton arkaplanı */
  --font: 'Inter', Arial, sans-serif;
  --trans: all 0.2s ease-in-out;
}

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

/* --- PREMIUM TIPOGRAFİ VE GÖVDE AYARLARI --- */
body { 
  font-family: var(--font); 
  color: var(--txt-main); 
  background: var(--bg-hdr); 
  
  /* Inter fontu için kusursuzlaştırma ayarları */
  line-height: 1.6; 
  letter-spacing: -0.011em; 
  text-rendering: optimizeLegibility; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; 
  font-feature-settings: "cv02", "cv03", "cv04", "cv11"; 
}

a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
button, input, span {font-family: inherit;}



















/* -------------------------------- MAIN HEADER --- */
.hdr {
  background: var(--bg-hdr);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hdr-in {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Sol Kısım (Logo ve Menü) */
.hdr-l {
  display: flex;
  align-items: center;
  gap: 5rem; 
}
.lg svg {
  width: 200px;
  height: 33px;
  display: block;
}

/* Navigasyon */
.nl {
  display: flex;
  gap: 2rem;
}
.nl li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--txt-main);
  letter-spacing: -0.015em; /* Menü linkleri daha tok dursun diye eksi aralık */
}
.nl li a:hover {
  opacity: 0.7; 
}

/* Sağ Kısım (Aksiyon Butonları) */
.acts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Buton Tasarımları */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 10px; 
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-block;
  letter-spacing: -0.01em; /* Vurgulu ve profesyonel buton metni */
}
.btn-dk {
  background: var(--btn-dk); 
  color: #ffffff;
}
.btn-dk:hover {
  background: #011a0a; 
}

/* Mobil Buton */
.m-btn {
  display: none;
  background: none;
  border: none;
  color: var(--txt-main);
  cursor: pointer;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
  .hdr-l { gap: 1.5rem; }
  .nl { gap: 1rem; }
  .acts { gap: 1rem; }
}

@media (max-width: 768px) {
  .hdr-in { padding: 1rem 1.5rem; }
  .m-btn { display: block; }
  
/* Offcanvas overlay */
.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}
.offcanvas-overlay.active {
    display: block;
}

/* Offcanvas panel */
#mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-hdr);
    z-index: 999;
    transition: var(--trans);
    padding: 2rem 2rem 2rem;
    overflow-y: auto;
    box-shadow: -6px 0 24px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
}
#mainNav.active {
    right: 0;
}

/* acts artık nav içinde akar, ayrı konumlandırma yok */
.acts {display: none;}
  .nl { flex-direction: column; align-items: flex-start; width: 100%; }
}



















/* -------------------------------- MAIN FOOTER --- */
.ftr {
  background: #F4F6F8;
  border-top: 1px solid rgba(0, 0, 0, 0.05); /* Header ile ince bir sınır */
  padding: 4rem 0 2rem;
  margin-top: auto; /* Sayfa içeriği az olsa bile footeri en alta iter */
}
.ftr-in {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Üst Kısım: İki Kolonlu Yapı (Logo ve CTA) */
.ftr-top {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Kutu ile logoyu dikeyde şık bir şekilde ortalar */
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.ftr-brand {
  max-width: 400px;
}
.ftr-brand svg {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
.ftr-desc {
  font-size: 0.95rem;
  color: var(--txt-lt, #64748b); /* Yumuşak bir gri tonu */
  line-height: 1.6;
  padding-left:7px
}

/* --- YENİ CTA (BLOG) KUTUSU --- */
.ftr-cta {
  background: white; /* Koyu yeşilin %3 opaklıktaki premium hali */
  padding: 2.5rem 3rem; 
  border-radius: 24px; 
  text-align: left;
}
.cta-in h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--txt-main);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.cta-in p {
  font-size: 0.95rem;
  color: var(--txt-lt, #64748b);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 570px;
}

/* Alt Kısım: Telif ve Legal */
.ftr-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 1rem;
}
.cpy {
  font-size: 0.85rem;
  color: #94a3b8; 
}
.ftr-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none; /* WP'den gelen liste noktalarını gizle */
}
.ftr-legal li a {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}
.ftr-legal li a:hover {
  color: var(--txt-main);
}

/* --- FOOTER MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
  .ftr { padding: 3rem 0 2rem; }
  .ftr-in { padding: 0 1.5rem; }
  
  .ftr-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  /* Mobilde CTA kutusunu tam genişliğe yayar ve iç boşluğu daraltır */
  .ftr-cta {
    width: 100%; 
    max-width: 100%;
    padding: 2rem; 
  }
  
  .ftr-bot {
    flex-direction: column-reverse; /* Mobilde telif hakkı yazısını en alta atar */
    align-items: flex-start;
  }
  
  .ftr-legal {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
  }
}



















/* -------------------------------- COOKIE BAR DESIGN --- */
.cookie-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: min(680px, calc(100% - 2rem));
    background: #0a2540;
    color: #e8e4d9;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
}
.cookie-bar.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.cookie-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}
.cookie-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: #c0c6d8;
    margin: 0;
    flex: 1;
}
.cookie-text a {
    color: #e8e4d9;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-text a:hover {
    color: #fff;
}
.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.15s;
}
.cookie-btn:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

.cookie-decline {
    background: rgba(255,255,255,0.06);
    opacity: 1;
    border: 1px solid rgba(255,255,255,0.15);
    color: #d6e4f0;
}

/* Mobil */
@media (max-width: 600px) {
    .cookie-bar {
        flex-wrap: wrap;
        bottom: 1rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}



















/* -------------------------------- HERO SECTION --- */
.blc-hr {
  background: #F4F6F8;
  padding: 60px 24px 20px;
}
.blc-hr-in {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.blc-hr-ttl {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0a2540;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  margin-left: auto;
  margin-right: auto;
}
.blc-hr-sub {
  font-size: 17px;
  color: #3d5a7a;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 32px;
}
 


















/* -------------------------------- TOOL SECTION --- */
.blc input, .blc select, .blc button  {
    font-family: inherit;
}
.blc-tool-sec {
  background: #F4F6F8;
  padding: 0 24px 80px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.blc-tool-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
 
/* ── CALCULATOR ── */
.blc {
  background: #fff;
  border: 1px solid #d0dae6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(10,37,64,0.07);
  font-family: inherit;
}
 
/* ── INPUT + SLIDER GROUPS — yatay grid ── */
.blc-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #e4ecf4;
}
 
.blc-field-group {
  padding: 20px 24px;
  border-right: 1px solid #e4ecf4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blc-field-group:last-child {
  border-right: none;
}
 
.blc-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7a9ab8;
}
.blc-label .blc-i {
  cursor: pointer;
  color: #aac0d6;
  font-size: 13px;
  font-style: normal;
}
 
/* Input row */
.blc-input-row {
  display: flex;
  align-items: center;
  border: 1px solid #d0dae6;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f9fb;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.blc-input-row:focus-within {
  border-color: #0a2540;
  box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
  background: #fff;
}
.blc-prefix,
.blc-suffix {
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #7a9ab8;
  background: transparent;
  white-space: nowrap;
  height: 42px;
  display: flex;
  align-items: center;
  font-family: inherit;
}
.blc-input-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #0a2540;
  height: 42px;
  min-width: 0;
  padding: 0 4px;
  -moz-appearance: textfield;
  font-family: inherit;
}
.blc-input-row input::-webkit-outer-spin-button,
.blc-input-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.blc-input-row input::placeholder {
  color: #c0cdd8;
  font-weight: 400;
}
 
/* Select */
.blc-select-wrap {
  position: relative;
  border: 1px solid #d0dae6;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f9fb;
  transition: border-color 0.15s;
}
.blc-select-wrap:focus-within {
  border-color: #0a2540;
  box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
}
.blc-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a9ab8;
  pointer-events: none;
  font-size: 11px;
}
.blc-select-wrap select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #0a2540;
  height: 42px;
  padding: 0 30px 0 12px;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}
 
/* Slider — her grubun altında */
.blc-slider-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #aac0d6;
  margin-bottom: 4px;
}
.blc-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: #d0dae6;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.blc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0a2540;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(10,37,64,0.2);
  cursor: pointer;
}
.blc-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0a2540;
  border: 2px solid #fff;
  cursor: pointer;
}
 
/* Results bar */
.blc-results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  padding: 24px 28px;
  gap: 0;
  border-bottom: 1px solid #e4ecf4;
}
.blc-res-item {
  padding-right: 28px;
  border-right: 1px solid #e4ecf4;
  margin-right: 28px;
}
.blc-res-item:last-of-type {
  border-right: none;
}
.blc-res-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7a9ab8;
  margin-bottom: 6px;
}
.blc-res-val {
  font-size: 28px;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: -0.02em;
  line-height: 1;
}
.blc-res-sub {
  font-size: 11px;
  color: #aac0d6;
  margin-top: 3px;
}
.blc-calc-btn {
  background: #0a2540;
  color: #eef2f5;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
  letter-spacing: 0.01em;
  font-family: inherit;
}
.blc-calc-btn:hover {
  background: #122f56;
  transform: translateY(-1px);
}
 
/* Footer bar */
.blc-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: #f7f9fb;
  gap: 12px;
  flex-wrap: wrap;
}
.blc-footer-note {
  font-size: 12px;
  color: #7a9ab8;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}
.blc-amort-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #d0dae6;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #0a2540;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.blc-amort-btn:hover {
  border-color: #0a2540;
  background: #eef2f5;
}
 
/* Amortization table */
.blc-amort {
  display: none;
  border-top: 1px solid #e4ecf4;
  overflow-x: auto;
}
.blc-amort.open {
  display: block;
}
.blc-amort table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.blc-amort thead tr {
  background: #f7f9fb;
}
.blc-amort th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a9ab8;
  border-bottom: 1px solid #e4ecf4;
}
.blc-amort td {
  padding: 10px 16px;
  color: #0a2540;
  border-bottom: 1px solid #f0f4f8;
  font-weight: 500;
}
.blc-amort tr:last-child td {
  border-bottom: none;
}
.blc-amort tr:hover td {
  background: #f7f9fb;
}
.blc-amort .amort-interest { color: #c0392b; }
.blc-amort .amort-principal { color: #1a6ed8; }
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .blc-fields-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blc-field-group:nth-child(2) {
    border-right: none;
  }
  .blc-field-group:nth-child(3) {
    border-top: 1px solid #e4ecf4;
  }
  .blc-results {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
  }
  .blc-res-item {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
  .blc-calc-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .blc-hr-ttl { font-size: 25px}
  .blc-hr-sub { font-size:14px}
  .blc-hr-tg { font-size: 10px}
  .blc-tool-sec { padding:0 15px 80px}
}
 
@media (max-width: 600px) {
  .blc-fields-grid {
    grid-template-columns: 1fr;
  }
  .blc-field-group {
    border-right: none;
    border-bottom: 1px solid #e4ecf4;
  }
  .blc-field-group:last-child {
    border-bottom: none;
  }
  .blc-results {
    grid-template-columns: 1fr;
  }
  .blc-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
  }
  .blc-amort-btn {
    width: 100%;
    justify-content: center;
  }
  .blc-footer-note {
    min-width: unset;
    font-size: 10px;
  }
}



















/* -------------------------------- HOW TO SECTION --- */
.hiw {
  background: #ffffff;
  padding: 80px 24px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.customhdng-title {
  font-size: 26px;
  font-weight: 800;
  color: #0a2540;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  text-align: center;
}
.customhdng-subtitle {
  font-size: 14px;
  color: #3d5a7a;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

/* --- Formula --- */
.hiw-fml-box {
  background: #f0f6f2;
  border: 1px solid #c6ddd0;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 0 auto 40px;
  max-width: 680px;
  text-align: left;
}
.hiw-fml-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #5a8070;
  margin: 0 0 10px;
}
.hiw-fml-eq {
  font-size: 17px;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  word-break: break-word;
}
.hiw-fml-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.hiw-fml-legend li {
  font-size: 13px;
  color: #4a6560;
}
.hiw-fml-legend strong {
  color: #0a2540;
  font-weight: 700;
}

/* --- Sub heading --- */
.hiw-sub {
  font-size: 18px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 18px;
  text-align: center;
}

/* --- Steps --- */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}
.hiw-step {
  background: #F4F6F8;
  border: 1px solid rgba(26, 46, 26, .08);
  border-radius: 16px;
  padding: 24px 20px;
  transition: border-color .2s, transform .2s;
}
.hiw-step:hover {
  border-color: rgba(26, 46, 26, .18);
  transform: translateY(-2px);
}
.hiw-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid rgba(26, 46, 26, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2e1a;
  margin-bottom: 14px;
}
.hiw-step h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a2e1a;
  margin: 0 0 8px;
  line-height: 1.3;
}
.hiw-step p {
  font-size: 12.5px;
  color: #6b7e6b;
  line-height: 1.65;
  margin: 0;
}

/* --- Examples --- */
.hiw-ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 40px;
  text-align: left;
}
.hiw-ex-card {
  background: #F4F6F8;
  border: 1px solid rgba(26, 46, 26, .08);
  border-radius: 16px;
  padding: 22px 20px;
}
.hiw-ex-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #5a8070;
  margin: 0 0 4px;
}
.hiw-ex-title {
  font-size: 15px;
  font-weight: 800;
  color: #0a2540;
  margin: 0 0 16px;
}
.hiw-ex-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 14px;
}
.hiw-ex-table td {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(26, 46, 26, .07);
  color: #4a6560;
  vertical-align: middle;
}
.hiw-ex-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #1a2e1a;
}
.hiw-ex-hl td {
  color: #0a5c3a !important;
  font-weight: 800 !important;
  font-size: 14px;
  border-bottom: 2px solid #c6ddd0 !important;
  padding-bottom: 10px;
}
.hiw-ex-note {
  font-size: 12px;
  color: #6b7e6b;
  line-height: 1.6;
  margin: 0;
}

/* --- Note pill --- */
.hiw-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: #0B1D3A;
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.8;
}
.hiw-note svg {
  flex-shrink: 0;
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiw-ex-grid {
    grid-template-columns: 1fr;
  }
  .hiw-fml-legend {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hiw {
    padding: 60px 20px;
  }
  .customhdng-title {
    font-size: 22px;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
  }
  .hiw-fml-eq {
    font-size: 14px;
  }
  .hiw-note {
    border-radius: 12px;
    text-align: left;
    align-items: flex-start;
  }
}


















/* -------------------------------- AMORTIZATION SECTION --- */
.blc-ae {
  padding: 80px 24px;
  background-color: #F4F6F8;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.blc-ae-in {
  max-width: 1200px;
  margin: 0 auto;
}
.blc-ae-head {
  text-align: center;
  margin-bottom: 36px;
}

/* Tabs */
.blc-ae-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.blc-ae-tab {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #d0dae6;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #3d5a7a;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.blc-ae-tab.active,
.blc-ae-tab:hover {
  background: #0B1D3A;
  border-color: #0B1D3A;
  color: #eef2f5;
}

/* Scenario */
.blc-ae-scenario {
  display: none;
}
.blc-ae-scenario.active {
  display: block;
}

/* Summary strip */
.blc-ae-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #d0dae6;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid #d0dae6;
  border-bottom: none;
}
.blc-ae-sum-item {
  background: #0B1D3A;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blc-ae-sum-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 242, 245, 0.65);
}
.blc-ae-sum-val {
  font-size: 17px;
  font-weight: 800;
  color: #eef2f5;
  letter-spacing: -0.01em;
}

/* Table */
.blc-ae-table-wrap {
  background: #fff;
  border: 1px solid #d0dae6;
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.blc-ae-table-scroll {
  overflow-x: auto;
  max-height: 400px;
  overflow-y: auto;
}
.blc-ae-table-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.blc-ae-table-scroll::-webkit-scrollbar-thumb {
  background: #d0dae6;
  border-radius: 2px;
}
.blc-ae-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.blc-ae-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.blc-ae-table thead tr {
  background: #f7f9fb;
}
.blc-ae-table th {
  padding: 11px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7a9ab8;
  border-bottom: 1px solid #e4ecf4;
  white-space: nowrap;
}
.blc-ae-table td {
  padding: 10px 16px;
  color: #0a2540;
  border-bottom: 1px solid #f0f4f8;
  font-weight: 500;
  white-space: nowrap;
}
.blc-ae-table tr:last-child td {
  border-bottom: none;
}
.blc-ae-table tr:hover td {
  background: #f7f9fb;
}
.blc-ae-row-alt td {
  background: #fafbfc;
}
.blc-ae-table .col-principal {
  color: #4a6fcf;
  font-weight: 600;
}
.blc-ae-table .col-interest {
  color: #c0392b;
  font-weight: 600;
}
.blc-ae-table .col-year {
  color: #7a9ab8;
  font-weight: 700;
}

/* Note */
.blc-ae-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  color: #7a9ab8;
  line-height: 1.6;
}
.blc-ae-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 700px) {
  .blc-ae {
    padding: 60px 20px;
  }
  .blc-ae-summary {
    grid-template-columns: 1fr 1fr;
  }
  .blc-ae-sum-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .blc-ae-sum-val {
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .blc-ae-summary {
    grid-template-columns: 1fr;
  }
}



















/* -------------------------------- WHAT AFFECTS YOUR RATE -- */
/* ============================================================
   SECTION 05 — What Affects Your Boat Loan Interest Rate?
   Prefix: blcr-
   ============================================================ */
.blcr-wrap {
  background: #fff;
  padding: 80px 24px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.blcr-in {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.blcr-head {
  margin-bottom: 40px;
}



/* Block (credit score section) */
.blcr-block {
  margin-bottom: 48px;
}
.blcr-block-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blcr-block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0a2540;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.blcr-block-desc {
  font-size: 14px;
  color: #3d5a7a;
  line-height: 1.7;
  margin: 0 0 16px;
}

/* Table */
.blcr-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e4ecf4;
}
.blcr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.blcr-table thead tr {
  background: #f4f7fb;
}
.blcr-table th {
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #5a7a9a;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e4ecf4;
}
.blcr-table td {
  padding: 13px 16px;
  font-size: 13px;
  color: #0a2540;
  border-bottom: 1px solid #f0f4f8;
  vertical-align: middle;
  line-height: 1.5;
}
.blcr-table tbody tr:last-child td {
  border-bottom: none;
}
.blcr-table tbody tr:hover {
  background: #fafcff;
}
.blcr-tr-best td {
  background: #f0fdf6;
}
.blcr-tr-poor td {
  background: #fff8f8;
}
.blcr-tier {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.blcr-tier-ex   { background: #d1fae5; color: #065f46; }
.blcr-tier-good { background: #dbeafe; color: #1e40af; }
.blcr-tier-fair { background: #fef9c3; color: #92400e; }
.blcr-tier-poor { background: #fee2e2; color: #991b1b; }

.blcr-source {
  font-size: 12px;
  color: #7a96b0;
  margin-top: 10px;
  font-style: italic;
}

/* Factor cards grid */
.blcr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e4ecf4;
  border: 1px solid #e4ecf4;
  border-radius: 16px;
  overflow: hidden;
}
.blcr-card {
  background: #fff;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blcr-card-wide {
  grid-column: span 3;
  border-top: 1px solid #e4ecf4;
}
.blcr-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.blcr-card-icon {
  width: 38px;
  height: 38px;
  background: #eef2f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blcr-card-icon svg {
  stroke: #0a2540;
}
.blcr-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0a2540;
  margin: 0;
  line-height: 1.3;
}
.blcr-card p {
  font-size: 13px;
  color: #3d5a7a;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

/* Tags */
.blcr-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.blcr-tag-green { background: #e0f4e8; color: #1a6e3a; }
.blcr-tag-red   { background: #fde8e8; color: #c0392b; }
.blcr-tag-blue  { background: #e0ecfc; color: #1a4ed8; }

/* Lender chips */
.blcr-lender-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.blcr-lender-chip {
  font-size: 12px;
  font-weight: 600;
  color: #0a2540;
  background: #f0f4f8;
  border: 1px solid #dde6ef;
  border-radius: 20px;
  padding: 5px 13px;
  line-height: 1.4;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .blcr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blcr-card-wide {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .blcr-wrap {
    padding: 52px 16px;
  }
  .blcr-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .blcr-card-wide {
    grid-column: span 1;
  }
  .blcr-block-title {
    font-size: 16px;
  }
  .blcr-lender-row {
    gap: 6px;
  }
  .blcr-lender-chip {
    font-size: 11px;
    padding: 4px 10px;
  }
}


















/* -------------------------------- CREDIT SCORE SECTION --- */
/* ============================================================
   SECTION 06 — Boat Loan Rates by Credit Score
   Prefix: blccs-
   ============================================================ */
.blccs-wrap {
  padding: 100px 24px;
  background-color: #f4f6f8;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.blccs-in {
  max-width: 1200px;
  margin: 0 auto;
}

/* Table wrapper */
.blccs-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #d0dae6;
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.blccs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

/* Head */
.blccs-table thead tr {
  background: #0b1d3a;
}
.blccs-table th {
  padding: 13px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #c8d8eb;
  white-space: nowrap;
}

/* Body rows */
.blccs-table td {
  padding: 14px 18px;
  color: #0a2540;
  border-bottom: 1px solid #e4ecf4;
  font-size: 13px;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1.45;
  background: #fff;
}
.blccs-table tr:last-child td {
  border-bottom: none;
}
.blccs-table tbody tr:hover td {
  background: #f7f9fb;
}
.blccs-row-best td {
  background: #f0fdf6 !important;
}
.blccs-row-poor td {
  background: #fff8f8 !important;
}

/* Tier cell: pill + bar stacked */
.blccs-tier-cell {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 110px;
}
.blccs-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.blccs-pill-ex   { background: #d1fae5; color: #065f46; }
.blccs-pill-good { background: #dbeafe; color: #1e40af; }
.blccs-pill-fair { background: #fef9c3; color: #92400e; }
.blccs-pill-poor { background: #fee2e2; color: #991b1b; }

.blccs-bar-track {
  height: 5px;
  background: #e4ecf4;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  max-width: 120px;
}
.blccs-bar-fill {
  height: 100%;
  border-radius: 3px;
}
.blccs-bar-ex   { background: #059669; }
.blccs-bar-good { background: #2563eb; }
.blccs-bar-fair { background: #d97706; }
.blccs-bar-poor { background: #dc2626; }

/* Score column */
.blccs-score {
  font-weight: 700;
  font-size: 13px;
  color: #0a2540;
  white-space: nowrap;
}

/* APR column — highlighted */
.blccs-apr {
  font-size: 14px;
  color: #0a2540;
}
.blccs-apr strong {
  font-weight: 800;
}

/* Outlook column */
.blccs-outlook {
  font-size: 12px;
  font-weight: 500;
}
.blccs-outlook-ex   { color: #065f46; }
.blccs-outlook-good { color: #1e40af; }
.blccs-outlook-fair { color: #92400e; }
.blccs-outlook-poor { color: #991b1b; }

/* Average note */
.blccs-avg-note {
  font-size: 13px;
  color: #3d5a7a;
  font-style: italic;
  margin-bottom: 10px;
}

/* Disclaimer */
.blccs-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #7a9ab8;
  line-height: 1.65;
  margin-bottom: 28px;
}
.blccs-note svg {
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #7a9ab8;
}

/* Tip row */
.blccs-tip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.blccs-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #dde6ef;
  border-radius: 12px;
  padding: 16px 18px;
}
.blccs-tip svg {
  flex-shrink: 0;
  stroke: #0a2540;
  margin-top: 2px;
}
.blccs-tip div {
  font-size: 13px;
  color: #3d5a7a;
  line-height: 1.6;
}
.blccs-tip strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 2px;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 720px) {
  .blccs-tip-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .blccs-wrap {
    padding: 52px 16px;
  }
  .blccs-table th,
  .blccs-table td {
    padding: 11px 12px;
    font-size: 12px;
  }
  .blccs-bar-track {
    display: none;
  }
  .blccs-outlook {
    display: none;
  }
  .blccs-table {
    min-width: 400px;
  }
}



















/* -------------------------------- NEW VS USED SECTION --- */
/* ============================================================
   SECTION 07 — New vs. Used Boat Loan Rates
   Prefix: nvu2-
   ============================================================ */
.nvu2-section {
  padding: 80px 24px;
  background-color: #fff;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.nvu2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Two card layout ── */
.nvu2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nvu2-card {
  background: #fff;
  border: 1px solid #d0dae6;
  border-radius: 14px;
  overflow: hidden;
}
.nvu2-card__head {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nvu2-card--new .nvu2-card__head { background: #0a2540; }
.nvu2-card--used .nvu2-card__head { background: #f0f4f8; }

.nvu2-card__label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.nvu2-card--new .nvu2-card__label { color: #eef2f5; }
.nvu2-card--used .nvu2-card__label { color: #0a2540; }

.nvu2-card__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.nvu2-card--new .nvu2-card__tag {
  background: rgba(255,255,255,0.12);
  color: #aaccdd;
}
.nvu2-card--used .nvu2-card__tag {
  background: #e4ecf4;
  color: #3d5a7a;
}

.nvu2-card__body { padding: 4px 0; }

.nvu2-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #f0f4f8;
  gap: 12px;
}
.nvu2-stat:last-child { border-bottom: none; }

.nvu2-stat__key {
  font-size: 13px;
  color: #7a9ab8;
  font-weight: 500;
}
.nvu2-stat__val {
  font-size: 13px;
  font-weight: 700;
  color: #0a2540;
  text-align: right;
}
.nvu2-stat__val--blue  { color: #1a6ed8; }
.nvu2-stat__val--amber { color: #d68910; }
.nvu2-stat__val--red   { color: #c0392b; }
.nvu2-stat__val--green { color: #1a6e3a; }

/* ── Callout ── */
.nvu2-callout {
  background: #0a2540;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.nvu2-callout__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #eef2f5;
}
.nvu2-callout__text {
  font-size: 14px;
  color: #aaccdd;
  line-height: 1.75;
  margin: 0;
}
.nvu2-callout__text strong { color: #eef2f5; }

/* ── Comparison table ── */
.nvu2-table-wrap {
  background: #fff;
  border: 1px solid #d0dae6;
  border-radius: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nvu2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 520px;
}
.nvu2-table thead tr { background: #0a2540; }
.nvu2-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6a9ab8;
}
.nvu2-table .th-new  { color: #7ab8e8; }
.nvu2-table .th-used { color: #aaccdd; }
.nvu2-table .th-win  { color: #9aba9a; }

.nvu2-table td {
  padding: 11px 16px;
  color: #0a2540;
  border-bottom: 1px solid #f0f4f8;
  font-weight: 500;
  vertical-align: middle;
}
.nvu2-table tr:last-child td { border-bottom: none; }
.nvu2-table tr:hover td      { background: #f7f9fb; }

.nvu2-table .td-new,
.nvu2-table .td-used { color: #3d5a7a; }
.nvu2-table .td-win  { text-align: center; }

.nvu2-sep td {
  background: #f0f4f8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a9ab8;
  padding: 8px 16px;
  border-bottom: 1px solid #e4ecf4;
}
.nvu2-sep:hover td { background: #f0f4f8 !important; }

.nvu2-win {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.nvu2-win--new  { background: #e0ecfc; color: #1a4ed8; }
.nvu2-win--used { background: #e0f4e8; color: #1a6e3a; }

/* ── Age-based rate grid ── */
.nvu2-age-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #e4ecf4;
  border: 1px solid #e4ecf4;
  border-radius: 14px;
  overflow: hidden;
}
.nvu2-age-item {
  background: #fff;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nvu2-age-label {
  font-size: 12px;
  font-weight: 700;
  color: #0a2540;
  line-height: 1.3;
}
.nvu2-age-apr {
  font-size: 16px;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: -0.02em;
}
.nvu2-age-term {
  font-size: 11px;
  color: #7a9ab8;
  font-weight: 500;
  margin-bottom: 4px;
}
.nvu2-age-bar {
  height: 5px;
  background: #e4ecf4;
  border-radius: 3px;
  overflow: hidden;
  margin-top: auto;
}
.nvu2-age-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* ── Disclaimer ── */
.nvu2-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: #7a9ab8;
  line-height: 1.65;
}
.nvu2-disclaimer svg { flex-shrink: 0; margin-top: 1px; stroke: #7a9ab8; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .nvu2-age-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .nvu2-layout { grid-template-columns: 1fr; }
  .nvu2-table { font-size: 12px; }
  .nvu2-table th,
  .nvu2-table td { padding: 9px 12px; }
}
@media (max-width: 480px) {
  .nvu2-section { padding: 52px 16px; }
  .nvu2-age-grid { grid-template-columns: 1fr 1fr; }
}



















/* -------------------------------- LOAN LENDERS SECTION --- */
/* ── Section: Best Boat Loan Lenders ── */
.blc-lenders {
  --bl-navy:      #0B1D3A;
  --bl-navy-mid:  #1a3a5c;
  --bl-bg:        #F4F6F8;
  --bl-white:     #ffffff;
  --bl-border:    #d4dde8;
  --bl-border-lt: #e8eef4;
  --bl-text:      #0A2540;
  --bl-mid:       #3d5a78;
  --bl-muted:     #7a95b0;
  --bl-blue:      #0066CC;
  --bl-green:     #0e9f6e;
  --bl-green-bg:  rgba(14,159,110,.09);
  --bl-amber:     #d97706;
  --bl-amber-bg:  rgba(217,119,6,.09);
  --bl-red:       #e53e3e;
  --bl-radius:    12px;
  --bl-radius-sm: 7px;
  --bl-shadow:    0 2px 20px rgba(10,37,64,.09);
  background: var(--bl-bg);
  padding: 90px 24px 80px;
  border-bottom: 1px solid rgba(43,43,43,.12);
}

.blc-lenders__inner {
  max-width: 1200px;
  margin-inline: auto;
}

/* ── Head ── */
.blc-lenders__head {
  margin-bottom: 28px;
}

.blc-lenders__eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bl-amber);
  background: var(--bl-amber-bg);
  border: 1px solid rgba(217,119,6,.22);
  border-radius: 99px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.blc-lenders__title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--bl-navy);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.blc-lenders__sub {
  font-size: 14px;
  color: var(--bl-mid);
  line-height: 1.65;
  max-width: 680px;
}

/* ── Filter tabs ── */
.blc-lenders__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.blc-lenders__tab {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bl-mid);
  background: var(--bl-white);
  border: 1.5px solid var(--bl-border);
  border-radius: 99px;
  padding: 6px 16px;
  cursor: pointer;
  transition: background .16s, color .16s, border-color .16s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.blc-lenders__tab:hover {
  border-color: var(--bl-blue);
  color: var(--bl-blue);
}

.blc-lenders__tab--active {
  background: var(--bl-navy);
  border-color: var(--bl-navy);
  color: #fff;
}

/* ── Desktop table ── */
.blc-lenders__table-wrap {
  background: var(--bl-white);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  overflow: hidden;
  box-shadow: var(--bl-shadow);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.blc-lenders__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.blc-lenders__table thead tr {
  background: var(--bl-navy);
}

.blc-lenders__table thead th {
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

.blc-lenders__td-c { text-align: center !important; }

.blc-lenders__table tbody tr {
  border-bottom: 1px solid var(--bl-border-lt);
  transition: background .14s;
}

.blc-lenders__table tbody tr:last-child { border-bottom: none; }
.blc-lenders__table tbody tr:hover { background: rgba(0,102,204,.03); }

.blc-lenders__table tbody td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--bl-mid);
  vertical-align: middle;
}

/* ── Name cell ── */
.blc-lenders__name-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.blc-lenders__lname {
  font-size: 14px;
  font-weight: 700;
  color: var(--bl-text);
  line-height: 1.2;
}

.blc-lenders__ltype {
  font-size: 11px;
  color: var(--bl-muted);
  font-weight: 500;
}

/* ── Badge (best-for) ── */
.blc-lenders__badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.blc-lenders__badge--overall { background: rgba(14,159,110,.1);  color: #0a7a54; border: 1px solid rgba(14,159,110,.25); }
.blc-lenders__badge--rate    { background: rgba(0,102,204,.08);  color: #0050a0; border: 1px solid rgba(0,102,204,.2);  }
.blc-lenders__badge--fast    { background: rgba(99,102,241,.08); color: #4346b0; border: 1px solid rgba(99,102,241,.2); }
.blc-lenders__badge--bad     { background: var(--bl-amber-bg);   color: #a85e00; border: 1px solid rgba(217,119,6,.22); }
.blc-lenders__badge--large   { background: rgba(10,37,64,.07);   color: #1a3a5c; border: 1px solid rgba(10,37,64,.15);  }

/* ── APR ── */
.blc-lenders__apr {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--bl-text);
}

/* ── Max term ── */
.blc-lenders__term {
  font-size: 13px;
  font-weight: 600;
  color: var(--bl-mid);
}

/* ── Score chip ── */
.blc-lenders__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}

.blc-lenders__score--good { background: var(--bl-green-bg); color: #0a7a54; border: 1px solid rgba(14,159,110,.2); }
.blc-lenders__score--fair { background: var(--bl-amber-bg); color: #a85e00; border: 1px solid rgba(217,119,6,.2);  }
.blc-lenders__score--none { background: rgba(10,37,64,.05); color: var(--bl-muted); border: 1px solid var(--bl-border-lt); }

/* ── Boat type chip ── */
.blc-lenders__boattype {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bl-mid);
  background: rgba(10,37,64,.05);
  border: 1px solid var(--bl-border-lt);
  border-radius: 99px;
  padding: 2px 9px;
  white-space: nowrap;
}

/* ── CTA button ── */
.blc-lenders__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--bl-blue);
  background: rgba(0,102,204,.07);
  border: 1.5px solid rgba(0,102,204,.25);
  border-radius: var(--bl-radius-sm);
  padding: 6px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .16s, color .16s, border-color .16s;
}

.blc-lenders__cta:hover {
  background: var(--bl-blue);
  color: #fff;
  border-color: var(--bl-blue);
}

.blc-lenders__cta--full {
  display: block;
  text-align: center;
  margin-top: 14px;
  padding: 11px 16px;
  font-size: 13px;
}

/* ── Mobile cards (hidden on desktop) ── */
.blc-lenders__cards { display: none; }

.blc-lenders__card {
  background: var(--bl-white);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  padding: 16px;
  box-shadow: var(--bl-shadow);
}

.blc-lenders__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.blc-lenders__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.blc-lenders__card-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.blc-lenders__card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--bl-muted);
}

/* ── Disclaimer ── */
.blc-lenders__note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--bl-muted);
  line-height: 1.6;
}

.blc-lenders__note svg { flex-shrink: 0; margin-top: 2px; }

.blc-lenders__disc-link {
  color: var(--bl-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .blc-lenders {
    padding: 44px 16px 52px;
  }

  /* Hide desktop table, show mobile cards */
  .blc-lenders__table-wrap { display: none; }
  .blc-lenders__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .blc-lenders__title {
    font-size: 22px;
  }
}






/* ── Section: How Much Boat Can I Afford ── */
.ba-section {
  --ba-navy:      #0B1D3A;
  --ba-bg:        #fff;
  --ba-white:     #ffffff;
  --ba-border:    #d4dde8;
  --ba-border-lt: #e8eef4;
  --ba-text:      #0A2540;
  --ba-mid:       #3d5a78;
  --ba-muted:     #7a95b0;
  --ba-blue:      #0066CC;
  --ba-green:     #0e9f6e;
  --ba-green-bg:  rgba(14,159,110,.09);
  --ba-amber:     #d97706;
  --ba-amber-bg:  rgba(217,119,6,.09);
  --ba-red:       #c53030;
  --ba-red-bg:    rgba(197,48,48,.08);
  --ba-radius:    12px;
  --ba-radius-sm: 7px;
  --ba-shadow:    0 2px 20px rgba(10,37,64,.09);
  background: var(--ba-bg);
  padding: 72px 24px 80px;
  border-bottom: 1px solid rgba(43,43,43,.12);
}

.ba-inner {
  max-width: 1200px;
  margin-inline: auto;
}

/* ── Head ── */
.ba-head { margin-bottom: 36px; }

.ba-eyebrow {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ba-blue);
  background: rgba(0,102,204,.07);
  border: 1px solid rgba(0,102,204,.2);
  border-radius: 99px; padding: 4px 12px; margin-bottom: 12px;
}

.ba-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--ba-navy);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ba-sub {
  font-size: 14px;
  color: var(--ba-mid);
  line-height: 1.65;
  max-width: 640px;
}

/* ── Two-column layout ── */
.ba-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.ba-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Calculator card ── */
.ba-card {
  background: var(--ba-white);
  border: 1px solid var(--ba-border);
  border-radius: var(--ba-radius);
  box-shadow: var(--ba-shadow);
  overflow: hidden;
}

.ba-card-head {
  background: var(--ba-navy);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 10px;
}

.ba-card-head-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff; flex-shrink: 0;
}

.ba-card-head-title {
  font-size: 13.5px; font-weight: 700;
  color: #fff; line-height: 1.25;
}

.ba-card-head-sub {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.ba-card-body { padding: 20px; }

/* ── Slider fields ── */
.ba-field { margin-bottom: 18px; }
.ba-field:last-of-type { margin-bottom: 0; }

.ba-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ba-muted); margin-bottom: 8px;
}

.ba-label-val {
  font-size: 13px; font-weight: 700;
  color: var(--ba-text);
  text-transform: none; letter-spacing: 0;
}

.ba-field input[type="range"] {
  width: 100%; accent-color: var(--ba-navy);
  cursor: pointer; height: 4px;
}

.ba-track-labels {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--ba-muted); margin-top: 5px;
}

/* ── Result rows ── */
.ba-results {
  display: flex; flex-direction: column;
  gap: 10px; margin-top: 20px;
}

.ba-result-row {
  border-radius: var(--ba-radius-sm);
  border: 1px solid var(--ba-border-lt);
  padding: 13px 15px;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}

.ba-result-label {
  font-size: 12px; color: var(--ba-mid); line-height: 1.45;
}

.ba-result-label strong {
  display: block; font-size: 13px;
  color: var(--ba-text); font-weight: 700; margin-bottom: 2px;
}

.ba-result-val {
  font-size: 17px; font-weight: 800;
  color: var(--ba-text); white-space: nowrap; flex-shrink: 0;
}

/* ── Verdict banner ── */
.ba-verdict {
  margin-top: 14px;
  border-radius: var(--ba-radius-sm);
  padding: 13px 15px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; line-height: 1.45;
  border: 1.5px solid;
}

.ba-verdict--ok   { background: var(--ba-green-bg); color: #0a5c3d; border-color: rgba(14,159,110,.3); }
.ba-verdict--warn { background: var(--ba-amber-bg); color: #7a4400; border-color: rgba(217,119,6,.3);  }
.ba-verdict--bad  { background: var(--ba-red-bg);   color: #7d2020; border-color: rgba(197,48,48,.3);  }

.ba-verdict i { font-size: 18px; flex-shrink: 0; }

/* ── Rules card ── */
.ba-rules-card {
  background: var(--ba-white);
  border: 1px solid var(--ba-border);
  border-radius: var(--ba-radius);
  box-shadow: var(--ba-shadow);
  overflow: hidden;
}

.ba-rules-head {
  padding: 15px 20px;
  border-bottom: 1px solid var(--ba-border-lt);
  display: flex; align-items: center; gap: 8px;
}

.ba-rules-head i { font-size: 17px; color: var(--ba-blue); }

.ba-rules-head-title {
  font-size: 13.5px; font-weight: 700;
  color: var(--ba-text);
}

.ba-rules-list { list-style: none; padding: 0; }

.ba-rule {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ba-border-lt);
}

.ba-rule:last-child { border-bottom: none; }

.ba-rule-icon {
  width: 32px; height: 32px;
  border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.ba-rule-icon--blue  { background: rgba(0,102,204,.09);  color: var(--ba-blue);  }
.ba-rule-icon--green { background: var(--ba-green-bg);   color: var(--ba-green); }
.ba-rule-icon--amber { background: var(--ba-amber-bg);   color: var(--ba-amber); }

.ba-rule-txt { flex: 1; }

.ba-rule-txt strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--ba-text); margin-bottom: 3px;
}

.ba-rule-txt span {
  font-size: 12px; color: var(--ba-mid); line-height: 1.5;
}

.ba-rule-pill {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .04em; padding: 3px 10px;
  border-radius: 99px; white-space: nowrap;
  flex-shrink: 0; align-self: flex-start; margin-top: 2px;
}

.ba-rule-pill--blue  { background: rgba(0,102,204,.08);  color: #0050a0; border: 1px solid rgba(0,102,204,.2);  }
.ba-rule-pill--green { background: var(--ba-green-bg);   color: #0a5c3d; border: 1px solid rgba(14,159,110,.25); }
.ba-rule-pill--amber { background: var(--ba-amber-bg);   color: #7a4400; border: 1px solid rgba(217,119,6,.25);  }

/* ── Featured snippet block ── */
.ba-snippet {
  background: var(--ba-white);
  border: 1px solid var(--ba-border);
  border-left: 4px solid var(--ba-blue);
  border-radius: var(--ba-radius-sm);
  padding: 16px 18px;
}

.ba-snippet-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ba-blue);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}

.ba-snippet-label i { font-size: 13px; }

.ba-snippet-q {
  font-size: 14px; font-weight: 700;
  color: var(--ba-text); margin-bottom: 6px;
}

.ba-snippet-a {
  font-size: 13px; color: var(--ba-mid); line-height: 1.65;
}

.ba-snippet-a strong { color: var(--ba-text); }

/* ── Disclaimer note ── */
.ba-note {
  display: flex; align-items: flex-start; gap: 7px;
  margin-top: 14px;
  font-size: 11px; color: var(--ba-muted); line-height: 1.6;
}

.ba-note svg { flex-shrink: 0; margin-top: 2px; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .ba-section { padding: 44px 16px 52px; }
  .ba-layout { grid-template-columns: 1fr; gap: 16px; }
}









/* ============================================================
   SECTION 10 — Total Cost of Boat Ownership
   Prefix: tco-
   ============================================================ */
/* ============================================================
   SECTION 10 — Total Cost of Boat Ownership
   Prefix: tco-
   ============================================================ */
.tco-wrap {
  background: #f4f6f8;
  padding: 72px 24px 80px;
  border-bottom: 1px solid rgba(43,43,43,.13);
}
.tco-in {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Slider row ── */
.tco-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #d4dde8;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tco-slider-label {
  font-size: 12px;
  font-weight: 700;
  color: #3d5a78;
  white-space: nowrap;
}
.tco-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
}
.tco-slider-wrap--sm {
  max-width: 220px;
}
.tco-slider-wrap input[type="range"] {
  flex: 1;
  accent-color: #0b1d3a;
  cursor: pointer;
  height: 4px;
}
.tco-slider-val {
  font-size: 13px;
  font-weight: 800;
  color: #0a2540;
  text-align: right;
  min-width: 52px;
}

/* ── Stat cards ── */
.tco-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.tco-stat {
  background: #fff;
  border: 1px solid #d4dde8;
  border-radius: 12px;
  padding: 16px 18px;
}
.tco-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.tco-stat-icon--navy  { background: #0b1d3a; color: #fff; }
.tco-stat-icon--blue  { background: #e6f1fb; color: #0050a0; }
.tco-stat-icon--amber { background: #faeeda; color: #854f0b; }
.tco-stat-icon--green { background: #e1f5ee; color: #0f6e56; }
.tco-stat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #7a95b0;
  margin-bottom: 5px;
}
.tco-stat-val {
  font-size: 17px;
  font-weight: 800;
  color: #0a2540;
  line-height: 1.1;
}
.tco-stat-sub {
  font-size: 11px;
  color: #7a95b0;
  margin-top: 3px;
  line-height: 1.4;
}

/* ── Breakdown table ── */
.tco-table-wrap {
  border: 1px solid #d0dae6;
  border-radius: 14px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 12px;
}
table.tco-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.tco-table thead tr { background: #0b1d3a; }
.tco-table th {
  padding: 13px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #c8d8eb;
  white-space: nowrap;
}
.tco-table th.tco-th-r { text-align: right; }
.tco-table td {
  padding: 14px 18px;
  color: #0a2540;
  border-bottom: 1px solid #e4ecf4;
  font-size: 13px;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1.45;
  background: #fff;
}
.tco-table tr:last-child td { border-bottom: none; }
.tco-table tbody tr:not(.tco-row-total):hover td { background: #f7f9fb; }
.tco-table td.tco-td-r { text-align: right; }
.tco-row-total td {
  background: #f4f6f8;
  border-top: 2px solid #d0dae6;
}
.tco-row-total td.tco-td-name {
  font-weight: 800;
  color: #0b1d3a;
  font-size: 13.5px;
}

/* Name cell */
.tco-name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tco-name-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tco-name-icon--navy  { background: #0b1d3a; color: #fff; }
.tco-name-icon--blue  { background: #e6f1fb; color: #0050a0; }
.tco-name-icon--amber { background: #faeeda; color: #854f0b; }
.tco-name-icon--green { background: #e1f5ee; color: #0f6e56; }
.tco-name-main { font-size: 13px; font-weight: 700; color: #0a2540; }
.tco-name-sub  { font-size: 11px; color: #7a95b0; margin-top: 2px; }
.tco-range     { font-size: 12px; color: #3d5a78; }

/* Bar */
.tco-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tco-bar-track {
  height: 5px;
  background: #e4ecf4;
  border-radius: 3px;
  overflow: hidden;
  width: 90px;
  flex-shrink: 0;
}
.tco-bar-fill  { height: 100%; border-radius: 3px; transition: width .35s ease; }
.tco-bar-navy  { background: #0b1d3a; }
.tco-bar-blue  { background: #2563eb; }
.tco-bar-amber { background: #d97706; }
.tco-bar-green { background: #059669; }
.tco-pct       { font-size: 11px; color: #7a95b0; min-width: 34px; }
.tco-pct-val   { font-size: 13px; font-weight: 700; color: #0a2540; }

/* ── Tip cards ── */
.tco-tip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.tco-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #dde6ef;
  border-radius: 12px;
  padding: 16px 18px;
}
.tco-tip-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.tco-tip-icon--blue  { background: #e6f1fb; color: #0050a0; }
.tco-tip-icon--amber { background: #faeeda; color: #854f0b; }
.tco-tip-title {
  font-size: 13px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 3px;
}
.tco-tip-body { font-size: 12px; color: #3d5a78; line-height: 1.6; }

/* ── Note ── */
.tco-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 14px;
  font-size: 11px;
  color: #7a95b0;
  line-height: 1.65;
}
.tco-note i { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .tco-wrap { padding: 44px 16px 52px; }
  .tco-stat-row { grid-template-columns: 1fr 1fr; }
  .tco-tip-row  { grid-template-columns: 1fr; }
  .tco-table th:nth-child(2),
  .tco-table td:nth-child(2) { display: none; }
}
@media (max-width: 480px) {
  .tco-bar-track { width: 50px; }
  .tco-slider-row { flex-direction: column; align-items: flex-start; }
  .tco-slider-wrap,
  .tco-slider-wrap--sm { width: 100%; max-width: 100%; }
}













/* -------------------------------- FAQ SECTION --- */
/* ============================================================
   SECTION 12 — FAQ
   Prefix: faq-
   ============================================================ */
.faq {
  background: #ffffff;
  padding: 88px 24px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10, 37, 64, 0.10);
  border: 1px solid rgba(10, 37, 64, 0.10);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}
.faq-item {
  background: #ffffff;
  padding: 30px 26px;
  transition: background .15s;
}
.faq-item:hover {
  background: #f7f9fb;
}
.faq-item-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(10, 37, 64, 0.20);
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0a2540;
  line-height: 1.4;
  margin: 0 0 10px;
}
.faq-item p {
  font-size: 13px;
  color: #3d5a7a;
  line-height: 1.75;
  margin: 0;
}
.faq-item p strong {
  color: #0a2540;
  font-weight: 700;
}
.faq-item p a {
  color: #0a2540;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-item:last-child {
  grid-column: 1 / -1;
}
/* ── Responsive ── */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .faq {
    padding: 52px 16px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .faq-item {
    padding: 22px 18px;
  }
}



















/* ============================================================
   SECTION 11 — SEO YAZISI
   ============================================================ */
.blca-wrap {
  background: #fff;
  padding: 80px 24px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}
.blca-in {
  max-width: 1100px;
  margin: 0 auto;
}

/* Head */
.blca-head {
  margin-bottom: 48px;
}

.blca-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #0a2540;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.blca-intro {
  font-size: 15px;
  color: #3d5a7a;
  line-height: 1.8;
  margin: 0;
}
.blca-intro strong {
  color: #0a2540;
  font-weight: 700;
}

/* Body sections */
.blca-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.blca-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blca-h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0a2540;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e4ecf4;
}
.blca-section p {
  font-size: 14px;
  color: #3d5a7a;
  line-height: 1.85;
  margin: 0;
}
.blca-section p strong {
  color: #0a2540;
  font-weight: 700;
}

/* Callout */
.blca-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0f7ff;
  border: 1px solid #c8daf0;
  border-left: 3px solid #2563eb;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 4px;
}
.blca-callout svg {
  stroke: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}
.blca-callout p {
  font-size: 13px !important;
  color: #1e3a5f !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}
.blca-callout p strong {
  color: #0a2540 !important;
}
.blca-callout--green {
  background: #f0fdf6;
  border-color: #a7f3d0;
  border-left-color: #059669;
}
.blca-callout--green svg {
  stroke: #059669;
}
.blca-callout--green p {
  color: #064e3b !important;
}

/* Factor list */
.blca-factor-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e4ecf4;
  border-radius: 12px;
  overflow: hidden;
}
.blca-factor {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid #f0f4f8;
  align-items: baseline;
}
.blca-factor:last-child {
  border-bottom: none;
}
.blca-factor:nth-child(odd) {
  background: #fafcff;
}
.blca-factor-label {
  font-size: 13px;
  font-weight: 700;
  color: #0a2540;
  line-height: 1.4;
}
.blca-factor-desc {
  font-size: 13px;
  color: #3d5a7a;
  line-height: 1.65;
}
.blca-source-label {
  font-weight: 700;
  color: #3d5a7a;
  margin-right: 4px;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .blca-wrap {
    padding: 52px 16px;
  }
  .blca-factor {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}



















/* -------------------------------- HOMEPAGE TOC --- */
/* ============================================================
   PAGE NAVIGATION
   Prefix: pgn-
   ============================================================ */
.pgn-wrap {
  background: #0a2540;
  position: sticky;
  top: 0;
  z-index: 100;
}
.pgn-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 8px 24px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.pgn-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  line-height: 1;
  text-align: center;
}
.pgn-track {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pgn-track::-webkit-scrollbar {
  display: none;
}
.pgn-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #aaccdd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}
.pgn-chip svg {
  stroke: currentColor;
  flex-shrink: 0;
}
.pgn-chip:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.pgn-chip.pgn-chip--active {
  background: #fff;
  color: #0a2540;
  border-color: #fff;
}

@media (max-width: 600px) {
  .pgn-inner {
    padding: 7px 16px 8px;
  }
  .pgn-chip {
    font-size: 11px;
    padding: 5px 11px;
  }
}

















/* -------------------------------- SEO ARTICLE SECTION --- */
.art-section {
    --art-navy:      #0A2540;
    --art-navy-80:   #1a3a5c;
    --art-white:     #ffffff;
    --art-border:    #d4dde8;
    --art-border-lt: #e8eef4;
    --art-text:      #0A2540;
    --art-mid:       #3d5a78;
    --art-muted:     #7a95b0;
    --art-blue:      #0066CC;
    --art-green:     #0e9f6e;
    --art-amber:     #d97706;
    --art-red:       #e53e3e;
    --art-radius:    10px;
    --art-radius-sm: 6px;
    --art-shadow:    0 2px 16px rgba(10,37,64,.08);
    background: #fff;
    padding: 80px 24px;
    border-bottom: 1px solid rgba(43, 43, 43, 0.133);
}

.art-inner {
    max-width: 1200px;
    margin-inline: auto;
}


/* ══════════════════════════════
   ARTICLE BODY
══════════════════════════════ */
.art-body {
    min-width: 0;
}

/* ── Article header ── */
.art-header {
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--art-border);
}

.art-header__title {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--art-navy);
    letter-spacing: -.025em;
    line-height: 1.22;
    margin: 0 0 14px;
}

.art-header__lead {
    font-size: 15.5px;
    color: var(--art-mid);
    line-height: 1.7;
    margin: 0;
}

/* ── Content blocks ── */
.art-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--art-border-lt);
}

.art-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.art-h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--art-navy);
    letter-spacing: -.02em;
    line-height: 1.3;
    margin: 0 0 14px;
    padding-left: 14px;
    border-left: 3px solid var(--art-blue);
}

.art-body p {
    font-size: 14.5px;
    color: var(--art-mid);
    line-height: 1.75;
    margin: 0 0 14px;
}

.art-body p:last-child { margin-bottom: 0; }

.art-body strong { color: var(--art-text); font-weight: 700; }

/* ── 4-input grid ── */
.art-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.art-input-card {
    background: var(--art-white);
    border: 1px solid var(--art-border);
    border-radius: var(--art-radius-sm);
    padding: 16px 18px;
    position: relative;
}

.art-input-card__num {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--art-blue);
    background: rgba(0,102,204,.08);
    border-radius: 4px;
    padding: 2px 7px;
    margin-bottom: 8px;
}

.art-input-card strong {
    display: block;
    font-size: 13.5px;
    color: var(--art-navy);
    margin-bottom: 6px;
}

.art-input-card p {
    font-size: 13px !important;
    margin: 0 !important;
    color: var(--art-mid);
    line-height: 1.65;
}

/* ── Data table ── */
.art-table-wrap {
    border: 1px solid var(--art-border);
    border-radius: var(--art-radius);
    overflow: hidden;
    margin: 20px 0;
    overflow-x: auto;
}

.art-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.art-table thead tr { background: var(--art-navy); }

.art-table thead th {
    padding: 11px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-align: left;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
}
.art-table tbody { background-color: #fff;}
.art-table tbody tr {
    border-bottom: 1px solid var(--art-border-lt);
    transition: background .13s;
}

.art-table tbody tr:last-child { border-bottom: none; }
.art-table tbody tr:nth-child(even) { background: var(--art-bg); }
.art-table tbody tr:hover { background: rgba(0,102,204,.03); }

.art-table tbody td {
    padding: 11px 16px;
    font-size: 13px;
    color: var(--art-mid);
    white-space: nowrap;
}

.art-table tbody td:first-child { color: var(--art-text); font-weight: 600; }

.art-td--blue  { font-weight: 700; color: var(--art-blue)  !important; }
.art-td--green { font-weight: 700; color: var(--art-green) !important; }
.art-td--amber { font-weight: 700; color: var(--art-amber) !important; }
.art-td--red   { font-weight: 700; color: var(--art-red)   !important; }

/* ── Ordered list ── */
.art-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    counter-reset: art-counter;
}

.art-list li {
    counter-increment: art-counter;
    display: flex;
    gap: 14px;
    font-size: 14px;
    color: var(--art-mid);
    line-height: 1.7;
    background: var(--art-white);
    border: 1px solid var(--art-border-lt);
    border-radius: var(--art-radius-sm);
    padding: 14px 16px;
}

.art-list li::before {
    content: counter(art-counter, decimal-leading-zero);
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    color: var(--art-blue);
    background: rgba(0,102,204,.08);
    border-radius: 4px;
    padding: 2px 7px;
    height: fit-content;
    margin-top: 2px;
    letter-spacing: .04em;
}

.art-list li strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13.5px;
    color: var(--art-navy);
}

/* ── Article footer ── */
.art-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--art-border-lt);
}

.art-footer p {
    font-size: 11.5px !important;
    color: var(--art-muted) !important;
    line-height: 1.55;
    margin: 0 !important;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {

    .art-sidebar {
        order: -1;
    }

    .art-sidebar__card--sticky {
        position: static;
    }

    .art-toc nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .art-stat-stack {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .art-stat-item {
        min-width: 120px;
    }
}

@media (max-width: 640px) {
    .art-section { padding: 40px 16px 52px; }

    .art-input-grid {
        grid-template-columns: 1fr;
    }

    .art-header__title {
        font-size: 20px;
    }
}
@media (max-width: 640px) {
  .art-list li {
    flex-direction: column;
    gap: 8px;
  }

  .art-list li::before {
    align-self: flex-start;
  }

  .art-list li strong {
    display: inline;
  }
}



















/* -------------------------------- BREADCRUMB --- */
.vl-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.vl-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--vl-ink-muted);
}

.vl-breadcrumb li a {
    color: var(--vl-ink-light);
    text-decoration: none;
    transition: color .2s;
}

.vl-breadcrumb li a:hover {
    color: var(--vl-accent);
}

.vl-breadcrumb li.vl-breadcrumb__current {
    color: var(--vl-ink);
    font-weight: 500;
}

.vl-breadcrumb__sep {
    color: var(--vl-border);
    display: inline-block;
}

/* ---------- Pagination ---------- */
.vl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.vl-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius-sm);
    background: var(--vl-surface);
    color: var(--vl-ink-light);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}

.vl-pagination .page-numbers:hover {
    background: var(--vl-pill-bg);
    border-color: var(--vl-accent);
    color: var(--vl-accent);
}

.vl-pagination .page-numbers.current {
    background: var(--vl-accent);
    border-color: var(--vl-accent);
    color: #8a8a8a;
    font-weight: 700;
    pointer-events: none;
}

.vl-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    pointer-events: none;
    color: var(--vl-ink-muted);
}

/* =========================================
   PREMIUM BLOG LAYOUT (1200px COMPACT)
========================================= */

.blg-main { padding: 0; }
.blg-wrap { max-width: 1200px; margin: 0 auto; }

/* Ayrıştırılmış Başlık Kahraman Alanı (Hero) */
.blg-hero { 
    background: #F4F6F8;
    padding: 3.5rem 1.5rem; 
    border-bottom: 1px solid rgba(2, 44, 18, 0.06); /* Net ayrım çizgisi */
}
.blg-page-ttl { font-size: 2.5rem; font-weight: 700; color: #022C12; margin-top: 1.5rem; margin-bottom: 0.5rem; letter-spacing: -0.025em; }
.blg-page-sub { font-size: 0.95rem; color: #64748b; max-width: 600px; line-height: 1.5; }

/* İçerik Gövde Alanı */
.blg-content-sec { padding: 4rem 1.5rem;background-color: #fbfbfb; }

/* Blog Grid Yapısı */
.blg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 4rem; }

/* Yenilenmiş Kompakt Kart Tasarımı (Premium Soft Gölge Entegre Edildi) */
.blg-card { 
    display: flex; 
    flex-direction: column; 
    background: #ffffff; 
    border-radius: 14px; 
    border: 1px solid rgba(2, 44, 18, 0.06); 
    overflow: hidden; 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* SaaS kalitesinde, çiğ durmayan uçuşan mikro gölge */
    box-shadow: 0 10px 30px -12px rgba(2, 44, 18, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01); 
}

/* Kart Hover Aksiyonu */
.blg-card:hover { 
    transform: translateY(-5px); 
    border-color: rgba(2, 44, 18, 0.15);
    box-shadow: 0 20px 35px -10px rgba(2, 44, 18, 0.08), 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Resim Alanı */
.blg-img { display: block; height: 220px; overflow: hidden; background: #dfe3e8; position: relative; }
.blg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blg-card:hover .blg-img img { transform: scale(1.02); }

/* Görsel Yoksa Placeholder */
.blg-placeholder { 
    display: flex; align-items: center; justify-content: center; 
    width: 100%; height: 100%; 
    font-size: 2rem; font-weight: 700; color: #8da496; 
}

/* Kart İçeriği */
.blg-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }

/* Kategori Hapı */
.blg-cat { 
    display: inline-block; padding: 0.25rem 0.7rem; background: rgba(7, 48, 78, 0.04); 
    color: #0B1D3A; font-size: 0.75rem; font-weight: 700; border-radius: 99px; 
    width: max-content; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.04em; 
}

/* Yazı Başlığı */
.blg-card-ttl { font-size: 1.15rem; font-weight: 700; line-height: 1.4; color: #022C12; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.blg-card-ttl a { color: inherit; text-decoration: none; }

/* Özet */
.blg-exc { font-size: 0.9rem; color: #64748b; line-height: 1.55; margin-bottom: 1.8rem; flex-grow: 1; }

/* Alt Meta Alanı Çizgisi */
.blg-meta { border-top: 1px solid rgba(2, 44, 18, 0.06); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.blg-meta-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.blg-author { font-weight: 700; color: #475569; }
.blg-date { color: #94a3b8; font-weight: 500; }

/* Sayfalama Hizalaması */
.blg-pag { margin-top: 2rem; display: flex; justify-content: center; }

/* --- RESPONSIVE DÜZENLEMELER --- */
@media (max-width: 992px) {
    .blg-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
    .blg-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .blg-hero { padding: 2.5rem 1rem; }
    .blg-page-ttl { font-size: clamp(28px, 4vw, 42px) }
    .blg-content-sec { padding: 2.5rem 1rem; }
}

.vl-bc-short { display: none; }

@media (max-width: 600px) {
    .vl-bc-full  { display: none; }
    .vl-bc-short { display: inline; }
}



















/* -------------------------------- SOCIAL SHARE --- */
.vl-share {
    margin: 25px 0 0;
    padding: 24px 0 0;
}
.vl-share-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.vl-share-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #0b1d3a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.vl-share-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.vl-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #d4d9cc;
    background: #fff;
    color: #0a2540;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
    line-height: 1;
    white-space: nowrap;
    font-family: inherit;
}
.vl-share-btn:hover {
    transform: translateY(-1px);
    border-color: #0a2540;
}
.vl-share-btn svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .vl-share-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .vl-share-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }
    .vl-share-btn {
        justify-content: center;
        padding: 9px 8px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .vl-share-buttons {
        grid-template-columns: 1fr 1fr;
    }
}



















/* -------------------------------- PAGE CSS --- */
#pg-main {
    background: #fff;
}

/* Hero */
#pg-hero {
    background: #F4F6F8;
    border-bottom: 1px solid rgba(26,46,26,.1);
    padding: 48px 24px 40px;
}

#pg-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

#pg-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0b1d3a;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 1.5rem 0rem 0.5rem 0rem;
}

/* Content */
#pg-content {
    padding: 56px 24px 80px;
}

#pg-content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Typography */
#pg-content-inner p {
    font-size: 15px;
    line-height: 1.85;
    color: #1a2e1a;
    margin: 0 0 1.4rem;
}

#pg-content-inner h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0b1d3a;
    letter-spacing: -.015em;
    margin: 2.5rem 0 .8rem;
}

#pg-content-inner h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0b1d3a;
    margin: 2rem 0 .6rem;
}

#pg-content-inner h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0b1d3a;
    margin: 1.6rem 0 .5rem;
}

#pg-content-inner ul,
#pg-content-inner ol {
    font-size: 14px;
    line-height: 1.8;
    color: #0b1d3a;
    margin: 0 0 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#pg-content-inner ul li::marker {
    color: #0b1d3a;
}

#pg-content-inner ol li::marker {
    color: #0b1d3a;
    font-weight: 700;
}

#pg-content-inner a {
    color: #0e4091;
    text-underline-offset: 3px;
}

#pg-content-inner a:hover {
    color: #0b1d3a;
}

#pg-content-inner blockquote {
    margin: 2rem 0;
    padding: 16px 20px;
    background: #f0f4f0;
    border-left: 3px solid #0b1d3a;
    border-radius: 0 8px 8px 0;
}

#pg-content-inner blockquote p {
    margin: 0;
    color: #0b1d3a;
    font-size: 15.5px;
}

#pg-content-inner table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0 0 1.4rem;
}

#pg-content-inner table th {
    background: #0b1d3a;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}

#pg-content-inner table td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(26,46,26,.1);
    color: #0b1d3a;
}

#pg-content-inner table tr:nth-child(even) td {
    background: #f5f6f9;
}

#pg-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 4px 0 1.4rem;
}

#pg-content-inner hr {
    border: none;
    border-top: 1px solid rgba(26,46,26,.1);
    margin: 2.5rem 0;
}

#pg-content-inner .wp-block-button__link {
    display: inline-block;
    background: #0b1d3a;
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

#pg-content-inner .wp-block-button__link:hover {
    background: #0b1d3a;
    color: #fff;
}

@media (max-width: 600px) {
    #pg-hero  { padding: 32px 16px 28px; }
    #pg-content { padding: 36px 16px 56px; }
}






















/* --------------------------------  SINGLE BLOG PAGE CSS --- */
#sp-main {
    background: #fff;
}

#sp-article .vl-breadcrumb-nav {
	padding:14px 0;
	color:#484c49 }


/* ── Hero ── */
#sp-hero {
    background: #f4f6f8;
    border-bottom: 1px solid rgba(26,46,26,.1);
    padding: 24px 24px 20px;
}

#sp-hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

/* Meta row */
#sp-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

#sp-cats {
    display: flex;
    gap: 5px;
}

.sp-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    background: #0b1d3a;
    padding: 3px 9px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .15s;
}

.sp-cat:hover {
    background: #0b1d3ab9;
}

.sp-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #0b1d3a;
}
.meta-aut {padding-top:10px}

.sp-meta-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #0b1d3a;
    opacity: .4;
    flex-shrink: 0;
}

/* Title */
#sp-title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: #0b1d3a;
    line-height: 1.18;
    letter-spacing: -.025em;
    margin: 0;
}

/* ── Content ── */
#sp-content {
    padding: 40px 24px 72px;
}

#sp-content-inner {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Body ── */
#sp-body {
    font-size: 15px;
    line-height: 1.88;
    color: #0b1d3ac7;
}

#sp-body p { margin: 0 0 1.4rem; }

#sp-body h2 {
    font-size: 21px;
    font-weight: 700;
    color: #0b1d3a;
    letter-spacing: -.015em;
    margin: 2.5rem 0 .75rem;
    scroll-margin-top: 80px;
}

#sp-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0b1d3a;
    margin: 2rem 0 .6rem;
    scroll-margin-top: 80px;
}

#sp-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0b1d3a;
    margin: 1.5rem 0 .5rem;
}

#sp-body ul,
#sp-body ol {
    margin: 0 0 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    line-height: 1.8;
}

#sp-body ul li::marker { color: #0b1d3a; }
#sp-body ol li::marker { color: #0b1d3a; font-weight: 700; }

#sp-body a {
    color: #0b1d3a;
    text-underline-offset: 3px;
}

#sp-body a:hover { color: #0b1d3a; }

#sp-body blockquote {
    margin: 2rem 0;
    padding: 14px 18px;
    background: #f0f4f0;
    border-left: 3px solid #1a2e1a;
    border-radius: 0 8px 8px 0;
}

#sp-body blockquote p { margin: 0; font-size: 15.5px; }

#sp-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 6px 0 1.4rem;
}

#sp-body figure { margin: 0 0 1.4rem; }

#sp-body figcaption {
    font-size: 12px;
    color: #5a7a5a;
    text-align: center;
    margin-top: 6px;
}

#sp-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0 0 1.4rem;
}

#sp-body table th {
    background: #1a2e1a;
    color: #fff;
    padding: 9px 13px;
    text-align: left;
    font-weight: 600;
}

#sp-body table td {
    padding: 8px 13px;
    border-bottom: 1px solid rgba(26,46,26,.1);
}

#sp-body table tr:nth-child(even) td { background: #f9f8f5; }

#sp-body hr {
    border: none;
    border-top: 1px solid rgba(26,46,26,.1);
    margin: 2.2rem 0;
}

#sp-body .wp-block-button__link {
    display: inline-block;
    background: #1a2e1a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

#sp-body .wp-block-button__link:hover { background: #2d4a2d; }


/* ── Responsive ── */
@media (max-width: 640px) {
    #sp-hero    { padding: 18px 16px 16px; }
    #sp-content { padding: 28px 16px 52px; }
}



















/* --------------------------------  TOC CSS --- */
.vl-toc {
    background: #f4f6f8;
    border: 1px solid #d4d9cc;
    border-radius: 12px;
    margin: 0 0 36px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.vl-toc:hover {
    box-shadow: 0 2px 12px rgba(26,48,32,0.08);
}
.vl-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}
.vl-toc-header:focus-visible {
    outline: 2px solid #0b1d3a;
    outline-offset: -2px;
    border-radius: 11px 11px 0 0;
}
.vl-toc-header-left {
    display: flex;
    align-items: center;
    gap: 9px;
}
.vl-toc-icon {
    color: #0b1d3a;
    flex-shrink: 0;
}
.vl-toc-title {
    font-size: 13px;
    font-weight: 700;
    color: #0b1d3a;
    letter-spacing: 0.01em;
}
.vl-toc-count {
    font-size: 11px;
    color: #0b1d3a;
    background: #d8dee8;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 500;
}
.vl-toc-chevron {
    color: #0b1d3a;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.vl-toc.collapsed .vl-toc-chevron {
    transform: rotate(-90deg);
}
.vl-toc-body {
    border-top: 1px solid #e4e9dc;
    overflow: hidden;
    max-height: 800px;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    opacity: 1;
}
.vl-toc.collapsed .vl-toc-body {
    max-height: 0;
    opacity: 0;
    border-top-color: transparent;
}
.vl-toc-list {
    list-style: none;
    margin: 0;
    padding: 10px 0 12px;
}
.vl-toc-item {
    margin: 0;
    padding: 0;
}
.vl-toc-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    font-size: 13px;
    color: #0b1d3a;
    text-decoration: none;
    line-height: 1.4;
    border-left: 2px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.vl-toc-item a:hover {
    background: #0b1d3a0c;
    color: #1a3020;
    border-left-color: #0b1d3a;
}
.vl-toc-item.vl-toc-h3 a {
    padding-left: 36px;
    font-size: 12.5px;
    color: #0b1d3a;
}
.vl-toc-item.vl-toc-h3 a:hover {
    color: #0b1d3ac0;
}
.vl-toc-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9aba9a;
    flex-shrink: 0;
    transition: background 0.15s;
}
.vl-toc-item a:hover .vl-toc-bullet {
    background: #0b1d3a;
}
.vl-toc-item.vl-toc-h3 .vl-toc-bullet {
    width: 4px;
    height: 4px;
    background: #c0d4c0;
}
/* Active state — scroll pozisyonuna göre JS ile eklenir */
.vl-toc-item.is-active a {
    color: #0b1d3abd;
    font-weight: 600;
    border-left-color: #0b1d3a;
    background: #0b1d3a0d;
}
.vl-toc-item.is-active .vl-toc-bullet {
    background: #0b1d3ad7;
}



















/* --------------------------------  POST TAG CODE --- */
.vl-tags {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 32px 0 0;
    padding: 20px 0 0;
    flex-wrap: wrap;
}
.vl-tags-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b1d3a;
    white-space: nowrap;
    padding-top: 5px;
    flex-shrink: 0;
}
.vl-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.vl-tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 5px 12px;
    background: #f4f6f8;
    border: 1px solid #d4d9cc;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #0b1d3a;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
    line-height: 1;
}

.vl-tag-hash {
    font-size: 11px;
    opacity: 0.6;
    font-weight: 600;
}
.vl-tag:hover .vl-tag-hash {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .vl-tags {
        flex-direction: column;
        gap: 10px;
    }
}



















/* --------------------------------  PREV NEXT CODE --- */
.vl-post-nav {
    margin: 40px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid #d4d9cc;
}
.vl-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.vl-nav-grid.vl-nav-single {
    grid-template-columns: 1fr;
    max-width: 520px;
}
.vl-nav-grid.vl-nav-single .vl-nav-next {
    margin-left: auto;
}
.vl-nav-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
    background: #f4f6f8;
    border: 1px solid #d4d9cc;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.14s;
    overflow: hidden;
}
.vl-nav-card:hover {
    border-color: #b7cce2;
    box-shadow: 0 4px 16px rgba(26,48,32,0.08);
    transform: translateY(-2px);
}
.vl-nav-direction {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b1d3a;
}
.vl-nav-next .vl-nav-direction {
    justify-content: flex-end;
}
.vl-nav-body {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vl-nav-body-right {
    flex-direction: row-reverse;
}
.vl-nav-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid #d4d9cc;
}
.vl-nav-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.vl-nav-text-right {
    text-align: right;
}
.vl-nav-cat {
    font-size: 11px;
    font-weight: 600;
    color: #0b1d3a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vl-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a3020;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}
.vl-nav-card:hover .vl-nav-title {
    color: #0b1d3a;
}

@media (max-width: 600px) {
    .vl-nav-grid {
        grid-template-columns: 1fr;
    }
    .vl-nav-grid.vl-nav-single {
        max-width: 100%;
    }
    .vl-nav-next .vl-nav-direction {
        justify-content: flex-start;
    }
    .vl-nav-body-right {
        flex-direction: row;
    }
    .vl-nav-text-right {
        text-align: left;
    }
}