/* =============================================================
   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: auto;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  width: min(420px, calc(100vw - 32px));
  background: #0d0d0d;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--kf-r-lg);
  padding: 15px 17px 14px;
  z-index: 99997;
  box-shadow: 0 22px 60px 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 11px; font-size: 12px; line-height: 1.55; color: rgba(255,255,255,.78); }
.kf-cookie a { color: var(--kf-gold); text-decoration: underline; text-underline-offset: 3px; }
.kf-cookie-actions { display: flex; gap: 8px; }
.kf-cookie-actions button {
  appearance: none; -webkit-appearance: none;
  border-radius: var(--kf-r-pill);
  padding: 9px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  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 { left: 12px; right: 12px; width: auto; padding: 13px 14px 12px; }
  .kf-cookie p { font-size: 11.5px; margin-bottom: 10px; }
  .kf-cookie-actions button { flex: 1 1 0; padding: 9px 8px; font-size: 10px; letter-spacing: .05em; }
}

/* -------------------------------------------------------------
   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
   Sağ/sol oklar, slayta göre değişen metin, ilerleme çubuğu.
   Görseli olmayan slaytlar sade koyu zemin olarak kalır.
   ============================================================= */
.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: #0b0b0c;
}
@media (max-width: 767px) { .kf-hero { min-height: 90svh; min-height: 90vh; } }

.kf-hero-media { position: absolute; inset: 0; z-index: 0; }
.kf-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s 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 9s linear;
}
.kf-hero-slide.is-active img { transform: scale(1); }

/* Görseli olmayan slayt: sade, kasıtlı boş yüzey */
.kf-hero-slide[data-empty] {
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(200,169,110,.10), transparent 62%),
    linear-gradient(160deg, #141416 0%, #0b0b0c 100%);
}
@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(9,9,10,.70) 0%, rgba(9,9,10,.24) 42%, rgba(9,9,10,.90) 100%),
    linear-gradient(90deg, rgba(9,9,10,.58) 0%, rgba(9,9,10,0) 66%);
}

/* --- Oklar --- */
.kf-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(12,12,13,.35);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--kf-ease), border-color .25s var(--kf-ease), transform .25s var(--kf-ease);
}
.kf-hero-arrow:hover {
  background: var(--kf-gold);
  border-color: var(--kf-gold);
  transform: translateY(-50%) scale(1.06);
}
.kf-hero-arrow--prev { left: clamp(12px, 2.4vw, 34px); }
.kf-hero-arrow--next { right: clamp(12px, 2.4vw, 34px); }
.kf-hero-arrow span {
  display: block;
  width: 11px; height: 11px;
  border-right: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transition: border-color .25s var(--kf-ease);
}
.kf-hero-arrow--prev span { transform: rotate(135deg); margin-left: 4px; }
.kf-hero-arrow--next span { transform: rotate(-45deg); margin-right: 4px; }
.kf-hero-arrow:hover span { border-color: #101010; }
@media (max-width: 767px) {
  /* Mobilde oklar CTA butonlarıyla çakışmasın: sağ üstte, yan yana */
  .kf-hero-arrow {
    width: 40px; height: 40px;
    top: calc(var(--kf-header-h) + 22px);
    bottom: auto; transform: none;
  }
  .kf-hero-arrow:hover { transform: none; }
  .kf-hero-arrow--prev { left: auto; right: 64px; }
  .kf-hero-arrow--next { right: 16px; }
  .kf-hero-arrow span { width: 9px; height: 9px; }
}

.kf-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--kf-header-h) + 40px) !important;
  padding-bottom: clamp(24px, 3vw, 42px) !important;
  row-gap: clamp(10px, 1.2vw, 18px) !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,.7);
  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,.5);
}

/* --- Slayt metinleri --- */
.kf-hero-caps { position: relative; min-height: 116px; }
@media (max-width: 900px) { .kf-hero-caps { min-height: 96px; margin-top: 14px; } }

.kf-hero-cap {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--kf-ease), transform .5s var(--kf-ease);
  pointer-events: none;
  padding-left: clamp(14px, 1.4vw, 20px);
  border-left: 1px solid rgba(255,255,255,.22);
}
.kf-hero-cap.is-active { opacity: 1; transform: translateY(0); }
.kf-hero-cap__num {
  display: block;
  font-size: 10px; letter-spacing: .22em; font-weight: 700;
  color: var(--kf-gold); margin-bottom: 8px;
}
.kf-hero-cap__title {
  margin: 0 0 6px;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.2; font-weight: 500; letter-spacing: -.015em;
  color: #fff;
}
.kf-hero-cap__desc {
  margin: 0;
  font-size: clamp(12.5px, 1.15vw, 14px);
  line-height: 1.6;
  color: rgba(255,255,255,.66);
  max-width: 40ch;
}

/* --- Alt bar --- */
.kf-hero-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px 24px; flex-wrap: wrap;
  margin-top: clamp(16px, 2vw, 28px);
  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,.26);
  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::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-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.kf-hero-actions .kf-btn { width: auto; }
@media (max-width: 600px) {
  .kf-hero-bottom { flex-direction: column; align-items: stretch; }
  .kf-hero-nav { justify-content: center; }
  .kf-hero-actions .kf-btn { flex: 1 1 100%; }
}

/* =============================================================
   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, kompakt satırlar --------------
   6 paket tek ekrana sığsın diye satır yüksekliği düşürüldü;
   iç kaydırma çubuğu artık görünmüyor.
   ------------------------------------------------------------ */
.kf-pricing-list {
  display: flex; flex-direction: column;
  min-height: 0; flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.kf-pricing-list::-webkit-scrollbar { width: 0; height: 0; }

.kf-pkg-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 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: .58; }
.kf-pkg-item:not(.active):hover { opacity: 1; }
.kf-pkg-item.active { opacity: 1; }

.kf-pkg-thumb {
  width: 46px; height: 46px; 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: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--kf-ink-muted); font-weight: 600; line-height: 1.4;
}
.kf-pkg-name {
  font-size: clamp(14.5px, 1.35vw, 17px) !important;
  margin: 2px 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: 12px; line-height: 1.5; color: var(--kf-ink-muted);
  margin: 4px 0 0; max-width: 56ch;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

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

.kf-pkg-price { text-align: right; white-space: nowrap; padding-left: 6px; }
.kf-pkg-from { display: none; }
.kf-pkg-price strong {
  display: block; font-size: clamp(14px, 1.35vw, 16.5px);
  font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.kf-pkg-unit { display: block; font-size: 10.5px; color: var(--kf-ink-muted); margin-top: 1px; }
.kf-pkg-check {
  display: block; width: 18px; height: 1.5px; margin: 7px 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: 32px; }
.kf-pkg-item.active .kf-pkg-check::after { content: none; }

/* --- Hesaplayıcı: kutusuz, kompakt --- */
.kf-calc {
  border: 0; border-radius: 0; background: none; box-shadow: none;
  padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1; min-height: 0;
}
.kf-calc-head { display: flex; gap: 12px; align-items: center; padding-bottom: 13px; border-bottom: 1px solid var(--kf-line); }
.kf-calc-thumb { width: 46px; height: 46px; 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: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--kf-ink-muted); font-weight: 600; }
.kf-calc-name { font-size: clamp(15px, 1.5vw, 18px) !important; margin: 2px 0 0 !important; font-weight: 500 !important; }

/* --- ADET ALANI: siyah zemin, beyaz yazı (göze batan) --- */
.kf-calc-qty {
  background: var(--kf-ink);
  color: #fff;
  padding: 16px 18px 15px;
  margin: 0;
}
.kf-calc-qty label {
  display: block;
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--kf-gold); font-weight: 700; margin-bottom: 10px;
}
.kf-qty-row {
  display: flex; align-items: center; gap: 0;
  border: 0; border-bottom: 1px solid rgba(255,255,255,.22);
}
.kf-qty-btn {
  width: 44px; height: 52px; flex: none;
  border: 0; background: none; border-radius: 0;
  font-size: 24px; line-height: 1; cursor: pointer;
  color: rgba(255,255,255,.55);
  transition: color .18s var(--kf-ease);
}
.kf-qty-btn:hover { background: none; color: var(--kf-gold); }
#calc-shot-input {
  flex: 1; height: 52px; text-align: center;
  font-size: clamp(26px, 2.8vw, 34px) !important; font-weight: 700; letter-spacing: -.03em;
  border: 0 !important; border-radius: 0; background: none;
  color: #fff !important;
  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: 11px; color: rgba(255,255,255,.5); }

.kf-calc-lines { margin: 0; padding: 0; display: grid; gap: 7px; }
.kf-calc-lines > div { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.kf-calc-lines dt { font-size: 12.5px; color: var(--kf-ink-muted); margin: 0; }
.kf-calc-lines dd { margin: 0; font-size: 13px; 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: 13px; border-top: 1px solid var(--kf-ink);
}
.kf-calc-total span { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--kf-ink-muted); }
.kf-calc-total strong {
  font-size: clamp(26px, 3vw, 38px); font-weight: 600; letter-spacing: -.035em;
  color: var(--kf-ink); font-variant-numeric: tabular-nums;
}

.kf-calc-actions { display: grid; gap: 8px; margin-top: 4px; }
.kf-calc-actions .kf-btn { padding: 13px 18px; border-radius: 0; font-size: 12px; }
.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: 10px; color: var(--kf-ink-muted); margin: 0 0 0; letter-spacing: .05em; }
.kf-calc > .kf-calc-lines { margin-top: 2px; }
.kf-calc-total + .kf-calc-actions { margin-top: 6px; }

@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-list { overflow: visible; }
  .kf-pricing-col--calc {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--kf-line); padding-top: 24px; margin-top: 24px;
  }
}

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

/* Kısa ekranlarda (≤820px yükseklik) daha da sıkıştır */
@media (min-width: 901px) and (max-height: 820px) {
  .kf-pricing { padding-top: calc(var(--kf-header-h) + 14px); padding-bottom: 14px; }
  .kf-pricing-head { margin-bottom: 10px; padding-bottom: 9px; }
  .kf-pricing-head h1 { font-size: clamp(20px, 2.2vw, 27px) !important; }
  .kf-pricing-note { font-size: 12px; }
  .kf-pricing-step { margin-bottom: 2px !important; }

  .kf-pkg-item { padding: 7px 0; grid-template-columns: 38px 1fr auto; gap: 12px; }
  .kf-pkg-thumb { width: 38px; height: 38px; }
  .kf-pkg-item.active .kf-pkg-desc { display: none !important; }
  .pkg-features-toggle { display: none !important; }

  .kf-calc { gap: 10px; }
  .kf-calc-head { padding-bottom: 10px; }
  .kf-calc-thumb { width: 40px; height: 40px; }
  .kf-calc-qty { padding: 12px 14px 11px; }
  .kf-calc-qty label { margin-bottom: 7px; }
  .kf-qty-btn, #calc-shot-input { height: 44px; }
  #calc-shot-input { font-size: 26px !important; }
  #calc-shot-hint { margin-top: 6px; }
  .kf-calc-lines { gap: 5px; }
  .kf-calc-total { padding-top: 10px; }
  .kf-calc-total strong { font-size: clamp(24px, 2.6vw, 30px); }
  .kf-calc-actions .kf-btn { padding: 11px 16px; }
}

/* =============================================================
   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; }

/* =============================================================
   40. HİZMET DETAY SAYFALARI  (hizmet-*.php)
   Nayla grid ve tipografisi korunur; yalnızca galeri, video ve
   liste bileşenleri için ince bir katman eklenir.
   ============================================================= */

/* Ana sayfadaki dağınık hizmet bulutuna 7. madde */
@media (min-width: 1025px) {
  .kf-offset-7 { margin-left: 85px; margin-right: 15px; }
}

/* --- Üst başlık --- */
.kf-svc-eyebrow {
  letter-spacing: .22em;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--kf-gold-deep);
  margin: 0;
}
.kf-svc-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .kf-svc-cover img { aspect-ratio: 4 / 3; }
}

/* --- Kapsam listesi --- */
.kf-svc-list { margin: 0 !important; }
.kf-svc-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--kf-line);
  font-size: 15px;
  line-height: 1.5;
}
.kf-svc-list li:first-child { border-top: 1px solid var(--kf-line); }
.kf-svc-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kf-gold);
}

/* --- Kimler için etiketleri --- */
.kf-svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.kf-svc-tags span {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--kf-line);
  border-radius: var(--kf-r-pill);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--kf-ink-soft);
}

/* --- Portfolyo ızgarası (9 görsel) --- */
.kf-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.1vw, 18px);
}
.kf-svc-shot { margin: 0; overflow: hidden; background: var(--kf-paper-alt); }
.kf-svc-shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--kf-ease);
}
.kf-svc-shot:hover img { transform: scale(1.035); }

@media (max-width: 900px) {
  .kf-svc-grid { grid-template-columns: repeat(2, 1fr); }
  }
@media (max-width: 560px) {
  .kf-svc-grid { grid-template-columns: 1fr; }
}

/* --- Video bölümü --- */
.kf-svc-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.6vw, 26px);
}
.kf-svc-video { margin: 0; }
.kf-svc-video video,
.kf-svc-video-ph {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--kf-ink);
  object-fit: cover;
}
.kf-svc-video video { cursor: pointer; }
.kf-svc-video-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .55;
}
.kf-svc-video-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--kf-r-pill);
  background: rgba(12,12,13,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.kf-svc-video figcaption {
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--kf-line);
  margin-top: 12px;
}
.kf-svc-video figcaption strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
}
.kf-svc-video figcaption span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--kf-ink-soft);
}
@media (max-width: 767px) {
  .kf-svc-videos { grid-template-columns: 1fr; }
}

/* --- Diğer hizmetler listesi --- */
.kf-svc-other { margin: 0 !important; }
.kf-svc-other li { border-bottom: 1px solid var(--kf-line); }
.kf-svc-other li:first-child { border-top: 1px solid var(--kf-line); }
.kf-svc-other a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 4px;
  transition: padding-left .3s var(--kf-ease), color .3s var(--kf-ease);
}
.kf-svc-other a:hover { padding-left: 14px; color: var(--kf-gold-deep); }
.kf-svc-other-no {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--kf-gold-deep);
  min-width: 26px;
}
.kf-svc-other-name { font-size: clamp(16px, 1.6vw, 21px); font-weight: 500; }
.kf-svc-other-count {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--kf-ink-mute, #8a8a8a);
  white-space: nowrap;
}

/* =========================================================
   20. ANA SAYFA — MİKRO SİPARİŞ ŞERİDİ (#kf-qo)
   Slider'ın hemen altı. Paketler sayfasındaki sipariş
   bölümünün kompakt hâli: kart seç -> adet gir -> satın al.
   ========================================================= */
.kf-qo {
  background: var(--kf-paper);
  border-bottom: 1px solid var(--kf-line);
}
.kf-qo * { box-sizing: border-box; }
.kf-qo-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 22px clamp(16px, 3.6vw, 60px) 24px;
}

.kf-qo-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-bottom: 13px;
}
.kf-qo-eyebrow {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--kf-gold-deep); margin: 0 0 4px; font-weight: 500;
}
.kf-qo-title {
  margin: 0 !important; font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 500; letter-spacing: -.02em; line-height: 1.25;
}
.kf-qo-title b { font-weight: 700; }
.kf-qo-hint { margin: 0; font-size: 11.5px; color: var(--kf-ink-muted); white-space: nowrap; }

/* --- sağdan sola akan kart şeridi --- */
.kf-qo-rail { position: relative; overflow: hidden; }
.kf-qo-rail::before,
.kf-qo-rail::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(20px, 4vw, 70px);
  z-index: 2; pointer-events: none;
}
.kf-qo-rail::before { left: 0;  background: linear-gradient(90deg, var(--kf-paper), rgba(250,250,248,0)); }
.kf-qo-rail::after  { right: 0; background: linear-gradient(270deg, var(--kf-paper), rgba(250,250,248,0)); }
body.dark .kf-qo-rail::before { background: linear-gradient(90deg, var(--kf-ink), rgba(13,13,13,0)); }
body.dark .kf-qo-rail::after  { background: linear-gradient(270deg, var(--kf-ink), rgba(13,13,13,0)); }
.kf-qo-scroll { overflow: hidden; }
.kf-qo-track { display: flex; gap: 10px; width: max-content; will-change: transform; }


.kf-qo-card {
  flex: 0 0 296px;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; background: #fff; border: 1px solid var(--kf-line);
  border-radius: 0; cursor: pointer; text-align: left;
  font: inherit; color: inherit; position: relative;
  transition: border-color .24s var(--kf-ease), box-shadow .24s var(--kf-ease), transform .24s var(--kf-ease);
}
.kf-qo-card:hover { border-color: rgba(200,169,110,.7); box-shadow: 0 10px 26px rgba(13,13,13,.08); transform: translateY(-2px); }
.kf-qo-card.is-active { border-color: var(--kf-gold); box-shadow: 0 12px 30px rgba(200,169,110,.28); }
.kf-qo-card:focus-visible { outline: 2px solid var(--kf-gold); outline-offset: 2px; }

.kf-qo-thumb {
  width: 52px; height: 52px; flex: none; overflow: hidden;
  background: var(--kf-paper-alt); filter: grayscale(1);
  transition: filter .3s var(--kf-ease);
}
.kf-qo-card:hover .kf-qo-thumb,
.kf-qo-card.is-active .kf-qo-thumb { filter: none; }
.kf-qo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kf-qo-txt { min-width: 0; display: block; flex: 1; }
.kf-qo-cat {
  display: block; font-size: 10px; letter-spacing: .11em; text-transform: uppercase;
  color: #9a9890; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kf-qo-name { display: block; font-size: 14px; font-weight: 500; line-height: 1.28; margin-bottom: 4px; }
.kf-qo-price { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.kf-qo-price small { font-weight: 400; font-size: 10.5px; color: var(--kf-ink-muted); letter-spacing: 0; }

.kf-qo-tick {
  position: absolute; right: 9px; top: 9px; width: 15px; height: 15px;
  border: 1px solid var(--kf-line); border-radius: 50%;
  transition: background .2s var(--kf-ease), border-color .2s var(--kf-ease);
}
.kf-qo-card.is-active .kf-qo-tick { background: var(--kf-gold); border-color: var(--kf-gold); }
.kf-qo-card.is-active .kf-qo-tick::after {
  content: ""; position: absolute; left: 4px; top: 6.5px; width: 6px; height: 3px;
  border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg);
}

/* --- ortak adet + fiyat barı --- */
.kf-qo-bar {
  margin-top: 12px; background: #fff; border: 1px solid var(--kf-line);
  display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center; gap: clamp(12px, 2vw, 24px); padding: 12px 16px;
}
.kf-qo-bar.is-idle .kf-qo-sum,
.kf-qo-bar.is-idle .kf-qo-buy { opacity: .32; pointer-events: none; }
.kf-qo-sum, .kf-qo-buy { transition: opacity .3s var(--kf-ease); }

.kf-qo-field { display: flex; flex-direction: column; gap: 4px; align-items: center; justify-self: center; }
.kf-qo-right { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 22px); justify-self: end; }
.kf-qo-spacer { display: none; }
.kf-qo-field label {
  font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: #9a9890;
}
/* dişi (negatif) adet alanı: siyah zemin, beyaz yazı ve -/+ */
.kf-qo-qty {
  display: flex; align-items: center; height: 38px;
  background: var(--kf-ink); border: 1px solid var(--kf-ink);
}
.kf-qo-qty button {
  width: 34px; height: 100%; border: 0; background: none; cursor: pointer;
  font-size: 17px; line-height: 1; color: #fff; padding: 0;
  transition: background .2s var(--kf-ease), color .2s var(--kf-ease);
}
.kf-qo-qty button:hover { background: var(--kf-gold); color: #101010; }
.kf-qo-qty input {
  width: 66px; height: 100%; border: 0;
  border-left: 1px solid rgba(255,255,255,.22); border-right: 1px solid rgba(255,255,255,.22);
  background: transparent; color: #fff; text-align: center;
  font: inherit; font-weight: 600; font-variant-numeric: tabular-nums;
  -moz-appearance: textfield; appearance: textfield;
}
.kf-qo-qty input::-webkit-outer-spin-button,
.kf-qo-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.kf-qo-qty input:focus { outline: none; background: rgba(255,255,255,.08); }

.kf-qo-sel { min-width: 0; }
.kf-qo-sel span { display: block; font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: #9a9890; margin-bottom: 3px; }
.kf-qo-sel strong { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kf-qo-sel em { font-style: normal; font-size: 11px; color: var(--kf-ink-muted); }

.kf-qo-sum { text-align: right; }
.kf-qo-sum span { display: block; font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: #9a9890; }
.kf-qo-sum strong {
  display: block; font-size: clamp(19px, 2.2vw, 26px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.15; font-variant-numeric: tabular-nums;
}
.kf-qo-sum em { font-style: normal; font-size: 10.5px; color: var(--kf-ink-muted); }

.kf-qo-buy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kf-ink); color: #fff; border: 1px solid var(--kf-ink);
  border-radius: var(--kf-r-pill); padding: 13px 26px;
  font-size: 13.5px; font-weight: 500; text-decoration: none; white-space: nowrap;
  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-qo-buy:hover {
  background: var(--kf-gold); border-color: var(--kf-gold); color: #101010;
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,169,110,.32);
}

.kf-qo-foot {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  margin: 11px 2px 0 !important; font-size: 11px; color: var(--kf-ink-muted);
}
.kf-qo-foot span { display: inline-flex; align-items: center; gap: 6px; }
.kf-qo-foot span::before { content: ""; width: 5px; height: 5px; background: var(--kf-gold); border-radius: 50%; }
.kf-qo-wa { color: var(--kf-ink-muted); text-decoration: underline; text-underline-offset: 3px; }
.kf-qo-wa:hover { color: var(--kf-gold-deep); }

@media (max-width: 900px) {
  .kf-qo-bar { grid-template-columns: 1fr; justify-items: center; gap: 14px; }
  .kf-qo-sel { order: -1; text-align: center; }
  .kf-qo-right { flex-direction: column; gap: 12px; justify-self: center; width: 100%; }
  .kf-qo-sum { text-align: center; }
  .kf-qo-buy { width: 100%; justify-content: center; }
  .kf-qo-hint { display: none; }
}
@media (max-width: 600px) {
  .kf-qo-inner { padding: 18px 16px 20px; }
  .kf-qo-card { flex: 0 0 262px; }
  .kf-qo-track { animation-duration: 38s; }
  .kf-qo-foot { gap: 12px; font-size: 10.5px; }
}

/* koyu tema (body.dark) */
body.dark .kf-qo { background: var(--kf-ink); border-bottom-color: var(--kf-line-dark); }
body.dark .kf-qo-card,
body.dark .kf-qo-bar { background: #151513; border-color: var(--kf-line-dark); }
body.dark .kf-qo-qty { background: #fff; border-color: #fff; }
body.dark .kf-qo-qty button, body.dark .kf-qo-qty input { color: var(--kf-ink); }
body.dark .kf-qo-qty input { border-color: rgba(13,13,13,.2); }
body.dark .kf-qo-buy { background: var(--kf-gold); border-color: var(--kf-gold); color: #101010; }

/* =========================================================
   21. ÖZEL FARE İMLECİ KAPALI
   Nayla temasının nokta/daire takip eden imleci gizlendi;
   ziyaretçi işletim sisteminin normal imlecini görür.
   (Geri açmak için bu bloğu silmek yeterli.)
   ========================================================= */
div#mouseCursor { display: none !important; }

body,
.hover-cursor .grid-project a,
.nayla-video.cursor-active,
.showcase-carousel .showcase-project a { cursor: auto !important; }

a, button, [role="button"], summary,
.cursor-icon, .cursor-text,
.single-project, .accordion-title,
.kf-qo-card, .kf-pkg-item { cursor: pointer !important; }

input, textarea, select { cursor: auto !important; }

/* =========================================================
   22. ANA SAYFA — HİZMET ŞERİDİ (#kf-svc)
   Kesintisiz, sağdan sola akan kompakt kart şeridi.
   Ok / sayaç / ilerleme çubuğu yok; fareyle durur.
   ========================================================= */
.kf-svc { position: relative; margin-top: 4px; }
.kf-svc * { box-sizing: border-box; }

.kf-svc-scroll { overflow: hidden; }
.kf-svc-track { display: flex; gap: clamp(30px, 3.2vw, 52px); width: max-content; will-change: transform; }

/* Şerit kenarlarda yumuşasın.
   NOT: Burada CSS mask KULLANILMIYOR. iOS Safari, sayfa kaydırılırken
   maskeyi kaydırma katmanıyla birlikte taşıyamıyor ve şerit soldan
   siliniyormuş gibi görünüyordu. Onun yerine kenarlara zemin renginde
   iki degrade perde konuyor — her tarayıcıda aynı görünüyor. */
.kf-svc { overflow: hidden; }
.kf-svc::before,
.kf-svc::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(28px, 5vw, 90px);
  z-index: 2; pointer-events: none;
}
.kf-svc::before { left: 0;  background: linear-gradient(90deg, var(--kf-paper), rgba(250,250,248,0)); }
.kf-svc::after  { right: 0; background: linear-gradient(270deg, var(--kf-paper), rgba(250,250,248,0)); }
body.dark .kf-svc::before { background: linear-gradient(90deg, var(--kf-ink), rgba(13,13,13,0)); }
body.dark .kf-svc::after  { background: linear-gradient(270deg, var(--kf-ink), rgba(13,13,13,0)); }



.kf-svc-card { flex: 0 0 clamp(184px, 14.5vw, 218px); }
.kf-svc-link { display: block; text-decoration: none; color: inherit; }

.kf-svc-media {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--kf-paper-alt);
}
.kf-svc-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--kf-ease), filter .5s var(--kf-ease);
  filter: grayscale(.35);
}
.kf-svc-link:hover .kf-svc-media img { transform: scale(1.05); filter: grayscale(0); }

.kf-svc-no {
  position: absolute; left: 0; top: 0;
  background: var(--kf-ink); color: #fff;
  font-size: 10px; letter-spacing: .12em; font-weight: 500;
  padding: 5px 9px; font-variant-numeric: tabular-nums;
}
.kf-svc-badge {
  position: absolute; right: 8px; bottom: 8px;
  background: rgba(250,250,248,.92); color: var(--kf-ink);
  border: 1px solid rgba(13,13,13,.06);
  font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--kf-r-pill); backdrop-filter: blur(4px);
}

.kf-svc-body { display: block; padding: 11px 2px 0; }
.kf-svc-eyebrow {
  display: block; font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--kf-gold-deep); margin-bottom: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kf-svc-title {
  margin: 0 0 5px !important; font-size: 13px;
  font-weight: 500; letter-spacing: -.015em; line-height: 1.3;
  position: relative; display: inline-block;
}
.kf-svc-title::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--kf-gold); transition: width .38s var(--kf-ease);
}
.kf-svc-link:hover .kf-svc-title::after { width: 100%; }

.kf-svc-lead {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 11.5px; line-height: 1.55; color: var(--kf-ink-muted); margin-bottom: 8px;
}
.kf-svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; letter-spacing: .06em; color: var(--kf-ink);
}
.kf-svc-more i { font-style: normal; transition: transform .3s var(--kf-ease); }
.kf-svc-link:hover .kf-svc-more i { transform: translateX(5px); }

@media (max-width: 700px) {
  .kf-svc-card { flex: 0 0 168px; }
  .kf-svc-track { gap: 24px; }
}

/* koyu tema */
body.dark .kf-svc-no { background: var(--kf-paper); color: var(--kf-ink); }
body.dark .kf-svc-more { color: var(--kf-paper); }

/* =========================================================
   23. HERO — SLAYTA GÖRE DEĞİŞEN BAŞLIK
   Başlıklar üst üste bindirilir; en uzunu yüksekliği belirler,
   böylece geçişte alttaki içerik zıplamaz.
   ========================================================= */
.kf-hero-titles { display: grid; }
.kf-hero-titles > * {
  grid-area: 1 / 1;
  margin: 0 !important;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity .55s var(--kf-ease), transform .65s var(--kf-ease), visibility 0s linear .65s;
}
.kf-hero-titles > .is-active {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .55s var(--kf-ease) .08s, transform .65s var(--kf-ease) .08s, visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .kf-hero-titles > * { transition: none; transform: none; }
}

/* =========================================================
   24. AÇILIŞ EKRANI — VİZÖR + FLAŞ + DİYAFRAM (#kf-loader)
   Kamera vizörü arayüzü kurulur, üç flaş patlar, logo kilitlenir;
   ardından logodaki (O) harfi diyaframa dönüşüp dışa açılarak
   sayfayı ortaya çıkarır. Toplam 2,6 sn — oturumda bir kez.

   (O) harfinin logo içindeki konumu ölçüldü:
   merkez = genişliğin %35,67'si, yarıçap = genişliğin %6'sı.
   Aşağıdaki --kf-ox / --kf-od değerleri bu ölçüden gelir.
   ========================================================= */
html.kf-loading, html.kf-loading body { overflow: hidden !important; }

.kf-loader {
  --kf-logo-w: clamp(190px, 24vw, 300px);
  --kf-ox: calc(var(--kf-logo-w) * -0.1433);   /* (O) merkezinin logo ortasına uzaklığı */
  --kf-od: calc(var(--kf-logo-w) * 0.12);      /* (O) çapı */
  --kf-gold: #c8a96e;

  position: fixed; inset: 0; z-index: 2147483000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.kf-loader.is-done { opacity: 0; transition: opacity .45s ease; }

/* --- düz siyah zemin (delik açılınca devri teslim eder) --- */
.kf-loader__bg { position: absolute; inset: 0; background: #0b0b0a; }
.kf-loader.is-running .kf-loader__bg { animation: kfLdBg 2.4s linear forwards; }
@keyframes kfLdBg { 0%, 51.9% { opacity: 1; } 52%, 100% { opacity: 0; } }

/* --- üçte bir ızgarası --- */
.kf-loader__grid {
  position: absolute; inset: 6vmin;
  background:
    linear-gradient(to right, transparent 33.2%, rgba(255,255,255,.09) 33.2% 33.4%, transparent 33.4% 66.5%, rgba(255,255,255,.09) 66.5% 66.7%, transparent 66.7%),
    linear-gradient(to bottom, transparent 33.2%, rgba(255,255,255,.09) 33.2% 33.4%, transparent 33.4% 66.5%, rgba(255,255,255,.09) 66.5% 66.7%, transparent 66.7%);
  opacity: 0;
}
.kf-loader.is-running .kf-loader__grid { animation: kfLdHud 2.4s var(--kf-ease) forwards; }

/* --- vizör köşeleri --- */
.kf-loader__corner {
  position: absolute; width: clamp(34px, 5vmin, 62px); height: clamp(34px, 5vmin, 62px);
  border: 0 solid var(--kf-gold); opacity: 0;
}
.kf-c--tl { left: 4.5vmin; top: 4.5vmin; border-left-width: 1px; border-top-width: 1px; }
.kf-c--tr { right: 4.5vmin; top: 4.5vmin; border-right-width: 1px; border-top-width: 1px; }
.kf-c--bl { left: 4.5vmin; bottom: 4.5vmin; border-left-width: 1px; border-bottom-width: 1px; }
.kf-c--br { right: 4.5vmin; bottom: 4.5vmin; border-right-width: 1px; border-bottom-width: 1px; }
.kf-loader.is-running .kf-c--tl { animation: kfLdCornerTL 2.4s var(--kf-ease) forwards; }
.kf-loader.is-running .kf-c--tr { animation: kfLdCornerTR 2.4s var(--kf-ease) forwards; }
.kf-loader.is-running .kf-c--bl { animation: kfLdCornerBL 2.4s var(--kf-ease) forwards; }
.kf-loader.is-running .kf-c--br { animation: kfLdCornerBR 2.4s var(--kf-ease) forwards; }
@keyframes kfLdCornerTL {
  0% { opacity: 0; transform: translate(-16px, -16px); }
  9%, 40% { opacity: .95; transform: none; }
  50%, 100% { opacity: 0; transform: translate(-26px, -26px); }
}
@keyframes kfLdCornerTR {
  0% { opacity: 0; transform: translate(16px, -16px); }
  9%, 40% { opacity: .95; transform: none; }
  50%, 100% { opacity: 0; transform: translate(26px, -26px); }
}
@keyframes kfLdCornerBL {
  0% { opacity: 0; transform: translate(-16px, 16px); }
  9%, 40% { opacity: .95; transform: none; }
  50%, 100% { opacity: 0; transform: translate(-26px, 26px); }
}
@keyframes kfLdCornerBR {
  0% { opacity: 0; transform: translate(16px, 16px); }
  9%, 40% { opacity: .95; transform: none; }
  50%, 100% { opacity: 0; transform: translate(26px, 26px); }
}

/* --- LCD bilgi satırları --- */
.kf-loader__hud {
  position: absolute; display: flex; align-items: center; gap: 14px;
  font-size: clamp(8.5px, 1.05vmin, 10.5px); letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.62); opacity: 0; white-space: nowrap;
}
.kf-loader.is-running .kf-loader__hud { animation: kfLdHud 2.4s var(--kf-ease) forwards; }
@keyframes kfLdHud {
  0% { opacity: 0; }
  10%, 40% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.kf-hud--tl { left: 4.5vmin; top: 4.5vmin; transform: translateY(-160%); gap: 10px; }
.kf-hud--tr { right: 4.5vmin; top: 4.5vmin; transform: translateY(-160%); }
.kf-hud--bl { left: 4.5vmin; bottom: 4.5vmin; transform: translateY(160%); gap: 18px; }
.kf-hud--br { right: 4.5vmin; bottom: 4.5vmin; transform: translateY(160%); }
.kf-loader__hud b { color: #fff; font-weight: 600; letter-spacing: .2em; }
.kf-loader__hud sup { font-size: .6em; vertical-align: super; opacity: .7; }
.kf-hud-badge { border: 1px solid rgba(255,255,255,.35); padding: 2px 6px; color: #fff; }
.kf-hud-card i { opacity: .55; }
.kf-hud-batt {
  width: 22px; height: 10px; border: 1px solid rgba(255,255,255,.45); position: relative;
  display: inline-flex; padding: 1.5px;
}
.kf-hud-batt::after {
  content: ""; position: absolute; right: -3px; top: 3px; width: 2px; height: 4px;
  background: rgba(255,255,255,.45);
}
.kf-hud-batt i { display: block; width: 78%; height: 100%; background: var(--kf-gold); }
.kf-hud-ev { color: rgba(255,255,255,.4); }
.kf-hud-af { border: 1px solid rgba(255,255,255,.3); padding: 2px 7px; transition: all .2s ease; }
.kf-loader.is-locked .kf-hud-af {
  color: #0b0b0a; background: var(--kf-gold); border-color: var(--kf-gold);
}
.kf-loader.is-locked .kf-hud-af::after { content: " LOCK"; }
.kf-hud-frame b { font-variant-numeric: tabular-nums; }

/* --- odak kutusu --- */
.kf-loader__af {
  position: absolute; left: 50%; top: 50%;
  width: clamp(220px, 34vw, 430px); height: clamp(120px, 17vw, 210px);
  transform: translate(-50%, -50%) scale(1.35); opacity: 0;
}
.kf-loader__af i {
  position: absolute; width: 14px; height: 14px; border: 0 solid rgba(255,255,255,.5);
}
.kf-loader__af i:nth-child(1) { left: 0; top: 0; border-left-width: 1px; border-top-width: 1px; }
.kf-loader__af i:nth-child(2) { right: 0; top: 0; border-right-width: 1px; border-top-width: 1px; }
.kf-loader__af i:nth-child(3) { left: 0; bottom: 0; border-left-width: 1px; border-bottom-width: 1px; }
.kf-loader__af i:nth-child(4) { right: 0; bottom: 0; border-right-width: 1px; border-bottom-width: 1px; }
.kf-loader.is-locked .kf-loader__af i { border-color: var(--kf-gold); }
.kf-loader.is-running .kf-loader__af { animation: kfLdAf 2.4s var(--kf-ease) forwards; }
@keyframes kfLdAf {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(1.35); }
  10%  { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
  28%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  42%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(.9); }
}

/* --- flaş --- */
.kf-loader__flash {
  position: absolute; left: 50%; top: 50%; width: 170vmax; height: 170vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,.96) 0%, rgba(255,251,238,.5) 16%, rgba(255,255,255,0) 52%);
  opacity: 0;
}
.kf-loader.is-running .kf-loader__flash { animation: kfLdFlash 2.4s linear forwards; }
@keyframes kfLdFlash {
  0%, 10%   { opacity: 0; }
  11.5%     { opacity: 1; }
  16%       { opacity: 0; }
  19%       { opacity: 0; }
  20%       { opacity: .9; }
  25%       { opacity: 0; }
  27%       { opacity: 0; }
  28%       { opacity: 1; }
  36%       { opacity: 0; }
  100%      { opacity: 0; }
}

/* --- logo --- */
.kf-loader__logo {
  position: relative; z-index: 3; width: var(--kf-logo-w); height: auto;
  opacity: 0; filter: drop-shadow(0 0 30px rgba(200,169,110,.32));
}
.kf-loader.is-running .kf-loader__logo { animation: kfLdLogo 2.4s var(--kf-ease) forwards; }
@keyframes kfLdLogo {
  0%, 10%  { opacity: 0; transform: scale(1.05); }
  11.5%    { opacity: 1; }
  17%      { opacity: 0; }
  19%      { opacity: 0; }
  20%      { opacity: 1; transform: scale(1.03); }
  26%      { opacity: 0; }
  27%      { opacity: 0; }
  28%      { opacity: 1; transform: scale(1.01); }   /* üçüncü flaşta kilitlenir */
  44%      { opacity: 1; transform: scale(1); }
  51%      { opacity: 0; transform: scale(1); }      /* harfler söner, (O) delik olur */
  100%     { opacity: 0; }
}

/* --- (O) harfinden doğan diyafram --- */
.kf-loader__iris {
  position: absolute; left: 50%; top: 50%; z-index: 4;
  width: var(--kf-od); height: var(--kf-od); overflow: visible;
  transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(1) rotate(0deg);
  opacity: 0;
}
.kf-loader.is-running .kf-loader__iris { animation: kfLdIris 2.4s cubic-bezier(.22,.72,.24,1) forwards; }
@keyframes kfLdIris {
  0%, 44%  { opacity: 0; transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(1) rotate(-6deg); }
  47%      { opacity: 1; transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(1.05) rotate(0deg); }
  56%      { opacity: 1; }
  66%      { opacity: 0; }
  100%     { opacity: 0; transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(15) rotate(26deg); }
}
.kf-loader__blade {
  fill: rgba(255,255,255,.09); stroke: #fff; stroke-width: 1.4; stroke-linejoin: round;
  transform-box: view-box; transform-origin: 100px 100px;
  vector-effect: non-scaling-stroke;
}
.kf-loader.is-running .kf-loader__blade { animation: kfLdBlade 2.4s cubic-bezier(.22,.72,.24,1) forwards; }
@keyframes kfLdBlade {
  0%, 50% { transform: translateY(0); }
  70%,100% { transform: translateY(-58px); }
}
.kf-loader__ring {
  fill: none; stroke: rgba(255,255,255,.5); stroke-width: 1; vector-effect: non-scaling-stroke;
  transform-box: view-box; transform-origin: 100px 100px;
}
.kf-loader.is-running .kf-loader__ring { animation: kfLdRing 2.4s cubic-bezier(.22,.72,.24,1) forwards; }
@keyframes kfLdRing {
  0%, 45% { opacity: 0; transform: scale(.78); }
  49%     { opacity: 1; transform: scale(1); }
  56%     { opacity: .9; transform: scale(1.12); }
  63%     { opacity: 0; transform: scale(1.3); }
  100%    { opacity: 0; transform: scale(1.35); }
}

/* --- açılan delik: kendi gölgesi ekranın kalanını siyah tutar --- */
.kf-loader__hole {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: var(--kf-od); height: var(--kf-od); border-radius: 50%;
  box-shadow: 0 0 0 120vmax #0b0b0a;
  transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(1);
  opacity: 0;
}
.kf-loader.is-running .kf-loader__hole { animation: kfLdHole 2.4s cubic-bezier(.22,.72,.24,1) forwards; }
@keyframes kfLdHole {
  0%, 51.9% { opacity: 0; transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(1); }
  52%       { opacity: 1; transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(1); }
  100%      { opacity: 1; transform: translate(calc(-50% + var(--kf-ox)), -50%) scale(62); }
}

@media (prefers-reduced-motion: reduce) { .kf-loader { display: none !important; } }


/* Şeritler parmakla sürüklenebilir: tarayıcının yatay kaydırma
   jestini devralmasını engelle, dikey kaydırma serbest kalsın. */
.kf-svc-scroll, .kf-qo-scroll { touch-action: pan-y; }
.kf-svc-track, .kf-qo-track { -webkit-user-select: none; user-select: none; }
.kf-svc-track img, .kf-qo-track img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }

/* =========================================================
   25. "EN ÇOK TERCİH EDİLEN" ROZETİ (paket akordiyonu)
   Eskiden <sup> idi; başlık iki satıra düşünce yazının
   üstüne biniyordu. Artık kendi satır yüksekliği olan bir
   rozet; dar ekranda başlığın altına iniyor.
   ========================================================= */
.kf-acc-name { display: inline-block; }
.kf-badge-pop {
  display: inline-block; vertical-align: middle; position: relative; top: -1px;
  margin-left: 10px;
  background: var(--kf-gold); color: #101010;
  font-style: normal; font-weight: 600;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  line-height: 1.1; padding: 5px 10px; border-radius: var(--kf-r-pill);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .kf-acc-name { display: block; }
  .kf-badge-pop {
    display: table; top: 0; margin: 8px 0 0;
    font-size: 9px; letter-spacing: .09em; padding: 4px 9px;
  }
}
