/* =============================================================
   KROFOTO — REFINE LAYER
   Nayla teması üzerine binen düzeltme + güçlendirme katmanı.
   Yükleme sırası: plugins.css -> style.css -> krofoto.css -> kf-refine.css
   ============================================================= */

/* -------------------------------------------------------------
   0. TASARIM TOKENLARI
   ------------------------------------------------------------- */
:root {
  --kf-ink:        #0d0d0d;
  --kf-ink-soft:   #3a3a38;
  --kf-ink-muted:  #6f6f6b;
  --kf-paper:      #fafaf8;
  --kf-paper-alt:  #f2efe9;
  --kf-line:       rgba(13, 13, 13, 0.10);
  --kf-line-dark:  rgba(255, 255, 255, 0.14);

  --kf-gold:       #c8a96e;
  --kf-gold-deep:  #a8873f;
  --kf-gold-soft:  rgba(200, 169, 110, 0.14);

  --kf-header-h:   64px;

  --kf-r-sm: 8px;
  --kf-r-md: 14px;
  --kf-r-lg: 22px;
  --kf-r-pill: 999px;

  --kf-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --kf-shadow-sm: 0 2px 10px rgba(13,13,13,.06);
  --kf-shadow-md: 0 10px 34px rgba(13,13,13,.10);
  --kf-shadow-lg: 0 24px 70px rgba(13,13,13,.16);
}

/* -------------------------------------------------------------
   1. ERİŞİLEBİLİRLİK
   ------------------------------------------------------------- */
.kf-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: var(--kf-ink);
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: .5px;
  border-radius: 0 0 var(--kf-r-sm) 0;
}
.kf-skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--kf-gold) !important;
  outline-offset: 3px !important;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------
   2. RESPONSIVE KIRILIM NOKTASI DÜZELTMESİ  ⚠ KRİTİK
   Nayla varsayılanı hide-mobile/hide-desktop'ı yalnızca 450px'de
   değiştiriyor. Bu yüzden 451–1024px arası cihazlarda hamburger
   görünmüyor ve masaüstü menüsü taşıyordu.
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hide-mobile  { display: none !important; }
  .hide-desktop { display: block !important; }
}

/* -------------------------------------------------------------
   3. HEADER
   ------------------------------------------------------------- */
#header.site-header {
  padding: 12px 0 !important;
  background: rgba(9, 9, 9, 0.92) !important;
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--kf-line-dark) !important;
  box-shadow: none !important;
}
#header.site-header.kf-scrolled {
  background: rgba(9, 9, 9, 0.98) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.45) !important;
}

#header.site-header .header-wrapper {
  gap: 16px !important;
}

.kf-header-logo-img {
  height: 26px !important;
}

/* Masaüstü menü — daha net tipografi ve altı çizgi göstergesi */
.kf-desktop-nav ul.menu.main-menu {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.kf-desktop-nav ul.menu.main-menu > li { margin: 0 !important; }

#header.site-header .kf-desktop-nav .main-menu > li > a {
  position: relative;
  display: block;
  padding: 8px 13px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.78) !important;
  transition: color .25s var(--kf-ease) !important;
}
#header.site-header .kf-desktop-nav .main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 1px;
  background: var(--kf-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--kf-ease);
}
#header.site-header .kf-desktop-nav .main-menu > li > a:hover {
  color: #fff !important;
}
#header.site-header .kf-desktop-nav .main-menu > li > a:hover::after,
#header.site-header .kf-desktop-nav .main-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
}
#header.site-header .kf-desktop-nav .main-menu > li.current-menu-item > a {
  color: #fff !important;
}

/* Header CTA */
.kf-btn-calc-header {
  background: var(--kf-gold) !important;
  color: #101010 !important;
  border: 1px solid var(--kf-gold) !important;
  padding: 9px 18px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .09em !important;
  box-shadow: none !important;
}
.kf-btn-calc-header:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #101010 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 22px rgba(255,255,255,.18) !important;
}
.kf-btn-calc-header .material-icons { font-size: 14px !important; }

/* Ana içeriğin sabit header altında kalmaması */
#page > main#primary,
main.site-main { scroll-margin-top: calc(var(--kf-header-h) + 20px); }

/* -------------------------------------------------------------
   4. MOBİL MENÜ BUTONU (HAMBURGER)
   ------------------------------------------------------------- */
.kf-mtoggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--kf-r-sm);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background .25s var(--kf-ease), border-color .25s var(--kf-ease);
}
.kf-mtoggle:hover,
.kf-mtoggle[aria-expanded="true"] {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}
.kf-mtoggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 16px;
}
.kf-mtoggle-line {
  display: block;
  width: 100%;
  height: 1.6px;
  background: #fff;
  border-radius: 2px;
  transition: transform .34s var(--kf-ease), opacity .2s linear, width .3s var(--kf-ease);
}
.kf-mtoggle-line:nth-child(3) { width: 68%; align-self: flex-end; }
.kf-mtoggle[aria-expanded="true"] .kf-mtoggle-line:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.kf-mtoggle[aria-expanded="true"] .kf-mtoggle-line:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.kf-mtoggle[aria-expanded="true"] .kf-mtoggle-line:nth-child(3) { width: 100%; transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .kf-mtoggle { display: inline-flex; }

  /* Nayla'nın #site-navigation ID kuralını yenmek için ID+class özgüllüğü şart */
  #header #site-navigation.kf-desktop-nav,
  #site-navigation.classic.kf-desktop-nav,
  .kf-desktop-nav { display: none !important; }

  #header .kf-header-cta,
  .kf-header-cta { display: none !important; }

  #header.site-header { padding: 9px 0 !important; }
  .kf-header-logo-img { height: 22px !important; }

  /* Flex öğelerinin içerikten taşmasını engelle */
  #header.site-header .header-wrapper { flex-wrap: nowrap !important; }
  .kf-header-nav-col { min-width: 0 !important; flex: 1 1 auto !important; }
  .kf-header-logo-col { min-width: 0 !important; }
}

/* Nayla'nın eski hamburger'ı bu düzende kullanılmıyor */
#header .menu-toggle { display: none !important; }

/* -------------------------------------------------------------
   5. MOBİL MENÜ (DRAWER)
   ------------------------------------------------------------- */
.kf-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 99998;
  opacity: 0;
  transition: opacity .35s var(--kf-ease);
}
.kf-mobile-nav-backdrop.is-open { opacity: 1; }

.kf-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  background: #0b0b0b;
  color: #fff;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform .46s var(--kf-ease);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: -30px 0 80px rgba(0,0,0,.6);
}
.kf-mobile-nav.is-open { transform: translateX(0); }

.kf-mobile-nav-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 26px calc(26px + env(safe-area-inset-bottom));
}

.kf-mnav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--kf-line-dark);
}
.kf-mnav-logo img { height: 22px; width: auto; display: block; }
.kf-mnav-close {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--kf-r-sm);
  color: #fff;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s var(--kf-ease);
}
.kf-mnav-close:hover { background: rgba(255,255,255,.1); }
.kf-mnav-close .material-icons { font-size: 22px; }

.kf-mnav-links { padding: 26px 0 6px; }
.kf-mnav-links ul { list-style: none; margin: 0; padding: 0; }
.kf-mnav-links li {
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateX(22px);
}
.kf-mobile-nav.is-open .kf-mnav-links li {
  animation: kfMnavIn .5s var(--kf-ease) forwards;
  animation-delay: calc(var(--kf-i, 1) * 55ms + 90ms);
}
@keyframes kfMnavIn { to { opacity: 1; transform: translateX(0); } }

.kf-mnav-links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  transition: color .22s var(--kf-ease), padding-left .28s var(--kf-ease);
}
.kf-mnav-links a:hover,
.kf-mnav-links a.is-active { color: #fff; padding-left: 6px; }
.kf-mnav-num {
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--kf-gold);
  font-weight: 700;
  min-width: 20px;
}
.kf-mnav-label {
  font-size: clamp(19px, 5.6vw, 25px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.kf-mnav-links a.is-active .kf-mnav-label {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--kf-gold);
  text-decoration-thickness: 1.5px;
}

.kf-mnav-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 24px 0 26px;
}
.kf-mnav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 12px;
  border-radius: var(--kf-r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .22s var(--kf-ease), background .22s var(--kf-ease);
}
.kf-mnav-btn .material-icons { font-size: 16px; }
.kf-mnav-btn.primary { background: var(--kf-gold); color: #101010; }
.kf-mnav-btn.primary:hover { background: #fff; transform: translateY(-2px); }
.kf-mnav-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.26); }
.kf-mnav-btn.ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.kf-mnav-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--kf-line-dark);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.kf-mnav-foot a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  text-decoration: none;
}
.kf-mnav-foot a:hover { color: var(--kf-gold); }
.kf-mnav-social { display: flex; gap: 16px; margin-top: 8px; }
.kf-mnav-social a { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.kf-mnav-copy {
  margin: 12px 0 0;
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.42);
}

/* Menü açıkken sayfa kaydırmasını kilitle */
body.kf-nav-open { overflow: hidden !important; }

/* -------------------------------------------------------------
   6. BREADCRUMB
   ------------------------------------------------------------- */
.kf-breadcrumb {
  padding: calc(var(--kf-header-h) + 26px) 0 0;
  background: transparent;
}
.kf-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kf-breadcrumb li { color: var(--kf-ink-muted); }
.kf-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--kf-line);
  color: rgba(13,13,13,.25);
}
.kf-breadcrumb a { color: var(--kf-ink-muted); text-decoration: none; }
.kf-breadcrumb a:hover { color: var(--kf-gold-deep); }
.kf-breadcrumb li[aria-current] { color: var(--kf-ink); font-weight: 600; }

body.dark .kf-breadcrumb li,
body.dark .kf-breadcrumb a { color: rgba(255,255,255,.6); }
body.dark .kf-breadcrumb li[aria-current] { color: #fff; }

@media (max-width: 1024px) {
  :root { --kf-header-h: 62px; }
}
@media (max-width: 767px) {
  .kf-breadcrumb { padding-top: calc(var(--kf-header-h) + 14px); }
  .kf-breadcrumb ol { font-size: 10px; }
}

/* -------------------------------------------------------------
   7. TİPOGRAFİ ÖLÇEĞİ — akıcı, mobilde taşmayan
   ------------------------------------------------------------- */
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

h1, .text-h1, .xl-title { font-size: clamp(34px, 6.4vw, 76px) !important; line-height: 1.03 !important; letter-spacing: -.03em !important; }
h2, .text-h2, .lg-title { font-size: clamp(28px, 4.6vw, 54px) !important; line-height: 1.08 !important; letter-spacing: -.025em !important; }
h3, .text-h3, .md-title { font-size: clamp(23px, 3.2vw, 38px) !important; line-height: 1.16 !important; letter-spacing: -.02em !important; }
h4, .text-h4 { font-size: clamp(19px, 2.2vw, 26px) !important; line-height: 1.26 !important; letter-spacing: -.012em !important; }
h5, .text-h5 { font-size: clamp(16px, 1.6vw, 20px) !important; line-height: 1.34 !important; }

h1, h2, h3, h4, h5, h6 { text-wrap: balance; overflow-wrap: break-word; }
p { text-wrap: pretty; }

/* Uzun kelimelerin mobilde taşmasını engelle */
p, li, a, span, td, th, h1, h2, h3, h4, h5, h6 { overflow-wrap: anywhere; }

/* Bölüm etiketi (gold eyebrow) */
.kf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kf-gold-deep);
  margin-bottom: 14px;
}
.kf-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
body.dark .kf-eyebrow { color: var(--kf-gold); }

/* -------------------------------------------------------------
   8. BÖLÜM RİTMİ
   ------------------------------------------------------------- */
.section {
  padding-top: clamp(38px, 4.2vw, 68px) !important;
  padding-bottom: clamp(26px, 3vw, 46px) !important;
  margin-bottom: 0 !important;
}
.section.fullscreen,
.section.no-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.kf-section-alt { background: var(--kf-paper-alt); }
.kf-section-dark { background: var(--kf-ink); color: var(--kf-paper); }
.kf-section-dark h1, .kf-section-dark h2, .kf-section-dark h3, .kf-section-dark h4 { color: var(--kf-paper); }

.kf-rule {
  height: 1px;
  background: var(--kf-line);
  border: 0;
  margin: 0;
}

/* -------------------------------------------------------------
   9. BUTON SİSTEMİ
   ------------------------------------------------------------- */
.kf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--kf-r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .24s var(--kf-ease), background .24s var(--kf-ease),
              color .24s var(--kf-ease), border-color .24s var(--kf-ease), box-shadow .24s var(--kf-ease);
}
.kf-btn .material-icons { font-size: 17px; }
.kf-btn:hover { transform: translateY(-2px); }

.kf-btn--primary { background: var(--kf-ink); color: #fff; border-color: var(--kf-ink); }
.kf-btn--primary:hover { background: var(--kf-gold); border-color: var(--kf-gold); color: #101010; box-shadow: 0 12px 30px rgba(200,169,110,.32); }

.kf-btn--gold { background: var(--kf-gold); color: #101010; border-color: var(--kf-gold); }
.kf-btn--gold:hover { background: var(--kf-ink); border-color: var(--kf-ink); color: #fff; }

.kf-btn--outline { background: transparent; color: var(--kf-ink); border-color: rgba(13,13,13,.22); }
.kf-btn--outline:hover { border-color: var(--kf-ink); background: var(--kf-ink); color: #fff; }

.kf-btn--light { background: #fff; color: var(--kf-ink); border-color: #fff; }
.kf-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.kf-btn--ghost-light:hover { background: #fff; color: var(--kf-ink); border-color: #fff; }

.kf-btn--wide { width: 100%; }

@media (max-width: 600px) {
  .kf-btn { padding: 14px 22px; font-size: 11.5px; width: 100%; }
  .kf-btn-row { display: grid; gap: 10px; }
}

/* -------------------------------------------------------------
   10. KART SİSTEMİ
   ------------------------------------------------------------- */
.kf-card-ui {
  background: #fff;
  border: 1px solid var(--kf-line);
  border-radius: var(--kf-r-lg);
  padding: clamp(22px, 3vw, 34px);
  transition: transform .3s var(--kf-ease), box-shadow .3s var(--kf-ease), border-color .3s var(--kf-ease);
}
.kf-card-ui:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,.5);
  box-shadow: var(--kf-shadow-md);
}
.kf-card-ui__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--kf-r-md);
  background: var(--kf-gold-soft);
  color: var(--kf-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.kf-card-ui h3, .kf-card-ui h4 { margin: 0 0 8px; }
.kf-card-ui p { color: var(--kf-ink-soft); font-size: 15px; line-height: 1.65; margin: 0; }

/* -------------------------------------------------------------
   11. GÖRSELLER — CLS önleme ve mobil ölçek
   ------------------------------------------------------------- */
img { max-width: 100%; height: auto; }
.single-image img, .kf-img img { display: block; }

figure { margin: 0; }

/* -------------------------------------------------------------
   12. FOOTER — mobil düzeltmeleri
   ------------------------------------------------------------- */
#footer.site-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }

.kf-newsletter-card { flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-bottom-wrapper { gap: 28px 0; }
  #footer .align-right,
  #footer .text-wrapper.align-right { text-align: left !important; }
  .kf-footer-logo-img { height: 24px; }
}

@media (max-width: 600px) {
  #footer .kf-newsletter-card {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-radius: var(--kf-r-md) !important;
    padding: 14px !important;
  }
  #footer .kf-newsletter-card input { width: 100% !important; }
  #footer .kf-newsletter-btn { width: 100% !important; justify-content: center !important; }
  #footer .kf-nl-icon { display: none !important; }
}

/* Footer yasal link satırı */
.kf-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 22px 0 0;
  margin-top: 26px;
  border-top: 1px solid var(--kf-line-dark);
  list-style: none;
}
.kf-legal-row a {
  font-size: 11.5px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.kf-legal-row a:hover { color: var(--kf-gold); text-decoration: underline; text-underline-offset: 4px; }

/* -------------------------------------------------------------
   13. WHATSAPP WIDGET — mobil düzeltmeleri
   ------------------------------------------------------------- */
@media (max-width: 600px) {
  .kf-wa-chat {
    width: calc(100vw - 24px) !important;
    max-width: 380px !important;
    right: 12px !important;
    bottom: 84px !important;
  }
  .kf-wa-trigger { right: 14px !important; bottom: calc(14px + env(safe-area-inset-bottom)) !important; }
  .kf-wa-quick-chips { flex-wrap: wrap !important; }
}

/* -------------------------------------------------------------
   14. ÇEREZ BANNER'I
   ------------------------------------------------------------- */
.kf-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  max-width: 620px;
  margin-inline: auto;
  background: #0d0d0d;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--kf-r-lg);
  padding: 20px 22px;
  z-index: 99997;
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
  display: none;
  transform: translateY(18px);
  opacity: 0;
  transition: transform .4s var(--kf-ease), opacity .4s var(--kf-ease);
}
.kf-cookie.is-visible { display: block; }
.kf-cookie.is-in { transform: translateY(0); opacity: 1; }
.kf-cookie p { margin: 0 0 14px; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.8); }
.kf-cookie a { color: var(--kf-gold); text-decoration: underline; text-underline-offset: 3px; }
.kf-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.kf-cookie-actions button {
  appearance: none; -webkit-appearance: none;
  border-radius: var(--kf-r-pill);
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .22s var(--kf-ease);
}
.kf-cookie-accept { background: var(--kf-gold); color: #101010; }
.kf-cookie-accept:hover { background: #fff; }
.kf-cookie-reject { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.kf-cookie-reject:hover { background: rgba(255,255,255,.1); }
@media (max-width: 480px) {
  .kf-cookie-actions button { flex: 1 1 100%; }
}

/* -------------------------------------------------------------
   15. YASAL / METİN SAYFALARI
   ------------------------------------------------------------- */
.kf-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 10px 0 40px;
}
.kf-doc__meta {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--kf-ink-muted);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--kf-line);
}
.kf-doc h2 {
  font-size: clamp(20px, 2.4vw, 27px) !important;
  margin: 44px 0 14px !important;
  padding-top: 8px;
}
.kf-doc h2:first-of-type { margin-top: 12px !important; }
.kf-doc h3 { font-size: clamp(16px, 1.8vw, 19px) !important; margin: 26px 0 10px !important; }
.kf-doc p, .kf-doc li { font-size: 15.5px; line-height: 1.78; color: var(--kf-ink-soft); }
.kf-doc ul, .kf-doc ol { padding-left: 22px; margin: 12px 0 20px; }
.kf-doc li { margin-bottom: 8px; }
.kf-doc strong { color: var(--kf-ink); font-weight: 600; }
.kf-doc a { color: var(--kf-gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.kf-doc__box {
  background: var(--kf-paper-alt);
  border-left: 3px solid var(--kf-gold);
  border-radius: 0 var(--kf-r-md) var(--kf-r-md) 0;
  padding: 20px 24px;
  margin: 26px 0;
}
.kf-doc__box p:last-child { margin-bottom: 0; }
.kf-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 26px;
  font-size: 14.5px;
}
.kf-doc table th,
.kf-doc table td {
  border: 1px solid var(--kf-line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.kf-doc table th { background: var(--kf-paper-alt); font-weight: 600; color: var(--kf-ink); }
.kf-doc__tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.kf-page-head {
  padding: clamp(28px, 4vw, 46px) 0 clamp(20px, 3vw, 34px);
}
.kf-page-head h1 { margin: 0 0 12px; }
.kf-page-head p { font-size: clamp(15px, 1.8vw, 18px); color: var(--kf-ink-muted); max-width: 660px; margin: 0; line-height: 1.6; }

/* -------------------------------------------------------------
   16. 404
   ------------------------------------------------------------- */
.kf-404 {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--kf-header-h) + 40px);
}
.kf-404__code {
  font-size: clamp(80px, 18vw, 190px);
  line-height: .9;
  font-weight: 700;
  letter-spacing: -.05em;
  color: var(--kf-gold);
  margin: 0 0 12px;
}

/* -------------------------------------------------------------
   17. MOBİL GENEL DÜZELTMELER
   ------------------------------------------------------------- */
/* Yatay taşmayı kes — ama html VE body'ye birlikte overflow vermek
   tarayıcıyı kaydırma konteynerini değiştirmeye zorluyor ve bazı
   tarayıcılarda (özellikle Safari/iOS) dikey kaydırmayı tamamen bozuyor.
   Bu yüzden yalnızca body'ye ve mümkünse 'clip' ile uygulanıyor:
   'clip' taşmayı keser ama kaydırma konteyneri OLUŞTURMAZ. */
body { overflow-x: clip; }
@supports not (overflow: clip) {
  body { overflow-x: hidden; }
}

@media (max-width: 1024px) {
  /* Nayla grid'inin tabletlerde tek/çift sütuna düşmesi */
  .wrapper > [class*="c-col-"] { margin-bottom: 0; }
}

@media (max-width: 767px) {
  .wrapper, .wrapper-full { padding-left: 20px !important; padding-right: 20px !important; }
  .wrapper-full.no-margin { padding-left: 0 !important; padding-right: 0 !important; }

  /* Tam ekran hero'ları mobilde makul yükseklikte tut */
  .section.fullscreen {
    height: auto !important;
    min-height: 86vh !important;
    min-height: 86dvh !important;
    max-height: none !important;
  }

  /* Yatay kaydırma yaratan mutlak konumlu öğeler */
  .align-right, .mobile-align-left { text-align: left !important; }

  /* Fare imleci efekti mobilde gereksiz */
  #mouseCursor { display: none !important; }
}

@media (max-width: 480px) {
  .kf-mnav-cta { grid-template-columns: 1fr; }
}

/* Dokunmatik hedef minimumları */
@media (pointer: coarse) {
  a, button, [role="button"], input[type="submit"] { min-height: 44px; }
  .kf-mnav-links a, .kf-legal-row a, .kf-breadcrumb a { min-height: 0; }
}

/* -------------------------------------------------------------
   18. FORMLAR — mobilde iOS zoom önleme
   ------------------------------------------------------------- */
input, select, textarea { font-size: 16px; }
@media (min-width: 768px) {
  input, select, textarea { font-size: 15px; }
}
input, select, textarea, button { font-family: inherit; }

/* -------------------------------------------------------------
   19. YAZDIRMA
   ------------------------------------------------------------- */
@media print {
  #header, #footer, .kf-mobile-nav, .kf-mobile-nav-backdrop,
  .kf-wa-widget, .kf-cookie, .kf-breadcrumb, #mouseCursor,
  .page-loader, .nayla-page-transition { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .kf-doc { max-width: none; }
}

/* -------------------------------------------------------------
   20. MONOGRAM AVATAR
   Fotoğrafı olmayan müşteri referansları için Nayla estetiğinde
   harf tabanlı marka rozeti (kırık 1x1 görsellerin yerine).
   ------------------------------------------------------------- */
.kf-avatar-mono {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--kf-r-lg);
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(200,169,110,.30), transparent 60%),
    linear-gradient(150deg, #17171a 0%, #26262b 55%, #17171a 100%);
  border: 1px solid rgba(200,169,110,.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 20px;
  overflow: hidden;
}
.kf-avatar-mono::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: calc(var(--kf-r-lg) - 6px);
  pointer-events: none;
}
.kf-avatar-mono__txt {
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--kf-gold);
}
.kf-avatar-mono__name {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  text-align: center;
  max-width: 90%;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .kf-avatar-mono { aspect-ratio: 16 / 9; }
}

/* -------------------------------------------------------------
   21. HERO ALT ALANI — MOBİL YERLEŞİM
   Nayla'nın dairesel "aşağı kaydır" göstergesi ile CTA butonu
   dar ekranlarda yan yana sıkışıyordu.
   ------------------------------------------------------------- */
@media (max-width: 767px) {
  .section.fullscreen .nayla-circular-text { display: none !important; }

  .section.fullscreen .c-col-6.sm-6.self-end,
  .section.fullscreen .c-col-6.sm-6.self-end.align-right {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: left !important;
  }

  /* Nayla'nın .nayla-button sarmalayıcısı inline-block; genişliği
     bağlantıya değil sarmalayıcıya vermek ikon konumunu bozmaz. */
  .section.fullscreen .nayla-button {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  .section.fullscreen .nayla-button > a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 16px 44px 16px 20px !important;
    font-size: 12.5px !important;
    letter-spacing: .06em !important;
    box-sizing: border-box !important;
  }
}

/* -------------------------------------------------------------
   22. MATERIAL ICONS YÜKLENMEZSE LİGATÜR METNİ SIZMASIN
   Font engellenir veya yavaş yüklenirse ekranda "arrow_outward"
   gibi ham metinler görünmesin.
   ------------------------------------------------------------- */
html:not(.kf-icons-ready):not(.kf-icons-failed) .material-icons {
  visibility: hidden !important;
  display: inline-block !important;
  width: 1em;
  overflow: hidden;
}
html.kf-icons-failed .material-icons { display: none !important; }

/* -------------------------------------------------------------
   23. İKON FONTU — MATERIAL SYMBOLS
   Klasik "Material Icons" setinde arrow_outward gibi ligatürler
   bulunmadığından ham metin olarak sızıyordu. Material Symbols
   klasik setin üst kümesidir; header'da alt-kümelenmiş sürüm
   yüklenir (temadaki 2,5 MB'lık yerel dosya kullanılmaz).
   ------------------------------------------------------------- */
.material-icons,
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined', 'Material Icons' !important;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24 !important;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/* -------------------------------------------------------------
   24. NAYLA PSEUDO İKONLARI
   Nayla bazı ikonları ::before/::after içeriği olarak "Material
   Icons" ailesiyle basıyor (data-icon="arrow_outward" gibi).
   arrow_outward klasik sette bulunmadığından ham metin sızıyordu.
   ------------------------------------------------------------- */
.nayla-button.icon-left::before,
.nayla-button.icon-right::before,
.nayla-button.icon-left::after,
.nayla-button.icon-right::after,
.nayla-circular-text::before,
.nayla-circular-text::after,
.scroll-button::before,
.scroll-button::after,
.project-slide-button::before,
.project-slide-button::after {
  font-family: 'Material Symbols Outlined', 'Material Icons' !important;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24 !important;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}

/* İkon fontu hiç yüklenmezse ham ligatür metni görünmesin */
html.kf-icons-failed .nayla-button.icon-left::before,
html.kf-icons-failed .nayla-button.icon-right::before,
html.kf-icons-failed .nayla-button.icon-left::after,
html.kf-icons-failed .nayla-button.icon-right::after,
html.kf-icons-failed .nayla-circular-text::before,
html.kf-icons-failed .nayla-circular-text::after,
html.kf-icons-failed .scroll-button::before,
html.kf-icons-failed .scroll-button::after,
html.kf-icons-failed .project-slide-button::before,
html.kf-icons-failed .project-slide-button::after {
  content: none !important;
}

/* Nayla'nın header yeniden kurulum zincirini ayakta tutan görünmez çapalar.
   GSAP, gsap.set([...]) dizisinde boş bir jQuery seti görünce hata veriyor;
   bu da her sayfa geçişinden sonra naylaHeader() ve ScrollTrigger.refresh()
   çalışmasını engelliyordu. */
.kf-sticky-anchor,
#header .kf-sticky-anchor,
.site-header.sticked .kf-sticky-anchor {
  position: absolute !important;
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: none !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
  pointer-events: none;
}

/* =============================================================
   25. BOŞLUK SIKILAŞTIRMA (site geneli)
   Nayla varsayılanları çok geniş; kurumsal ve derli toplu bir
   ritim için dikey boşluklar kısaltıldı.
   ============================================================= */
/* Nayla'nın c-col sütunlarında zaten margin-bottom:30px var; buna bir de
   row-gap eklenince satır araları iki katına çıkıyor ve sayfa devasa beyaz
   boşluklarla doluyordu. Gap sıfırlanıp tek bir alt boşluk bırakılıyor. */
#content .wrapper,
#content .wrapper-full { row-gap: 0 !important; }

#content .wrapper > [class*="c-col-"],
#content .wrapper-full > [class*="c-col-"] {
  margin-bottom: clamp(14px, 1.6vw, 24px) !important;
}
#content .wrapper > [class*="c-col-"]:last-child,
#content .wrapper-full > [class*="c-col-"]:last-child { margin-bottom: 0 !important; }

.text-wrapper { margin-bottom: 0; }
.text-wrapper > *:last-child { margin-bottom: 0 !important; }

/* Nayla'nın inline "empty-space" yükseklikleri mobilde yarıya iner */
@media (max-width: 767px) {
  .empty-space { height: 14px !important; }
  .empty-space.hide-mobile { display: none !important; }
}

/* Ardışık bölümlerin çift boşluk yaratmasını engelle */
.section + .section { padding-top: clamp(26px, 3vw, 48px) !important; }
.section.kf-tight { padding-top: clamp(20px, 2.2vw, 34px) !important;
                    padding-bottom: clamp(16px, 1.8vw, 28px) !important; }
.section.kf-flush-top { padding-top: 0 !important; }
.section.kf-flush-bottom { padding-bottom: 0 !important; }

/* Başlık altı boşlukları */
h1, h2, h3, h4 { margin-bottom: .5em !important; }
h5, h6 { margin-bottom: .45em !important; }
.no-margin, .text-wrapper .no-margin { margin-bottom: 0 !important; }
p { margin-bottom: .85em; }

/* Nayla ayıracı çevresi */
.nayla-divider { margin: 0 !important; }

/* =============================================================
   26. MARQUEE (kayan yazı) — taşma ve boyut düzeltmesi
   Nayla .big-title'ı 200px sabit veriyor; satırlar iç içe geçiyordu.
   ============================================================= */
.nayla-marquee .big-title,
.nayla-marquee .text-h2,
.nayla-marquee p {
  font-size: clamp(18px, 2.4vw, 34px) !important;
  line-height: 1.25 !important;
  letter-spacing: -.02em !important;
  margin: 0 !important;
  white-space: nowrap !important;
  font-weight: 500 !important;
}
.nayla-marquee {
  padding: clamp(8px, 1vw, 14px) 0 !important;
  overflow: hidden;
}
.nayla-marquee .marquee-wrap { align-items: center; }
.nayla-marquee p span,
.nayla-marquee .marquee-seperator {
  opacity: .35;
  padding: 0 .35em;
}

/* Marka bandı (küçük, sakin) */
.kf-brandbar .nayla-marquee p {
  font-size: clamp(13px, 1.35vw, 19px) !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  opacity: .78;
}

/* =============================================================
   27. AKORDEON — tıklanabilir olduğu belli olsun
   ============================================================= */
.nayla-accordion .accordion-item {
  border-top: 1px solid rgba(13,13,13,.12);
  transition: background .25s var(--kf-ease);
}
.nayla-accordion .accordion-item:last-child { border-bottom: 1px solid rgba(13,13,13,.12); }

.nayla-accordion .accordion-title {
  position: relative;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 18px 16px !important;
  margin: 0 !important;
  border-radius: 10px;
  transition: background .22s var(--kf-ease), color .22s var(--kf-ease), padding-left .28s var(--kf-ease);
  font-size: clamp(15px, 1.5vw, 19px) !important;
  line-height: 1.35 !important;
}
.nayla-accordion .accordion-title:hover {
  background: rgba(200,169,110,.14);
  padding-left: 22px !important;
}
.nayla-accordion .accordion-item.active > .accordion-title {
  background: rgba(200,169,110,.18);
  font-weight: 600;
}

/* Sağdaki ok göstergesi — Nayla'nın kendi ::after arka planını ezmek için
   yüksek özgüllük ve border ile çizim (background-image geçersiz kılınıyordu). */
.nayla-accordion .accordion-wrap .accordion-item .accordion-title::after {
  content: "" !important;
  /* .accordion-title flex olduğu için pseudo bir flex öğesi; margin-left:auto
     ile sağa yaslamak absolute konumlandırmadan daha güvenilir. */
  position: static !important;
  order: 99;
  flex: 0 0 9px !important;
  margin-left: auto !important;
  margin-right: 4px;
  width: 9px !important;
  height: 9px !important;
  align-self: center;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  border-right: 1.8px solid currentColor !important;
  border-bottom: 1.8px solid currentColor !important;
  border-radius: 1px;
  opacity: .55;
  transform: rotate(45deg);
  transition: transform .32s var(--kf-ease), opacity .2s var(--kf-ease);
}
.nayla-accordion .accordion-wrap .accordion-item .accordion-title:hover::after { opacity: 1; }
.nayla-accordion .accordion-wrap .accordion-item.active .accordion-title::after {
  transform: rotate(-135deg);
  opacity: 1;
}

/* Solda ince altın vurgu — tıklanabilirliği güçlendirir */
.nayla-accordion .accordion-item .accordion-title {
  border-left: 2px solid transparent;
}
.nayla-accordion .accordion-item .accordion-title:hover,
.nayla-accordion .accordion-item.active > .accordion-title {
  border-left-color: var(--kf-gold);
}

/* Nayla'nın kendi nokta ikonu bu düzende gereksiz */
.nayla-accordion .accordion-toggle { display: none !important; }

.nayla-accordion .accordion-content { padding: 0 16px !important; }
.nayla-accordion .accordion-content p {
  padding-bottom: 18px;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  max-width: 62ch;
}

/* Koyu zeminde */
.kf-section-dark .nayla-accordion .accordion-item,
.kf-section-dark .nayla-accordion .accordion-item:last-child { border-color: rgba(255,255,255,.14); }
.kf-section-dark .nayla-accordion .accordion-title:hover { background: rgba(255,255,255,.07); }

/* =============================================================
   28. GÖRSEL YER TUTUCU (placeholder)
   Müşteri kendi fotoğrafını yükleyene kadar boş alanlar şık dursun.
   ============================================================= */
.kf-ph {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: var(--kf-ph-ratio, 4 / 5);
  border-radius: var(--kf-r-md);
  background:
    repeating-linear-gradient(135deg, rgba(13,13,13,.028) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, #f1efe9 0%, #e7e3da 100%);
  border: 1px solid rgba(13,13,13,.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  padding: 22px;
}
.kf-ph::before {
  content: "";
  width: 34px; height: 34px;
  border: 1.5px solid rgba(13,13,13,.28);
  border-radius: 7px;
  background:
    radial-gradient(circle at 32% 34%, rgba(13,13,13,.32) 0 3px, transparent 3.5px),
    linear-gradient(45deg, transparent 55%, rgba(13,13,13,.22) 55% 72%, transparent 72%);
}
.kf-ph__label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(13,13,13,.5);
}
.kf-ph__hint {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(13,13,13,.42);
  max-width: 24ch;
}
.kf-ph__file {
  font-size: 10.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(13,13,13,.38);
  background: rgba(13,13,13,.05);
  padding: 3px 8px;
  border-radius: 5px;
  word-break: break-all;
}
.kf-ph--wide { --kf-ph-ratio: 16 / 9; }
.kf-ph--square { --kf-ph-ratio: 1 / 1; }
.kf-ph--tall { --kf-ph-ratio: 3 / 4; }

.kf-section-dark .kf-ph,
.kf-ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, #1d1d21 0%, #131316 100%);
  border-color: rgba(255,255,255,.12);
}
.kf-section-dark .kf-ph::before, .kf-ph--dark::before { border-color: rgba(255,255,255,.3); }
.kf-section-dark .kf-ph__label, .kf-ph--dark .kf-ph__label { color: rgba(255,255,255,.6); }
.kf-section-dark .kf-ph__hint, .kf-ph--dark .kf-ph__hint { color: rgba(255,255,255,.45); }
.kf-section-dark .kf-ph__file, .kf-ph--dark .kf-ph__file {
  color: rgba(255,255,255,.5); background: rgba(255,255,255,.07);
}

/* =============================================================
   30. İLETİŞİM BİLGİ BLOKLARI
   ============================================================= */
.kf-contact-label {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--kf-gold-deep);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--kf-line);
}
.kf-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 !important;
}
.kf-contact-block a { text-decoration: none; }
.kf-contact-block a:hover { color: var(--kf-gold-deep); text-decoration: underline; text-underline-offset: 4px; }
.kf-contact-strong { font-weight: 600; font-size: 1.05em; }
.kf-contact-muted { font-size: 13px; opacity: .62; line-height: 1.55; }

/* =============================================================
   31. ANA SAYFA HERO SLIDER
   ============================================================= */
.kf-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  background: #0d0d0d;
}
@media (max-width: 767px) { .kf-hero { min-height: 92svh; min-height: 92vh; } }

.kf-hero-media { position: absolute; inset: 0; z-index: 0; }
.kf-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s var(--kf-ease);
  will-change: opacity;
}
.kf-hero-slide.is-active { opacity: 1; }
.kf-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
  transition: transform 8s linear;
}
.kf-hero-slide.is-active img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .kf-hero-slide img, .kf-hero-slide.is-active img { transform: none; transition: none; }
}

.kf-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.28) 42%, rgba(10,10,10,.90) 100%),
    linear-gradient(90deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 62%);
}

.kf-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--kf-header-h) + 40px) !important;
  padding-bottom: clamp(26px, 3.4vw, 46px) !important;
  row-gap: clamp(12px, 1.4vw, 20px) !important;
}

.kf-hero-eyebrow {
  font-size: clamp(9.5px, .95vw, 11.5px);
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  margin: 0 0 4px;
}
.kf-hero-title {
  color: #fff !important;
  margin: 0 !important;
  font-weight: 500 !important;
  line-height: 1.03 !important;
  text-shadow: 0 6px 40px rgba(0,0,0,.55);
}
.kf-hero-lead {
  color: rgba(255,255,255,.82);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.6;
  max-width: 52ch;
  margin: 10px 0 0;
}
.kf-hero-actions {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .kf-hero-actions { justify-content: flex-start; margin-top: 6px; }
}
.kf-hero-actions .kf-btn { width: auto; }
@media (max-width: 600px) { .kf-hero-actions .kf-btn { flex: 1 1 100%; } }

.kf-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(18px, 2.4vw, 34px);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.kf-hero-nav { display: flex; gap: 8px; }
.kf-hero-dot {
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; padding: 8px 0; cursor: pointer;
  width: 46px;
}
.kf-hero-dot__bar {
  display: block; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.28);
  overflow: hidden; position: relative;
  transition: background .3s var(--kf-ease);
}
.kf-hero-dot:hover .kf-hero-dot__bar { background: rgba(255,255,255,.5); }
.kf-hero-dot.is-active .kf-hero-dot__bar { background: rgba(255,255,255,.28); }
.kf-hero-dot.is-active .kf-hero-dot__bar::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--kf-gold);
  transform-origin: left;
  animation: kfHeroBar 6s linear forwards;
}
@keyframes kfHeroBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .kf-hero-dot.is-active .kf-hero-dot__bar::after { animation: none; transform: scaleX(1); }
}

.kf-hero-scrollcue {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.kf-hero-scrollcue__line {
  width: 34px; height: 1px; background: rgba(255,255,255,.4);
  position: relative; overflow: hidden;
}
.kf-hero-scrollcue__line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--kf-gold);
  animation: kfCue 2.2s ease-in-out infinite;
}
@keyframes kfCue { 0%,100%{transform:translateX(-100%)} 50%{transform:translateX(100%)} }
@media (max-width: 600px) { .kf-hero-scrollcue { display: none; } }

/* =============================================================
   32. MARKA BANDI (çalıştığımız markalar)
   ============================================================= */
.kf-brandbar { background: var(--kf-paper-alt); }
.kf-brandbar .kf-brandbar-label {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--kf-ink-muted); margin: 0;
  white-space: nowrap;
}
.kf-ref-brand-pill {
  display: inline-flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(20px, 2.6vw, 40px);
  border-right: 1px solid rgba(13,13,13,.10);
  line-height: 1.25;
}
.kf-ref-brand-pill .kf-brand-name {
  font-size: clamp(12.5px, 1.25vw, 16px);
  font-weight: 600; letter-spacing: .06em; color: var(--kf-ink);
  white-space: nowrap;
}
.kf-ref-brand-pill .kf-brand-sub {
  font-size: clamp(8.5px, .85vw, 10px);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--kf-ink-muted); margin-top: 3px; white-space: nowrap;
}

.kf-brandbar-track { display: flex; align-items: center; padding: 6px 0; }
.kf-brandbar .nayla-marquee { padding: 0 !important; }
@media (max-width: 767px) {
  .kf-brandbar .kf-brandbar-label { margin-bottom: 12px; }
  .kf-ref-brand-pill { padding: 0 18px; }
}

/* =============================================================
   34. MÜŞTERİ YORUMLARI — KART DÜZENİ
   Nayla infinite-tabs karışık ve okunmuyordu; sabit kartlar.
   ============================================================= */
.kf-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) { .kf-quote-grid { grid-template-columns: 1fr; } }

.kf-quote {
  position: relative;
  background: #fff;
  border: 1px solid var(--kf-line);
  border-radius: var(--kf-r-lg);
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s var(--kf-ease), box-shadow .25s var(--kf-ease), transform .25s var(--kf-ease);
}
.kf-quote:hover {
  border-color: rgba(200,169,110,.55);
  box-shadow: var(--kf-shadow-md);
  transform: translateY(-3px);
}
.kf-quote__mark {
  font-size: 52px;
  line-height: .7;
  color: var(--kf-gold);
  opacity: .5;
  font-family: Georgia, "Times New Roman", serif;
  height: 26px;
}
.kf-quote__text {
  font-size: clamp(14.5px, 1.35vw, 16.5px);
  line-height: 1.7;
  color: var(--kf-ink-soft);
  margin: 0;
  flex: 1;
}
.kf-quote__foot {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 15px;
  border-top: 1px solid var(--kf-line);
}
.kf-quote__badge {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 50%;
  background: var(--kf-ink);
  color: var(--kf-gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
}
.kf-quote__who { display: flex; flex-direction: column; line-height: 1.4; min-width: 0; }
.kf-quote__who strong { font-size: 14.5px; font-weight: 600; color: var(--kf-ink); }
.kf-quote__who span { font-size: 12.5px; color: var(--kf-ink-muted); }
.kf-quote__co { font-size: 11.5px !important; letter-spacing: .04em; }
.kf-quote__tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase; font-weight: 700;
  color: var(--kf-gold-deep);
  background: var(--kf-gold-soft);
  padding: 5px 11px; border-radius: var(--kf-r-pill);
}
@media (max-width: 600px) {
  .kf-quote__tag { position: static; align-self: flex-start; margin-bottom: -6px; }
}

/* =============================================================
   36. HAKKIMIZDA — ZAMAN ÇİZELGESİ, GÖRSEL ŞERİDİ, ETİKETLER
   ============================================================= */
.kf-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.kf-timeline::before {
  content: ""; position: absolute; left: 78px; top: 8px; bottom: 8px;
  width: 1px; background: var(--kf-line);
}
@media (max-width: 620px) { .kf-timeline::before { left: 0; } }

.kf-timeline li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0 26px;
  padding: 0 0 22px;
  position: relative;
}
.kf-timeline li:last-child { padding-bottom: 0; }
.kf-timeline li::before {
  content: ""; position: absolute; left: 74px; top: 7px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--kf-gold); border: 2px solid var(--kf-paper-alt);
  box-shadow: 0 0 0 1px var(--kf-gold);
}
.kf-timeline__year {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--kf-gold-deep); padding-top: 2px;
}
.kf-timeline h3 { font-size: clamp(15px, 1.5vw, 18px) !important; margin: 0 0 5px !important; }
.kf-timeline p { font-size: 14px; line-height: 1.65; color: var(--kf-ink-soft); margin: 0; max-width: 60ch; }

@media (max-width: 620px) {
  .kf-timeline li { grid-template-columns: 1fr; gap: 4px; padding-left: 22px; }
  .kf-timeline li::before { left: -4px; }
}

.kf-about-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) { .kf-about-strip { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.kf-about-strip figure { margin: 0; border-radius: var(--kf-r-md); overflow: hidden; aspect-ratio: 4/5; background: var(--kf-paper-alt); }
.kf-about-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--kf-ease); }
.kf-about-strip figure:hover img { transform: scale(1.04); }

.kf-tag-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.kf-tag-list li {
  font-size: 12.5px; font-weight: 500;
  padding: 8px 15px; border-radius: var(--kf-r-pill);
  background: var(--kf-gold-soft); color: var(--kf-ink);
}
.kf-tag-list--outline li { background: transparent; border: 1px solid var(--kf-line); color: var(--kf-ink-soft); }
.kf-note-small { font-size: 12.5px; color: var(--kf-ink-muted); line-height: 1.6; margin: 0; max-width: 48ch; }
.kf-note-small a { text-decoration: underline; text-underline-offset: 3px; color: var(--kf-gold-deep); }

/* Nayla'nın nokta ikonu her koşulda gizli kalsın */
.nayla-accordion .accordion-title .accordion-toggle,
.nayla-accordion .accordion-title .material-icons { display: none !important; }

/* Marquee bölümleri: ayıraçlarla arasındaki boşluk minimum */
.section:has(> .wrapper-full > .c-col-12 > .nayla-marquee),
.section:has(.nayla-marquee) { padding-top: clamp(18px, 2vw, 30px) !important;
                               padding-bottom: clamp(14px, 1.6vw, 24px) !important; }
.wrapper-full:has(> .c-col-12 > .nayla-marquee) { row-gap: 0 !important; }
.nayla-marquee + .nayla-divider, .nayla-divider + .nayla-marquee { margin: 0 !important; }

/* =============================================================
   36. KF-FX — Nayla ile aynı yan boşluğa sahip sade kapsayıcı
   Nayla'nın .wrapper/c-col grid'i bazı düzenlerde satır kaydırdığı
   için, kontrollü olması gereken bölümlerde bu kullanılır.
   ============================================================= */
.kf-fx {
  --kf-gutter: clamp(20px, 5.76vw, 90px);
  padding-inline: var(--kf-gutter);
  box-sizing: border-box;
  width: 100%;
}
.kf-sr {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* =============================================================
   37. FOOTER — sıfırdan, sade ve hizalı
   ============================================================= */
#footer.kf-foot {
  background: #0c0c0d;
  color: rgba(255,255,255,.72);
  margin-top: clamp(40px, 5vw, 80px) !important;
  padding: 0 0 calc(26px + env(safe-area-inset-bottom)) !important;
}
.kf-foot a { color: inherit; text-decoration: none; transition: color .2s var(--kf-ease); }
.kf-foot a:hover { color: var(--kf-gold); }

.kf-foot-eyebrow {
  font-size: 10px !important;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700 !important;
  color: var(--kf-gold);
  margin: 0 0 14px !important;
  line-height: 1.4 !important;
}

/* --- E-bülten --- */
.kf-foot-news {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 48px;
  flex-wrap: wrap;
  padding-top: clamp(38px, 4vw, 58px);
  padding-bottom: clamp(28px, 3vw, 42px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.kf-foot-news__copy { min-width: 0; }
.kf-foot-news__title {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0;
  font-weight: 500;
}
.kf-foot-news__form {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1 1 340px;
  max-width: 460px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: border-color .25s var(--kf-ease);
}
.kf-foot-news__form:focus-within { border-color: var(--kf-gold); }
.kf-foot-news__form input {
  flex: 1;
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  padding: 12px 2px !important;
  font-size: 14px !important;
  outline: none;
}
.kf-foot-news__form input::placeholder { color: rgba(255,255,255,.42); }
.kf-foot-news__form button {
  background: transparent;
  border: 0;
  color: var(--kf-gold);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 0 12px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s var(--kf-ease);
}
.kf-foot-news__form button:hover { color: #fff; }

/* --- Sütunlar --- */
.kf-foot-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px 40px;
  padding-top: clamp(34px, 3.6vw, 52px);
  padding-bottom: clamp(30px, 3.2vw, 46px);
}
@media (max-width: 900px) { .kf-foot-cols { grid-template-columns: 1fr 1fr; gap: 30px 28px; } }
@media (max-width: 520px) { .kf-foot-cols { grid-template-columns: 1fr; } }

.kf-foot-brand .kf-footer-logo-img { height: 22px; width: auto; display: block; }
.kf-foot-brand p {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 34ch;
}
@media (max-width: 900px) { .kf-foot-brand { grid-column: 1 / -1; } }

.kf-foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.kf-foot-col li { font-size: 13.5px; line-height: 1.5; }
.kf-foot-muted { color: rgba(255,255,255,.45); font-size: 12.5px !important; }

/* --- Alt satır --- */
.kf-foot-base {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 36px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.kf-foot-legal p { margin: 0 0 3px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.kf-foot-legal .kf-copy {
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.62); font-weight: 500;
}
.kf-foot-legal a { text-decoration: underline; text-underline-offset: 3px; }
.kf-foot-legal-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.kf-foot-legal-links a { font-size: 12px; color: rgba(255,255,255,.5); }
@media (max-width: 700px) {
  .kf-foot-base { flex-direction: column; }
}

/* --- Sade footer (tek ekran sayfalar) --- */
#footer.kf-footer-mini, .kf-footer-mini {
  margin-top: 0 !important;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom)) !important;
  background: #0c0c0d;
}
.kf-footer-mini-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px 24px; flex-wrap: wrap;
}
.kf-footer-mini .kf-copy { margin: 0; font-size: 11.5px; color: rgba(255,255,255,.55); }
.kf-footer-mini .kf-copy a { color: rgba(255,255,255,.8); text-decoration: underline; text-underline-offset: 3px; }
.kf-footer-mini nav { display: flex; gap: 18px; flex-wrap: wrap; }
.kf-footer-mini nav a { font-size: 11.5px; color: rgba(255,255,255,.55); }
.kf-footer-mini nav a:hover { color: var(--kf-gold); }

/* =============================================================
   38. PAKETLER — TEK EKRAN, MİNİMAL (editoryal)
   Kart/çerçeve yok; ince ayraçlar ve tipografi hiyerarşisi.
   ============================================================= */
.kf-pricing {
  --kf-gutter: clamp(20px, 5.76vw, 90px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: calc(var(--kf-header-h) + 30px) var(--kf-gutter) 20px;
  min-height: 100svh;
  min-height: 100vh;
}
.kf-pricing * { box-sizing: border-box; }

.kf-pricing-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex: 0 0 auto;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid var(--kf-line);
}
.kf-pricing-head h1 { margin: 0 !important; }
.kf-pricing-head__note { max-width: 38ch; }
.kf-pricing-note { font-size: 13px; line-height: 1.6; color: var(--kf-ink-muted); margin: 0; text-align: right; }

.kf-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 0 clamp(28px, 4vw, 64px);
  flex: 1 1 0%;
  min-height: 0;
}
.kf-pricing-col { display: flex; flex-direction: column; min-height: 0; }
.kf-pricing-col--calc { border-left: 1px solid var(--kf-line); padding-left: clamp(24px, 3vw, 48px); }

.kf-pricing-step {
  font-size: 10px !important;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 700 !important;
  color: var(--kf-ink-muted);
  margin: 0 0 4px !important; line-height: 1.4 !important;
}

/* --- Paket listesi: çerçevesiz satırlar --- */
.kf-pricing-list {
  display: flex; flex-direction: column;
  overflow-y: auto; min-height: 0; flex: 1;
  scrollbar-width: thin;
}
.kf-pricing-list::-webkit-scrollbar { width: 4px; }
.kf-pricing-list::-webkit-scrollbar-thumb { background: rgba(13,13,13,.16); }

.kf-pkg-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--kf-line);
  background: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity .22s var(--kf-ease);
}
.kf-pkg-item:first-child { border-top: 1px solid var(--kf-line); }
.kf-pkg-item:not(.active) { opacity: .62; }
.kf-pkg-item:not(.active):hover { opacity: 1; }
.kf-pkg-item.active { opacity: 1; }

.kf-pkg-thumb {
  width: 62px; height: 62px; flex: none;
  border-radius: 0; overflow: hidden; background: var(--kf-paper-alt);
  filter: grayscale(1);
  transition: filter .3s var(--kf-ease);
}
.kf-pkg-item.active .kf-pkg-thumb,
.kf-pkg-item:hover .kf-pkg-thumb { filter: none; }
.kf-pkg-thumb img { width: 100%; height: 100%; object-fit: cover; }

.kf-pkg-body { min-width: 0; }
.kf-pkg-cat {
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--kf-ink-muted); font-weight: 600;
}
.kf-pkg-name {
  font-size: clamp(16px, 1.6vw, 20px) !important;
  margin: 4px 0 0 !important; line-height: 1.2 !important;
  font-weight: 500 !important;
  letter-spacing: -.015em !important;
}
.kf-pkg-item.active .kf-pkg-name { font-weight: 600 !important; }
.kf-pkg-desc { display: none; }
.kf-pkg-item.active .kf-pkg-desc {
  display: block;
  font-size: 12.5px; line-height: 1.55; color: var(--kf-ink-muted);
  margin: 6px 0 0; max-width: 52ch;
}

.pkg-features-toggle { margin-top: 8px; }
.pkg-features-toggle ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 4px 16px;
}
.pkg-features-toggle li {
  font-size: 11.5px; color: var(--kf-ink-muted); line-height: 1.5;
  position: relative; padding-left: 11px;
}
.pkg-features-toggle li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 4px; height: 1px; background: var(--kf-gold);
}

.kf-pkg-price { text-align: right; white-space: nowrap; padding-left: 8px; }
.kf-pkg-from { display: none; }
.kf-pkg-price strong {
  display: block; font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.kf-pkg-unit { display: block; font-size: 11px; color: var(--kf-ink-muted); margin-top: 2px; }
.kf-pkg-check {
  display: block; width: 22px; height: 1.5px; margin: 9px 0 0 auto;
  background: var(--kf-line); border: 0; border-radius: 0;
  transition: background .22s var(--kf-ease), width .28s var(--kf-ease);
}
.kf-pkg-item.active .kf-pkg-check { background: var(--kf-gold); width: 38px; }
.kf-pkg-item.active .kf-pkg-check::after { content: none; }

/* --- Hesaplayıcı: kutusuz --- */
.kf-calc {
  border: 0; border-radius: 0; background: none; box-shadow: none;
  padding: 0;
  display: flex; flex-direction: column; gap: 18px;
  flex: 1; min-height: 0;
}
.kf-calc-head { display: flex; gap: 14px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--kf-line); }
.kf-calc-thumb { width: 52px; height: 52px; flex: none; border-radius: 0; overflow: hidden; background: var(--kf-paper-alt); }
.kf-calc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kf-calc-label { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--kf-ink-muted); font-weight: 600; }
.kf-calc-name { font-size: clamp(16px, 1.6vw, 19px) !important; margin: 3px 0 0 !important; font-weight: 500 !important; }

.kf-calc-qty label {
  display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--kf-ink-muted); font-weight: 700; margin-bottom: 10px;
}
.kf-qty-row {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1.5px solid var(--kf-ink);
}
.kf-qty-btn {
  width: 42px; height: 48px; flex: none;
  border: 0; background: none; border-radius: 0;
  font-size: 21px; line-height: 1; cursor: pointer;
  color: var(--kf-ink-muted);
  transition: color .18s var(--kf-ease);
}
.kf-qty-btn:hover { background: none; color: var(--kf-ink); }
#calc-shot-input {
  flex: 1; height: 48px; text-align: center;
  font-size: clamp(22px, 2.4vw, 28px) !important; font-weight: 600; letter-spacing: -.02em;
  border: 0 !important; border-radius: 0; background: none;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}
#calc-shot-input::-webkit-outer-spin-button,
#calc-shot-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
#calc-shot-hint { display: block; margin-top: 9px; font-size: 11.5px; color: var(--kf-ink-muted); }

.kf-calc-lines { margin: 0; padding: 0; display: grid; gap: 9px; }
.kf-calc-lines > div { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.kf-calc-lines dt { font-size: 13px; color: var(--kf-ink-muted); margin: 0; }
.kf-calc-lines dd { margin: 0; font-size: 13.5px; font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; }

.kf-calc-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--kf-ink);
}
.kf-calc-total span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--kf-ink-muted); }
.kf-calc-total strong {
  font-size: clamp(28px, 3.2vw, 42px); font-weight: 600; letter-spacing: -.035em;
  color: var(--kf-ink); font-variant-numeric: tabular-nums;
}

.kf-calc-actions { display: grid; gap: 9px; margin-top: auto; }
.kf-calc-actions .kf-btn { padding: 15px 18px; border-radius: 0; }
.kf-calc-actions .kf-btn--primary { background: var(--kf-ink); border-color: var(--kf-ink); }
.kf-calc-actions .kf-btn--outline { border-color: rgba(13,13,13,.2); }
.kf-calc-trust { font-size: 10.5px; color: var(--kf-ink-muted); margin: 0; letter-spacing: .05em; }

@media (max-width: 900px) {
  .kf-pricing { display: block; min-height: 0; padding-bottom: 44px; }
  .kf-pricing-head { display: block; }
  .kf-pricing-note { text-align: left; margin-top: 10px; }
  .kf-pricing-grid { display: block; }
  .kf-pricing-col--calc {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--kf-line); padding-top: 26px; margin-top: 26px;
  }
  .kf-pkg-item { grid-template-columns: 52px 1fr auto; gap: 14px; }
  .kf-pkg-thumb { width: 52px; height: 52px; }
}

@media (min-width: 901px) {
  body.kf-single .kf-pricing {
    height: calc(100svh - 56px);
    height: calc(100vh - 56px);
    min-height: 560px;
    overflow: hidden;
  }
  body.kf-single .kf-pricing-list { flex: 1 1 auto; min-height: 0; overflow-y: auto; }
  body.kf-single .kf-calc { flex: 1 1 auto; min-height: 0; overflow-y: auto; }
}

/* =============================================================
   39. VAKA ÇALIŞMALARI — MİNİMAL (kart değil)
   ============================================================= */
.kf-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 38px) clamp(18px, 2vw, 32px);
}
@media (max-width: 1024px) { .kf-case-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px)  { .kf-case-grid { grid-template-columns: 1fr; } }

.kf-case {
  display: flex; flex-direction: column;
  background: none; border: 0; border-radius: 0; box-shadow: none;
  transition: none;
}
.kf-case:hover { transform: none; box-shadow: none; border: 0; }

.kf-case__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--kf-paper-alt);
}
.kf-case__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--kf-ease), filter .4s var(--kf-ease);
  filter: grayscale(.15);
}
.kf-case:hover .kf-case__media img { transform: scale(1.03); filter: none; }

.kf-case__play {
  position: absolute; left: 20px; bottom: 20px;
  width: 42px; height: 42px; margin: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 0;
  transition: background .25s var(--kf-ease);
}
.kf-case__play::after {
  content: ""; position: absolute; left: 17px; top: 13px;
  border-style: solid; border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #101010;
}
.kf-case:hover .kf-case__play { background: var(--kf-gold); }
.kf-case:hover .kf-case__play::after { border-left-color: #101010; }

.kf-case__body { padding: 14px 0 0; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.kf-case__tag {
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  color: var(--kf-ink-muted);
}
.kf-case__title {
  font-size: clamp(16px, 1.6vw, 19px) !important; margin: 0 !important;
  line-height: 1.25 !important; font-weight: 500 !important; letter-spacing: -.015em !important;
}
.kf-case__desc { font-size: 13px; line-height: 1.65; color: var(--kf-ink-muted); margin: 0; flex: 1; max-width: 42ch; }
.kf-case__meta {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--kf-ink-muted); opacity: .7;
  padding-top: 10px; margin-top: 4px;
  border-top: 1px solid var(--kf-line);
}

/* Tek ekran sayfalarda görsel breadcrumb gizlenir (JSON-LD'de kalır) */
body.kf-single .kf-breadcrumb { display: none !important; }

/* Footer üstündeki gereksiz beyaz boşluk */
#footer.kf-foot { margin-top: 0 !important; }
