/* ==========================================================================
   components.css — bizimhesap.com deseninden çıkarılmış bileşenler
   theme.css'ten SONRA yüklenir.

   İçindekiler
     1. Header
     2. Mega menü        ⭐ CSS :has() ile, JS'siz
     3. Hero
     4. Zig-zag özellik satırı
     5. Yatay carousel (scroll-snap)
     6. Pill tab bar
     7. Özellik grid'i ("Sadece Biz'de")
     8. Logo şeridi (marquee)
     9. Destek bölümü
    10. Blog kartı
    11. SSS akordeon
    12. Fiyat kartı + toggle
    13. Alt CTA şeridi
    14. Footer + Yukarı Git
    15. KVKK bandı
    16. Scroll-reveal
    17. Responsive / mobil menü
   ========================================================================== */

/* ==========================================================================
   1. HEADER  (40px üst şerit + 96px ana bar = 136px, mobilde 80px)
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--brand-navy-900);
}

.topbar {
  background: var(--brand-navy-800);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar a:hover { opacity: .85; }
/* Mikro vurgu: "özel segment" anlamı taşıdığı için promo ailesinden */
.topbar a.is-highlight { color: var(--brand-promo-300); }

.navbar-main { height: var(--navbar-h); display: flex; align-items: center; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
}
.brand span:last-child { margin-top: 2px; }
.brand .accent { color: var(--brand-accent-500); }

.nav-main {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main > li { position: static; }   /* mega menü tam genişlik olsun diye */

.nav-link-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  font-family: var(--font-body);
}
/* Aktif durum: renk değil, ALTI ÇİZİLİ. Koyu zeminde renk değişimi kirli durur. */
.nav-link-main.is-active,
.nav-link-main:hover { text-decoration: underline; text-underline-offset: 6px; }
.nav-link-main .caret { transition: transform .2s ease; }
.nav-link-main[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* Masaüstünde nav + aksiyonlar tek satırda */
.nav-collapse {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-left: 40px;
}
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-actions .login { color: #fff; font-weight: 500; font-size: 15px; text-decoration: none; }
.nav-actions .login:hover { text-decoration: underline; text-underline-offset: 5px; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  color: #fff; cursor: pointer;
}

/* ==========================================================================
   2. MEGA MENÜ  ⭐  açılma mekanizması saf CSS :has(), JS yok
   ========================================================================== */
.parent { position: static; }

.hover-menu {
  position: absolute;
  left: 0; right: 0; top: 100%;
  margin-inline: auto;
  max-width: var(--content-section);
  background: #fff;
  border-radius: 0 0 24px 24px;          /* sadece alt köşeler */
  box-shadow: var(--shadow-menu);
  display: flex;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

/* ⭐ Tetikleyici tek bir öznitelik: hem görsellik hem erişilebilirlik */
.parent:has(> [aria-expanded="true"]) > .hover-menu,
.parent:hover > .hover-menu { opacity: 1; visibility: visible; }

/* --- Sol panel: 3 kolonluk özellik grid'i (%68) --- */
.mega-left { flex: 0 0 68%; padding: 32px 40px 40px; }
.mega-title { margin-bottom: 20px; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 22px;
}
.mega-item { display: block; text-decoration: none; padding: 4px 0; }
.mega-item-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 16px; font-weight: 400;
  color: var(--brand-gray-900);
  margin: 0 0 4px;
}
.mega-item-title svg { opacity: 0; transform: translateX(-4px); transition: all .18s ease; }
.mega-item:hover .mega-item-title,
.mega-item:focus-visible .mega-item-title { color: var(--brand-navy-900); }
.mega-item:hover .mega-item-title svg,
.mega-item:focus-visible .mega-item-title svg { opacity: 1; transform: translateX(0); }
.mega-item-desc {
  font-size: 14px; line-height: 1.45;
  color: var(--brand-gray-600);
  margin: 0; max-width: 24ch;
}

/* --- Sağ panel: PAZARLAMA alanı (%32) ⭐ --- */
.mega-right {
  flex: 1;
  background: var(--brand-gray-25);
  padding: 32px;
  display: flex; flex-direction: column; gap: 28px;
}
.mega-promo { text-decoration: none; display: block; }
.mega-promo-media {
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex; align-items: center;
  padding: 18px;
  font-family: var(--font-heading);
  font-weight: 500; font-size: 19px; line-height: 1.25;
}
.mega-promo-media.is-campaign { background: var(--brand-promo-300); color: #001d4a; }
.mega-promo-media.is-blog     { background: var(--brand-navy-900); color: #fff; }
.mega-promo h4 { font-size: 17px; margin: 0 0 6px; color: var(--brand-gray-900); }
.mega-promo p  { font-size: 14px; line-height: 1.5; color: var(--brand-gray-600); margin: 0 0 10px; }

.mega-grid.is-categories { grid-template-columns: repeat(3, 1fr); row-gap: 10px; }
.mega-grid.is-categories .mega-item-desc { display: none; }

/* ==========================================================================
   3. HERO
   ========================================================================== */
.hero-navy {
  background: var(--brand-navy-900);
  color: #fff;
  padding-block: 80px 96px;
}
.hero-navy h1 { color: #fff; }
.hero-navy .hero-sub { color: var(--brand-navy-50); max-width: 46ch; }

.hero-feature { background: var(--brand-accent-200); padding-block: 72px 88px; }

/* Inline e-posta yakalama — CTA'nın kendisi bir form */
.email-capture { display: flex; gap: 16px; max-width: 500px; width: 100%; }
.email-capture .form-control { flex: 1; min-width: 0; }
.email-capture .btn { white-space: nowrap; padding-inline: 22px; }
@media (max-width: 479px) { .email-capture { flex-direction: column; } }

/* Sosyal kanıt — avatar yığını */
.social-proof { display: flex; align-items: center; gap: 12px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--brand-navy-900);
  margin-left: -10px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 500; color: #fff;
}
.avatar-stack span:first-child { margin-left: 0; }
.social-proof-text { font-size: 14px; line-height: 1.35; color: var(--brand-navy-300); }
.social-proof-text strong { color: #fff; font-weight: 500; }
.hero-feature .avatar-stack span { border-color: var(--brand-accent-200); }
.hero-feature .social-proof-text { color: var(--brand-gray-500); }
.hero-feature .social-proof-text strong { color: var(--brand-gray-900); }

/* Yüzen dashboard kartı */
.stat-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  padding: 18px 20px;
  max-width: 260px;
  backdrop-filter: blur(8px);
  color: #fff;
}
.stat-card .label { font-size: 13px; color: var(--brand-navy-50); }
.stat-card .value {
  font-family: var(--font-heading); font-size: 30px; font-weight: 500;
  margin: 6px 0 4px; font-variant-numeric: tabular-nums;
}
.stat-card .delta { font-size: 12px; color: var(--brand-accent-500); }

/* ==========================================================================
   4. ZIG-ZAG ÖZELLİK SATIRI
   Hepsi TEXT-sol / IMG-sağ. Alternatiflenmiyor — tarama ritmi bozulmasın diye.
   ========================================================================== */
.feature-row { display: flex; column-gap: 20px; row-gap: 32px; align-items: center; }
.feature-row > * { flex: 1 1 0; min-width: 0; }
.feature-row .section-left-content { padding-left: 24px; }
.feature-row .feature-copy {
  max-width: 480px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 16px; padding-block: 32px;
}
.feature-row .feature-media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 710 / 555;
  background: var(--brand-gray-50);
  display: grid; place-items: center;
  color: var(--brand-gray-400);
}
.feature-row .feature-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 991.98px) {
  .feature-row { flex-direction: column; align-items: stretch; }
  .feature-row .feature-copy { max-width: none; padding-block: 0; }
  .feature-row .section-left-content { max-width: none; padding-left: 0; }
}

/* ==========================================================================
   5. YATAY CAROUSEL  (kütüphane yok — scroll-snap)
   ========================================================================== */
.hscroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding-block: 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-gray-100) transparent;
}
.hscroll > * { scroll-snap-align: start; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--brand-gray-100); border-radius: 9999px; }

.perk-card {
  flex: 0 0 380px; max-width: 380px;
  display: flex; flex-direction: column;
  text-decoration: none;
}
@media (max-width: 419px) { .perk-card { flex-basis: 320px; max-width: 320px; } }
.perk-card .perk-media {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: var(--brand-gray-50);
  margin-bottom: 16px;
  overflow: hidden;
  display: grid; place-items: center;
  transition: transform .25s ease;
}
.perk-card:hover .perk-media { transform: translateY(-4px); }
.perk-card h4 { font-size: 20px; margin: 0 0 6px; }
.perk-card p  { font-size: 14px; color: var(--brand-gray-600); margin: 0 0 12px; }

.testimonial-card {
  flex: 0 0 300px;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--brand-gray-100);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px;
  text-decoration: none;
}
.testimonial-card::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(to top, rgba(16,26,40,.75), transparent);
}
.testimonial-card .name {
  position: relative; z-index: 1;
  color: #fff; font-family: var(--font-heading); font-weight: 500;
}
.testimonial-card .badge-chip { position: relative; z-index: 1; align-self: flex-start; }

/* ==========================================================================
   6. PILL TAB BAR
   ========================================================================== */
.pill-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.pill-tabs::-webkit-scrollbar { display: none; }

/* Tek başına tanımlı — hem .pill-tabs hem .billing-toggle içinde çalışır */
.pill-tab {
  border: 0;
  background: transparent;
  border-radius: 9999px;
  padding: 10px 20px;
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--brand-gray-700);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.pill-tab:hover { background: var(--brand-gray-25); }
.pill-tab.is-active { background: var(--brand-navy-900); color: #fff; }

/* ==========================================================================
   7. ÖZELLİK GRID'İ — "Sadece Biz'de!" bölümü
   ========================================================================== */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991.98px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)    { .spec-grid { grid-template-columns: 1fr; } }

.spec-item {
  background: var(--brand-gray-25);
  border-radius: 16px;
  padding: 22px;
}
.spec-item .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-accent-100);
  color: var(--brand-navy-900);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.spec-item h4 { font-size: 18px; margin: 0 0 6px; }
.spec-item p  { font-size: 14px; color: var(--brand-gray-600); margin: 0; }

/* ==========================================================================
   8. LOGO ŞERİDİ (marquee)
   Sonsuz kayan şerit. İçerik iki kez basılır, %50 kaydırılır.
   ========================================================================== */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}
.marquee-group span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 19px;
  color: var(--brand-gray-400);
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
}

/* ==========================================================================
   9. DESTEK BÖLÜMÜ
   ========================================================================== */
.support-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex; flex-direction: column;
}
.support-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-navy-900);
  color: var(--brand-accent-500);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.support-card h4 { font-size: 19px; margin: 0 0 6px; }
.support-card p  { font-size: 14px; color: var(--brand-gray-600); margin: 0 0 14px; }
.support-card .link-arrow { margin-top: auto; font-size: 14px; }

/* ==========================================================================
   10. BLOG KARTI
   ========================================================================== */
.post-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  height: 100%;
}
.post-card .post-media {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: var(--brand-gray-50);
  overflow: hidden;
  margin-bottom: 14px;
  display: grid; place-items: center;
  color: var(--brand-gray-400);
  font-size: 13px;
  transition: transform .25s ease;
}
.post-card:hover .post-media { transform: translateY(-4px); }
.post-card .post-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 9px;
  font-size: 12px; color: var(--brand-gray-500);
}
.post-card h4 {
  font-size: 18px; line-height: 1.35; margin: 0 0 8px;
  color: var(--brand-gray-900);
}
.post-card p { font-size: 14px; color: var(--brand-gray-600); margin: 0; }

/* ==========================================================================
   11. SSS AKORDEON  (Bootstrap accordion özelleştirmesi)
   ========================================================================== */
.faq .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--brand-gray-100);
  background: transparent;
  border-radius: 0;
}
.faq .accordion-item:first-of-type { border-top: 1px solid var(--brand-gray-100); }
.faq .accordion-button {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--brand-gray-900);
  background: transparent;
  box-shadow: none;
  padding: 20px 0;
}
.faq .accordion-button:not(.collapsed) { color: var(--brand-navy-900); background: transparent; }
.faq .accordion-button:focus { box-shadow: none; }
.faq .accordion-button::after {
  width: 18px; height: 18px; background-size: 18px;
  filter: grayscale(1) opacity(.55);
}
.faq .accordion-body {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--brand-gray-600);
  max-width: 68ch;
}

/* ==========================================================================
   12. FİYAT KARTI + YILLIK/AYLIK TOGGLE
   ========================================================================== */
.billing-toggle {
  display: inline-flex; gap: 4px; padding: 6px;
  background: #fff; border-radius: 9999px;
  box-shadow: var(--shadow-card);
}
.billing-toggle .pill-tab { padding: 12px 34px; font-size: 15px; }

.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-card);      /* navy tint'li gölge */
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.is-featured { outline: 2px solid var(--brand-accent-500); }
.price-card .ribbon {
  position: absolute; top: -13px; left: 24px;
  background: var(--brand-accent-500);
  color: var(--brand-gray-900);
  font-family: var(--font-heading); font-weight: 500; font-size: 12.5px;
  padding: 4px 14px; border-radius: 9999px;
}
.price-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.price-icon.is-basic { background: var(--brand-accent-100); }
.price-icon.is-full  { background: var(--brand-promo-50); }
.price-card h3 { font-size: 24px; margin: 0 0 4px; }
.price-card .plan-sub { font-size: 14px; color: var(--brand-gray-600); margin-bottom: 18px; }
.price-amount {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-heading); font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.price-amount .amount { font-size: 42px; line-height: 1; }
.price-amount .suffix { font-size: 15px; color: var(--brand-gray-600); font-family: var(--font-body); }
.price-total  { font-size: 14px; color: var(--brand-gray-500); margin-top: 8px; }
.price-saving { font-size: 14px; color: var(--brand-gray-900); margin-top: 4px; }

.price-features { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; color: var(--brand-gray-700);
}
.price-features li svg { flex: 0 0 auto; margin-top: 2px; color: var(--brand-navy-900); }

/* Karşılaştırma tablosu */
.compare-table th, .compare-table td { vertical-align: middle; }
.compare-table thead th {
  font-family: var(--font-heading); font-weight: 500; font-size: 15px;
  background: var(--brand-gray-25);
}
.compare-table td.yes svg { color: var(--brand-navy-900); }
.compare-table td.no  { color: var(--brand-gray-300); }

/* ==========================================================================
   13. ALT CTA ŞERİDİ
   ========================================================================== */
.cta-strip { background: var(--brand-accent-100); padding-block: 64px; }

/* ==========================================================================
   14. FOOTER + YUKARI GİT
   ========================================================================== */
.site-footer {
  background: var(--brand-navy-900);
  color: var(--brand-navy-50);
  padding-block: 64px 28px;
}
.site-footer h5 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.site-footer a { color: var(--brand-navy-50); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 13px; color: var(--brand-navy-300);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
}
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badges a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px; padding: 8px 13px;
  font-size: 13px; color: #fff;
}
.store-badges a:hover { background: rgba(255,255,255,.09); text-decoration: none; }

.to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border: 0; border-radius: 50%;
  background: var(--brand-accent-500);
  color: var(--brand-gray-900);
  display: grid; place-items: center;
  box-shadow: var(--shadow-float);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 90; cursor: pointer;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   15. KVKK / ÇEREZ BANDI
   Varsayılan: yalnızca zorunlu çerezler. Kabul opt-in.
   ========================================================================== */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 120;
  max-width: 720px; margin-inline: auto;
  background: #fff;
  border: 1px solid var(--brand-gray-100);
  border-radius: 16px;
  box-shadow: var(--shadow-menu);
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-bar.is-open { display: flex; }
.cookie-bar p { margin: 0; font-size: 14px; color: var(--brand-gray-600); flex: 1 1 280px; }
.cookie-bar .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-bar .btn { font-size: 14px; padding: 9px 18px; }

/* ==========================================================================
   16. SCROLL-REVEAL
   JS 'is-in' ekler. JS yoksa içerik zaten görünür kalır (no-JS güvenli).
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   17. RESPONSIVE — mobil menü (<=991.98px)
   ========================================================================== */
@media (max-width: 1199.98px) {
  .nav-main { gap: 18px; }
  .nav-link-main { font-size: 14px; }
  .nav-collapse { margin-left: 24px; }
}

@media (max-width: 991.98px) {
  :root { --header-h: var(--header-h-mobile); }

  .topbar { display: none; }
  .navbar-main { height: var(--header-h-mobile); }
  .nav-toggle { display: inline-flex; }

  .nav-collapse {
    flex: none;
    margin-left: 0;
    position: fixed;
    inset: var(--header-h-mobile) 0 0 0;
    background: var(--brand-navy-900);
    padding: 24px;
    overflow-y: auto;
    display: none;
  }
  .nav-collapse.is-open { display: block; }

  .nav-main { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-main > li { border-bottom: 1px solid rgba(255,255,255,.14); }
  .nav-link-main { width: 100%; justify-content: space-between; padding: 16px 0; font-size: 17px; }

  /* Mega menü mobilde akordeona dönüşür */
  .hover-menu {
    position: static;
    max-width: none;
    border-radius: 12px;
    box-shadow: none;
    flex-direction: column;
    display: none;
    opacity: 1;
    visibility: visible;
    margin-bottom: 16px;
  }
  .parent:hover > .hover-menu { display: none; }          /* mobilde hover kapalı */
  .parent:has(> [aria-expanded="true"]) > .hover-menu { display: flex; }

  .mega-left  { flex: none; padding: 20px; }
  .mega-grid  { grid-template-columns: 1fr; row-gap: 16px; }
  .mega-item-desc { max-width: none; }
  .mega-right { flex: none; padding: 20px; }

  .nav-actions { margin-top: 24px; flex-direction: column; align-items: stretch; gap: 14px; }
  .nav-actions .login { text-align: center; padding: 12px; }
  .nav-actions .btn { width: 100%; }
}

/* ==========================================================================
   18. BREADCRUMB (mini)
   ========================================================================== */
.breadcrumb-mini {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
  font-size: 13px; color: var(--brand-gray-500);
}
.breadcrumb-mini a { color: var(--brand-gray-600); text-decoration: none; }
.breadcrumb-mini a:hover { color: var(--brand-navy-900); text-decoration: underline; }
.breadcrumb-mini [aria-current] { color: var(--brand-gray-900); }
.hero-feature .breadcrumb-mini,
.hero-feature .breadcrumb-mini a { color: var(--brand-navy-800); }

/* ==========================================================================
   19. İSTATİSTİK KUTUSU (ROI şeridi)
   ========================================================================== */
.stat-tile {
  background: var(--brand-gray-25);
  border-radius: 16px;
  padding: 24px 18px;
  height: 100%;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-tile .stat-value {
  font-family: var(--font-heading);
  font-weight: 500; font-size: 34px; line-height: 1;
  color: var(--brand-navy-900);
  font-variant-numeric: tabular-nums;
}
.stat-tile .stat-label { font-size: 13px; color: var(--brand-gray-600); line-height: 1.4; }

/* ==========================================================================
   20. KONTÖR KARTI
   ========================================================================== */
.quota-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 2px;
  height: 100%;
}
.quota-card .qty {
  font-family: var(--font-heading); font-weight: 500; font-size: 26px;
  color: var(--brand-navy-900); font-variant-numeric: tabular-nums;
}
.quota-card .unit  { font-size: 13px; color: var(--brand-gray-500); }
.quota-card .price { font-size: 14px; color: var(--brand-gray-900); margin-top: 8px; }

.num-tabular { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   21. MAKALE (blog detay)
   ========================================================================== */
.article-head { padding-top: 40px; }
.article-cover {
  aspect-ratio: 1440 / 520;
  border-radius: 24px;
  background: var(--brand-gray-50);
  display: grid; place-items: center;
  color: var(--brand-gray-400); font-size: 14px;
}
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 14px; color: var(--brand-gray-500);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
/* minmax(0,...) + min-width:0 — grid item'ların içerikleri kadar genişleyip
   sayfayı yana kaydırmasını engeller */
.article-layout > * { min-width: 0; }
@media (max-width: 991.98px) {
  .article-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

.toc { position: sticky; top: calc(var(--header-h) + 24px); }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: grid; grid-template-columns: 1.6em 1fr; gap: 4px;
  font-size: 14px; line-height: 1.4;
  color: var(--brand-gray-600); text-decoration: none;
  padding: 3px 0;
}
.toc a::before {
  content: counter(toc) ".";
  color: var(--brand-gray-400); font-variant-numeric: tabular-nums;
}
.toc a:hover { color: var(--brand-navy-900); }
@media (max-width: 991.98px) {
  .toc { position: static; border-bottom: 1px solid var(--brand-gray-100); padding-bottom: 20px; }
}

/* Makale gövdesi — okunabilir satır uzunluğu */
.prose { max-width: 68ch; }
.prose .lead { font-size: 19px; line-height: 1.6; color: var(--brand-gray-700); margin-bottom: 28px; }
.prose h2 { font-size: 28px; margin: 40px 0 14px; scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h3 { font-size: 21px; margin: 30px 0 10px; }
.prose p  { margin: 0 0 16px; color: var(--brand-gray-700); }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; color: var(--brand-gray-700); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--brand-gray-900); font-weight: 600; }
.prose blockquote {
  margin: 26px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--brand-accent-500);
  background: var(--brand-accent-100);
  border-radius: 0 12px 12px 0;
  font-size: 17px; line-height: 1.55;
  color: var(--brand-navy-900);
}
.prose blockquote p:last-child { margin-bottom: 0; }

.article-cta {
  margin-top: 44px;
  background: var(--brand-gray-25);
  border-radius: 20px;
  padding: 28px;
}
.article-cta h3 { font-size: 22px; margin: 0 0 8px; }
.article-cta p  { margin: 0 0 18px; }

/* ==========================================================================
   22. SAYFALAMA
   ========================================================================== */
.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pager-btn {
  min-width: 42px;
  padding: 9px 16px;
  border-radius: 9999px;
  border: 1px solid var(--brand-gray-100);
  font-family: var(--font-heading); font-weight: 500; font-size: 14px;
  color: var(--brand-gray-700); text-decoration: none;
  text-align: center;
}
.pager-btn:hover { background: var(--brand-gray-25); color: var(--brand-navy-900); }
.pager-btn.is-current {
  background: var(--brand-navy-900);
  border-color: var(--brand-navy-900);
  color: #fff;
}
.pager-btn.is-disabled { opacity: .45; pointer-events: none; }
