



:root {
  --bs-primary:              #0796ba;
  --bs-primary-rgb:          7, 150, 186;
  --bs-link-color:           #0796ba;
  --bs-link-color-rgb:       7, 150, 186;
  --bs-link-hover-color:     #067a97;
  --bs-link-hover-color-rgb: 6, 122, 151;
  --bs-primary-bg-subtle:    #d9eef5;
  --planish-primary-hover:   #067a97;
  --planish-secondary-teal:  #3ab8d4;
  --planish-site-nav-accent: #0a0a0a;
  --planish-site-nav-underline: #0a0a0a;
  --planish-auth-input-focus-border: rgba(0, 0, 0, 0.35);
  --planish-auth-input-focus-ring: rgba(0, 0, 0, 0.08);
  --bs-secondary-color:      rgba(33, 37, 41, 0.75); 
  
  --bs-body-color:           #495057;
  --bs-body-color-rgb:       73, 80, 87;
  --bs-body-bg:              #f7f7f7;
  --bs-border-color:         #eff2f7;
  --bs-border-radius:        6px;
  --bs-border-radius-lg:     0.4rem;
  --bs-btn-border-radius:    6px;
  --bs-heading-font-weight:  600;
  --app-panel-primary-title-font-weight: 700;
  --app-modal-header-padding-y: 0.9rem;
  --app-modal-header-padding-x: 1.25rem;
  --app-modal-body-padding-top: 1rem;
  --app-modal-body-padding-x: 1.25rem;
  --app-modal-body-padding-bottom: 1.15rem;
  --app-modal-form-border-color: #b8c4d2;
  --bs-card-bg:              #ffffff;
  --app-focus-visible-ring-color: color-mix(in srgb, var(--bs-body-color) 26%, transparent);
  
  --app-font-family-museo: "Museo Sans", "Museo Sans Rounded", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --app-font-hero: "Museo Sans Rounded", "Museo Sans", system-ui, sans-serif;
  --app-font-logo-wordmark: "MuseoModerno", "Museo Sans Rounded", "Museo Sans", system-ui, sans-serif;
  --planish-ink-strong: #0f172a;
  --planish-footer-chrome-base: #121212;
  --planish-footer-chrome-top: #1a1a1a;
  --planish-footer-chrome-mid: #141414;
  --planish-footer-chrome-bottom: #0a0a0a;
  --planish-radius-xl: 1.25rem;
  --planish-radius-2xl: 1.5rem;
  /* Modal scrim: nötr siyah (slate #0f172a footer üstünde mavi cast yapıyordu) */
  --planish-modal-scrim-bg: rgb(0 0 0 / 0.56);
  --planish-modal-scrim-bg-soft: rgb(0 0 0 / 0.5);
}


.planish-site-body {
  overflow-x: clip;
  --planish-footer-wave-h: 5rem;
  
  --planish-glass-fill: rgba(255, 255, 255, 0.48);
  --planish-glass-fill-strong: rgba(255, 255, 255, 0.62);
  --planish-glass-border: rgba(255, 255, 255, 0.58);
  --planish-glass-blur: 14px;
  /* Düz yüzey: ağır gölgeler yerine ince üst çizgi hissi */
  --planish-glass-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  --planish-glass-intro-blur: 18px;
  --planish-ambient-lagoon: rgb(var(--bs-primary-rgb) / 0.11);
  --planish-ambient-teal: rgba(45, 212, 191, 0.07);
  --planish-ambient-violet: rgba(167, 139, 250, 0.09);
  --planish-accent-green: #166b1f;
  --planish-accent-green-rgb: 22, 107, 31;
  --planish-accent-green-hover: #12541a;
  --planish-accent-ink: #0a0a0a;
  --planish-accent-ink-rgb: 10, 10, 10;
  background-color: var(--bs-body-bg, #f7f7f7);
  color: var(--bs-body-color, #495057);
  font-family: var(--app-font-family-museo);
  
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 400;
}
@media (min-width: 640px) {
  .planish-site-body {
    --planish-footer-wave-h: 7rem;
  }
}
.planish-site-body .font-hero {
  font-family: var(--app-font-hero);
  letter-spacing: -0.02em;
}


.planish-site-body .planish-chrome-max,
body.planish-marketing-auth-body .planish-chrome-max {
  width: 100%;
  max-width: min(70rem, calc(100% - 1.5rem));
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1536px) {
  .planish-site-body .planish-chrome-max,
  body.planish-marketing-auth-body .planish-chrome-max {
    max-width: min(72rem, calc(100% - 2rem));
  }
}

.planish-site-body .shadow-card {
  box-shadow: none;
}

html {
  --planish-scrollbar-size: 6px;
  --planish-scrollbar-track: transparent;
  --planish-scrollbar-thumb: rgb(148 163 184 / 0.5);
  --planish-scrollbar-thumb-hover: rgb(var(--bs-primary-rgb) / 0.55);
  --planish-scrollbar-thumb-active: rgb(var(--bs-primary-rgb) / 0.72);
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  scrollbar-gutter: stable;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: var(--planish-scrollbar-thumb) var(--planish-scrollbar-track);
}
html::-webkit-scrollbar {
  width: var(--planish-scrollbar-size);
  height: var(--planish-scrollbar-size);
}
html::-webkit-scrollbar-track {
  background: var(--planish-scrollbar-track);
}
html::-webkit-scrollbar-thumb {
  background-color: var(--planish-scrollbar-thumb);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: var(--planish-scrollbar-thumb-hover);
}
html::-webkit-scrollbar-thumb:active {
  background-color: var(--planish-scrollbar-thumb-active);
}
html::-webkit-scrollbar-corner {
  background: transparent;
}
/* İç kaydırma alanları — aynı native scrollbar (overlay yok) */
body.planish-site-body .footer-legal-modal__body,
body.planish-site-body .planish-mkt-contact__panel-body,
body.planish-site-body .planish-blog-sector-picker__panel,
body.planish-marketing-auth-body .footer-legal-modal__body {
  scrollbar-width: thin;
  scrollbar-color: var(--planish-scrollbar-thumb) var(--planish-scrollbar-track);
}
body.planish-site-body .footer-legal-modal__body::-webkit-scrollbar,
body.planish-site-body .planish-mkt-contact__panel-body::-webkit-scrollbar,
body.planish-site-body .planish-blog-sector-picker__panel::-webkit-scrollbar,
body.planish-marketing-auth-body .footer-legal-modal__body::-webkit-scrollbar {
  width: var(--planish-scrollbar-size);
  height: var(--planish-scrollbar-size);
}
body.planish-site-body .footer-legal-modal__body::-webkit-scrollbar-track,
body.planish-site-body .planish-mkt-contact__panel-body::-webkit-scrollbar-track,
body.planish-site-body .planish-blog-sector-picker__panel::-webkit-scrollbar-track,
body.planish-marketing-auth-body .footer-legal-modal__body::-webkit-scrollbar-track {
  background: var(--planish-scrollbar-track);
}
body.planish-site-body .footer-legal-modal__body::-webkit-scrollbar-thumb,
body.planish-site-body .planish-mkt-contact__panel-body::-webkit-scrollbar-thumb,
body.planish-site-body .planish-blog-sector-picker__panel::-webkit-scrollbar-thumb,
body.planish-marketing-auth-body .footer-legal-modal__body::-webkit-scrollbar-thumb {
  background-color: var(--planish-scrollbar-thumb);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
body.planish-site-body .footer-legal-modal__body::-webkit-scrollbar-thumb:hover,
body.planish-site-body .planish-mkt-contact__panel-body::-webkit-scrollbar-thumb:hover,
body.planish-site-body .planish-blog-sector-picker__panel::-webkit-scrollbar-thumb:hover,
body.planish-marketing-auth-body .footer-legal-modal__body::-webkit-scrollbar-thumb:hover {
  background-color: var(--planish-scrollbar-thumb-hover);
}

/* Modal açıkken: scrollbar kalır (gutter stable); arka plan kaymaz, layout zıplamaz */
html.planish-scroll-locked {
  overscroll-behavior: none;
}
html.planish-scroll-locked body {
  overscroll-behavior: none;
}

/* Tam ekran scrim — viewport tamamı (scrollbar alanı dahil) */
.planish-mkt-contact__backdrop,
.footer-legal-modal__backdrop,
.modal-backdrop.show,
.modal-backdrop.fade.show {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
body > .planish-mkt-contact__backdrop,
html.planish-scroll-locked .planish-mkt-contact--open .planish-mkt-contact__backdrop {
  z-index: 2147481998;
}


.planish-site-body a:focus-visible,
body.planish-marketing-auth-body a:focus-visible {
  outline: 2px solid var(--app-focus-visible-ring-color, color-mix(in srgb, var(--bs-body-color) 26%, transparent));
  outline-offset: 2px;
}
.auth-scrollbar-soft {
  scrollbar-width: thin;
  scrollbar-color: var(--planish-scrollbar-thumb-hover, rgb(var(--bs-primary-rgb) / 0.5))
    var(--planish-scrollbar-track, transparent);
}
.auth-scrollbar-soft::-webkit-scrollbar {
  width: var(--planish-scrollbar-size, 6px);
  height: var(--planish-scrollbar-size, 6px);
}
.auth-scrollbar-soft::-webkit-scrollbar-track {
  background: var(--planish-scrollbar-track, transparent);
}
.auth-scrollbar-soft::-webkit-scrollbar-thumb {
  background-color: var(--planish-scrollbar-thumb-hover, rgb(var(--bs-primary-rgb) / 0.5));
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.auth-scrollbar-soft::-webkit-scrollbar-thumb:hover {
  background-color: var(--planish-scrollbar-thumb-active, rgb(var(--bs-primary-rgb) / 0.68));
}
.blob { filter: blur(80px); opacity: .42; }

.hero-blob { filter: none; opacity: 1; }

.hero-stack {
  position: relative;
  background-color: #fafafa;
  background-image:
    radial-gradient(ellipse 110% 75% at 50% -25%, rgb(54 184 66 / 0.048) 0%, transparent 52%),
    radial-gradient(ellipse 85% 60% at 100% 12%, rgb(120 113 108 / 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #fafafa 0%, #f6f6f6 40%, #fafafa 78%, #ffffff 100%);
  background-size: auto, auto, auto;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, center top, 0 0;
}
.hero-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgb(231 229 228 / 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(231 229 228 / 0.3) 1px, transparent 1px),
    linear-gradient(to right, rgb(214 211 209 / 0.34) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(214 211 209 / 0.34) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 96px 96px, 96px 96px;
  background-repeat: repeat;
  background-position: 0 0;
}
.hero-stack > *:not(.hero-stack-bg-decor) {
  position: relative;
  z-index: 1;
}
.hero-stack.marketing-home-hero-fill {
  min-height: 100svh;
  min-height: 100vh;
}
.hero-stack.marketing-home-hero-fill > section.relative {
  min-height: clamp(34rem, calc(100svh - 11.5rem), 58rem);
  min-height: clamp(34rem, calc(100vh - 11.5rem), 58rem);
  display: flex;
  align-items: center;
  position: relative;
  
  padding-bottom: clamp(2rem, 5vw, 3.75rem);
}
.hero-stack.marketing-home-hero-fill > section.relative > .marketing-hero-split {
  width: 100%;
}

.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual {
  min-height: 0;
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual > section.relative {
  min-height: calc(100vh - clamp(6.5rem, 12vh, 10rem)) !important;
  min-height: calc(100svh - clamp(6.5rem, 12vh, 10rem)) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: clamp(1rem, 2.5vw, 1.75rem);
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .marketing-hero-split {
  justify-items: center;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  align-content: center;
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-copy {
  text-align: center;
  max-width: min(52rem, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-kicker--signal {
  justify-content: center;
  margin-bottom: clamp(1.35rem, 3.25vw, 2rem);
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-title-display {
  font-size: clamp(2.15rem, 5.2vw + 0.72rem, 5rem);
  margin-bottom: clamp(1.35rem, 3.2vw, 2rem);
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-kicker__emoji {
  font-size: 1.05rem;
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-kicker__copy {
  font-size: 0.8rem;
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-lead {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.9375rem, 0.32vw + 0.85rem, 1.125rem);
  line-height: 1.68;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}
/* <640px: tek satır; vw + rem ile dar ekranda kırılmadan küçülür. ≥640px: iki satıra izin (balance). */
@media (max-width: 639.98px) {
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-title-display.planish-hero-title-display--laszlo-marker {
    font-size: clamp(0.8125rem, 4.35vw + 0.42rem, 2.05rem);
    line-height: 1.07;
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-title-display--laszlo-marker .planish-hero-title-display__line {
    white-space: nowrap;
    overflow-x: visible;
    text-wrap: unset;
  }
}
@media (min-width: 640px) {
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-title-display--laszlo-marker .planish-hero-title-display__line {
    white-space: normal;
    overflow-x: visible;
    text-wrap: balance;
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-title-display {
    font-size: clamp(2.55rem, 4.2vw + 0.95rem, 5.35rem);
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-kicker__copy {
    font-size: 0.9rem;
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-lead {
    font-size: clamp(1rem, 0.38vw + 0.9rem, 1.25rem);
    line-height: 1.68;
  }
}
@media (min-width: 1024px) {
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-copy {
    max-width: min(64rem, calc(100% - 2.5rem));
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-lead {
    font-size: clamp(1.03rem, 0.28vw + 0.92rem, 1.3125rem);
    line-height: 1.7;
  }
}
@media (min-width: 1280px) {
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-title-display {
    font-size: clamp(3.2rem, 3.65vw + 1.05rem, 6rem);
  }
}

.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-scroll-down {
  position: relative;
  left: auto;
  transform: none;
  animation: planish-hero-scroll-bounce-inline 1.8s ease-in-out 0.14s infinite;
  flex-shrink: 0;
  /* Metin bloğu ile ok arasında ekstra dikey nefes (split flex:1 iken auto-margin işe yaramıyor) */
  margin-top: clamp(2.25rem, 8vh, 5rem);
  margin-bottom: clamp(1.25rem, 4vw, 2.25rem);
  align-self: center;
}
.hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-scroll-down:hover {
  transform: translateY(2px);
}
@keyframes planish-hero-scroll-bounce-inline {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(5px); }
  65% { transform: translateY(2px); }
}

.hero-stack.marketing-home-hero-fill .hero-stack__bottom-fade {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100%;
  height: clamp(2.5rem, 6.5vw, 5rem);
  pointer-events: none;
  margin-top: clamp(-0.35rem, -0.8vw, 0rem);
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 0) 0%,
    rgb(255 255 255 / 0.14) 22%,
    rgb(255 255 255 / 0.52) 48%,
    rgb(255 255 255 / 0.88) 72%,
    #ffffff 100%
  );
}
.planish-hero-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(0.85rem, 2.2vw, 1.6rem);
  z-index: 3;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgb(148 163 184 / 0.55);
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.82);
  color: #0f172a;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 1;
  visibility: visible;
  
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s,
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  animation: planish-hero-scroll-bounce 1.8s ease-in-out 0.14s infinite;
  transform: translateX(-50%);
}
.planish-hero-scroll-down:hover {
  transform: translateX(-50%) translateY(2px);
  box-shadow: none;
  background: rgb(255 255 255 / 0.95);
}
.planish-hero-scroll-down:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
}
.planish-hero-scroll-down__icon {
  font-size: 1.35rem;
  line-height: 1;
}
.planish-hero-scroll-down.planish-hero-scroll-down--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transition:
    opacity 0.32s ease-out,
    visibility 0s linear 0.32s,
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}
@keyframes planish-hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  45% { transform: translateX(-50%) translateY(5px); }
  65% { transform: translateX(-50%) translateY(2px); }
}
@media (max-width: 640px) {
  .hero-stack.marketing-home-hero-fill > section.relative {
    min-height: clamp(32rem, calc(100svh - 9.75rem), 54rem);
    min-height: clamp(32rem, calc(100vh - 9.75rem), 54rem);
    align-items: flex-start;
    padding-bottom: clamp(1.65rem, 5vw, 3.25rem);
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual > section.relative {
    min-height: calc(100vh - clamp(6rem, 14vw, 9rem)) !important;
    min-height: calc(100svh - clamp(6rem, 14vw, 9rem)) !important;
    align-items: center;
    padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
  }
  .hero-stack.marketing-home-hero-fill .hero-stack__bottom-fade {
    height: clamp(2.25rem, 9vw, 4.5rem);
  }
  .planish-hero-scroll-down {
    width: 3.25rem;
    height: 3.25rem;
  }
}


@media (max-width: 767.98px) {
  .planish-hero-scroll-down {
    display: none !important;
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual .planish-hero-scroll-down {
    display: inline-flex !important;
  }
}


@media (max-width: 1023px) {
  
  .hero-stack.marketing-home-hero-fill {
    min-height: 0;
    overflow-x: visible !important;
  }
  .hero-stack.marketing-home-hero-fill > section.relative {
    min-height: 0 !important;
    align-items: flex-start;
    padding-bottom: clamp(1rem, 2vw, 1.75rem);
    overflow-x: visible !important;
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual > section.relative {
    align-items: center;
    min-height: calc(100vh - clamp(6rem, 11vh, 9.25rem)) !important;
    min-height: calc(100svh - clamp(6rem, 11vh, 9.25rem)) !important;
    padding-bottom: clamp(0.75rem, 2vw, 1.5rem);
  }
  .hero-stack.marketing-home-hero-fill .marketing-hero-split {
    gap: 0.85rem;
    overflow-x: visible;
    min-width: 0;
  }
  .hero-stack.marketing-home-hero-fill .planish-hero-copy {
    order: 1;
  }
  .hero-stack.marketing-home-hero-fill:not(.marketing-home-hero--no-visual) .planish-hero-kicker {
    margin-bottom: 0.75rem;
  }
  .hero-stack.marketing-home-hero-fill:not(.marketing-home-hero--no-visual) .planish-hero-title-display {
    margin-bottom: 0.5rem;
  }
  .hero-stack.marketing-home-hero-fill:not(.marketing-home-hero--no-visual) .planish-hero-lead {
    margin-bottom: 0.85rem;
    padding-bottom: 0.35rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-stack.marketing-home-hero-fill > section.relative {
    /* site_header.php mobil ofsetiyle aynı; önceki clamp bu kuralın özgüllüğüyle diğer sayfaları geçerli kılıyordu */
    padding-top: 8.5rem !important;
    padding-bottom: clamp(0.5rem, 1.4vw, 0.9rem) !important;
  }
  .hero-stack.marketing-home-hero-fill.marketing-home-hero--no-visual > section.relative {
    padding-bottom: clamp(2rem, 5vw, 3.5rem) !important;
  }
  .hero-stack.marketing-home-hero-fill .marketing-hero-split {
    gap: 0.55rem !important;
  }
  .hero-stack.marketing-home-hero-fill:not(.marketing-home-hero--no-visual) .planish-hero-kicker--signal {
    margin-bottom: 0.5rem !important;
  }
  .hero-stack.marketing-home-hero-fill:not(.marketing-home-hero--no-visual) .planish-hero-title-display {
    margin-bottom: 0.4rem !important;
  }
  .hero-stack.marketing-home-hero-fill:not(.marketing-home-hero--no-visual) .planish-hero-lead {
    margin-bottom: 0.65rem !important;
    padding-bottom: 0.2rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .planish-hero-scroll-down {
    animation: none;
    transition:
      box-shadow 180ms ease,
      background-color 180ms ease,
      opacity 0.22s ease,
      visibility 0s linear 0s;
  }
  .planish-hero-scroll-down.planish-hero-scroll-down--hidden {
    transition:
      opacity 0.18s ease-out,
      visibility 0s linear 0.18s,
      box-shadow 180ms ease,
      background-color 180ms ease;
  }
}
.hero-stack::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(54 184 66 / 0.35) 22%,
    rgb(120 113 108 / 0.22) 52%,
    rgb(54 184 66 / 0.3) 78%,
    transparent 100%
  );
  opacity: 0.65;
}


.planish-site-footer {
  --planish-footer-wave-h: 5rem;
  position: relative;
  
  z-index: 0;
  margin-top: calc(-1 * var(--planish-footer-wave-h));
  background: transparent !important;
  overflow-x: clip;
}
@media (min-width: 640px) {
  .planish-site-footer {
    --planish-footer-wave-h: 7rem;
  }
}

body.planish-site-body footer#iletisim.planish-site-footer {
  margin-top: 0;
  z-index: 2;
  overflow: visible;
  overflow-x: visible;
}

body.planish-site-body #iletisim .footer-body-pull {
  margin-top: -2px;
}

body.planish-site-body #blog {
  position: relative;
  z-index: 0;
  padding-bottom: calc(2.75rem + 2rem);
}
@media (min-width: 640px) {
  body.planish-site-body #blog {
    padding-bottom: calc(3.5rem + 2.75rem);
  }
}
@media (min-width: 1024px) {
  body.planish-site-body #blog {
    padding-bottom: calc(4rem + 3rem);
  }
}

.planish-footer-wave-skin {
  background: transparent;
  
  overflow: visible !important;
  overflow-x: visible !important;
}
.planish-footer-wave-skin svg {
  display: block;
}

footer#iletisim .planish-footer-wave-skin svg.planish-footer-wave-svg {
  width: 100%;
  max-width: none;
  height: 5rem;
  min-height: 5rem;
}
@media (min-width: 640px) {
  footer#iletisim .planish-footer-wave-skin svg.planish-footer-wave-svg {
    height: 7rem;
    min-height: 7rem;
  }
}

body.planish-site-body footer#iletisim:not(.planish-site-footer--blog) .planish-footer-wave-skin {
  background-color: #fafafa;
}

body.planish-site-body footer#iletisim.planish-site-footer--blog .planish-footer-wave-skin {
  background: transparent !important;
  background-image: none !important;
}

body.planish-site-body #iletisim .footer-body-pull,
body.planish-marketing-auth-body #iletisim .footer-body-pull {
  background-color: var(--planish-footer-chrome-base) !important;
  background-image: linear-gradient(
    180deg,
    var(--planish-footer-chrome-top) 0%,
    var(--planish-footer-chrome-mid) 45%,
    var(--planish-footer-chrome-bottom) 100%
  ) !important;
}

.planish-display-title {
  font-size: clamp(1.875rem, 4.2vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--planish-ink-strong);
  line-height: 1.12;
}
.planish-display-title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.875rem auto 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--bs-primary), var(--planish-secondary-teal));
  opacity: 0.95;
}
.planish-section-dark .planish-display-title {
  color: #f8fafc;
}
.planish-section-dark .planish-display-title::after {
  background: linear-gradient(90deg, #2dd4bf, var(--bs-primary));
}

.planish-hero-copy .planish-cta-primary,
.planish-hero-copy .planish-cta-outline {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
.planish-hero-copy .planish-cta-primary {
  border-radius: 0.875rem;
  background: linear-gradient(
    168deg,
    color-mix(in srgb, var(--bs-primary) 88%, #ffffff 12%) 0%,
    var(--bs-primary) 48%,
    color-mix(in srgb, var(--bs-primary) 75%, #0e7490 25%) 100%
  );
  box-shadow:
    0 4px 14px rgb(var(--bs-primary-rgb) / 0.28),
    0 14px 36px rgb(var(--bs-primary-rgb) / 0.22),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}
.planish-hero-copy .planish-cta-primary:hover {
  box-shadow:
    0 6px 20px rgb(var(--bs-primary-rgb) / 0.3),
    0 18px 42px rgb(var(--bs-primary-rgb) / 0.2),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
}
.planish-hero-copy .planish-cta-outline {
  border-radius: 0.875rem;
  box-shadow:
    0 6px 22px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .planish-hero-copy .planish-cta-primary {
    background: linear-gradient(168deg, #2aa8c4 0%, var(--bs-primary) 45%, #0e7490 100%);
  }
}

.planish-hero-gradient-text {
  background: linear-gradient(102deg, #0f766e 0%, var(--bs-primary) 42%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.planish-hero-gradient-text--electric {
  background: linear-gradient(
    100deg,
    #0d9488 0%,
    var(--bs-primary) 36%,
    #2dd4bf 72%,
    #5eead4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.planish-hero-gradient-text--headline {
  background: linear-gradient(
    118deg,
    #134e4a 0%,
    #0f766e 28%,
    var(--bs-primary) 56%,
    #0d9488 82%,
    #0f766e 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.planish-hero-gradient-text.planish-hero-accent-son {
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(105deg, #36b842 0%, #0d9488 55%, var(--bs-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgb(54 184 66 / 0.22));
}

.planish-hero-title-display {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.03em;
  line-height: 1.02;
  font-size: clamp(1.68rem, 3.65vw + 0.65rem, 3.72rem);
  -webkit-font-smoothing: antialiased;
}

.planish-hero-title-display.planish-hero-title-display--laszlo-marker {
  display: block;
  min-width: 0;
  max-width: 100%;
}
.planish-hero-title-display--laszlo-marker .planish-hero-title-display__line {
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.08;
  color: #0f172a;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.planish-hero-title-display--laszlo-marker .planish-hero-title-display__line::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
body.planish-site-body .planish-hero-title-display--laszlo-marker .planish-laszlo-marker-text {
  font-weight: inherit;
}
body.planish-site-body .planish-hero-title-display--laszlo-marker .planish-laszlo-marker-text::after {
  background: #e53935;
}
.planish-hero-title-display__primary {
  display: block;
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.05;
}
.planish-hero-title-display__suffix {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  margin-top: 0.06em;
}
.planish-hero-title-display__rule {
  display: block;
  width: 0.3em;
  height: 0.95em;
  flex-shrink: 0;
  border-radius: 0.1em;
  background: linear-gradient(
    180deg,
    #4ade80 0%,
    #36b842 40%,
    var(--bs-primary) 100%
  );
  box-shadow:
    0 2px 8px rgb(15 23 42 / 0.07),
    0 0 0 1px rgb(255 255 255 / 0.45) inset;
}
.planish-hero-title-display .planish-hero-accent-son {
  font-size: 1.14em;
  font-weight: 900;
  letter-spacing: -0.058em;
  line-height: 1;
  background: linear-gradient(
    122deg,
    #166534 0%,
    #0f766e 42%,
    var(--bs-primary) 78%,
    #0e7490 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgb(15 23 42 / 0.06));
}
@media (min-width: 640px) {
  .planish-hero-title-display {
    font-size: clamp(2.05rem, 3.05vw + 0.85rem, 3.88rem);
    gap: 0.04em;
  }
  .planish-hero-title-display__suffix {
    gap: 0.46em;
  }
}
@media (min-width: 1280px) {
  .planish-hero-title-display {
    font-size: clamp(2.45rem, 2.35vw + 1.15rem, 3.95rem);
  }
}

.planish-hero-title-one-line {
  white-space: nowrap;
  font-size: clamp(0.92rem, 3.85vw + 0.42rem, 3.55rem);
}
@media (min-width: 640px) {
  .planish-hero-title-one-line {
    font-size: clamp(1.65rem, 2.65vw + 0.65rem, 3.55rem);
  }
}
@media (min-width: 1280px) {
  .planish-hero-title-one-line {
    font-size: clamp(2.4rem, 2.1vw + 1.25rem, 3.55rem);
  }
}

.planish-hero-kicker--signal {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.planish-hero-kicker__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 1.05rem;
  /* Header iç kabuğu (#siteHeader > div) ile aynı köşe — 9999px hap yerine */
  border-radius: 0.875rem;
  background-color: transparent;
  background-image:
    linear-gradient(180deg, rgb(255 255 255 / 0.52) 0%, transparent 42%, rgb(255 255 255 / 0.08) 100%),
    linear-gradient(125deg, transparent 0%, rgb(255 255 255 / 0.2) 48%, transparent 96%),
    linear-gradient(148deg, rgb(255 255 255 / 0.82) 0%, rgb(248 250 252 / 0.38) 55%, rgb(255 255 255 / 0.22) 100%);
  border: 1px solid rgb(226 232 240 / 0.88);
  box-shadow:
    0 10px 36px rgb(15 23 42 / 0.07),
    0 1px 0 rgb(255 255 255 / 0.95) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.planish-hero-kicker__emoji {
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgb(15 23 42 / 0.08));
}
.planish-hero-kicker__copy {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #1e293b;
}
@media (min-width: 640px) {
  .planish-hero-kicker__copy {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .marketing-hero-split {
    min-width: 0;
  }
  .marketing-hero-split .planish-hero-copy {
    min-width: 0;
    max-width: 100%;
  }
}
.planish-btn-motion {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}
.planish-btn-motion:hover {
  transform: translateY(-1px);
}
.planish-btn-motion:active {
  transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
  .planish-btn-motion.planish-cta-sales-hover:hover {
    transform: translateY(-1px) scale(1.03);
  }
  .planish-btn-motion.planish-cta-sales-hover:active {
    transform: translateY(0) scale(1.01);
  }
}


.planish-btn-shine {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.planish-btn-shine::after {
  content: "";
  position: absolute;
  inset: -25% -35%;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(255, 255, 255, 0.2) 47%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.2) 53%,
    transparent 62%
  );
  transform: translateX(-125%) rotate(15deg);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: soft-light;
}
.planish-btn-shine:hover::after {
  opacity: 1;
  transform: translateX(125%) rotate(15deg);
}
.planish-btn-shine--outline::after {
  mix-blend-mode: overlay;
  background: linear-gradient(
    118deg,
    transparent 40%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 60%
  );
}
@media (prefers-reduced-motion: reduce) {
  .planish-btn-shine::after {
    transition: none;
    transform: none !important;
    opacity: 0 !important;
  }
}


@keyframes planish-cta-pulse-ring {
  0% {
    box-shadow:
      0 4px 14px rgb(var(--bs-primary-rgb) / 0.32),
      0 0 0 0 rgb(var(--bs-primary-rgb) / 0.42);
  }
  65% {
    box-shadow:
      0 4px 14px rgb(var(--bs-primary-rgb) / 0.28),
      0 0 0 11px rgb(var(--bs-primary-rgb) / 0);
  }
  100% {
    box-shadow:
      0 4px 14px rgb(var(--bs-primary-rgb) / 0.32),
      0 0 0 0 rgb(var(--bs-primary-rgb) / 0);
  }
}
.planish-cta-pulse.rounded-full.bg-primary,
.planish-cta-pulse.rounded-app.bg-primary {
  animation: planish-cta-pulse-ring 2.35s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .planish-cta-pulse.rounded-full.bg-primary,
  .planish-cta-pulse.rounded-app.bg-primary {
    animation: none;
  }
}

.planish-pricing-free__kart-note {
  margin: -0.15rem 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #475569;
  max-width: 42rem;
}
@media (min-width: 640px) {
  .planish-pricing-free__body .planish-pricing-free__kart-note {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}


.planish-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgb(226 232 240);
  box-shadow: none;
}
.planish-section-label--muted {
  color: #64748b;
  background: #f8fafc;
  border-color: rgb(226 232 240);
}


.planish-site-body ::selection,
.planish-marketing-auth-body ::selection {
  background-color: #8ed4e8;
  color: #0b1220;
  text-shadow: none;
}
.planish-site-body ::-moz-selection,
.planish-marketing-auth-body ::-moz-selection {
  background-color: #8ed4e8;
  color: #0b1220;
  text-shadow: none;
}

.planish-site-body .planish-section-dark ::selection,
.planish-marketing-auth-body .planish-section-dark ::selection,
.planish-site-body footer#iletisim ::selection,
.planish-marketing-auth-body footer#iletisim ::selection {
  background-color: #7dd3fc;
  color: #0f172a;
}
.planish-site-body .planish-section-dark ::-moz-selection,
.planish-marketing-auth-body .planish-section-dark ::-moz-selection,
.planish-site-body footer#iletisim ::-moz-selection,
.planish-marketing-auth-body footer#iletisim ::-moz-selection {
  background-color: #7dd3fc;
  color: #0f172a;
}

@media (prefers-reduced-motion: no-preference) {
  .planish-hero-copy > * {
    animation: planish-fade-up 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .planish-hero-copy > *:nth-child(1) {
    animation-delay: 0.04s;
  }
  .planish-hero-copy > *:nth-child(2) {
    animation-delay: 0.1s;
  }
  .planish-hero-copy > *:nth-child(3) {
    animation-delay: 0.16s;
  }
  .planish-hero-copy > *:nth-child(4) {
    animation-delay: 0.22s;
  }
  .planish-hero-copy > *:nth-child(5) {
    animation-delay: 0.28s;
  }
}
@keyframes planish-fade-up {
  from {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .planish-service-grid > .group:hover .feature-icon-cell {
    transform: none !important;
    color: inherit !important;
    box-shadow: none !important;
  }
  .planish-btn-motion:hover,
  .planish-btn-motion:active,
  .planish-btn-motion.planish-cta-sales-hover:hover,
  .planish-btn-motion.planish-cta-sales-hover:active,
  .planish-pricing-free-cta.planish-cta-sales-hover:hover {
    transform: none;
  }
  .planish-pricing-free-cta:hover {
    transform: none;
  }
  .site-header-chrome nav > div.hidden.md\:flex a::after,
  .planish-site-header-login::after {
    transition: none;
  }
  .planish-hero-copy > * {
    animation: none !important;
  }
  .planish-site-body #blog .planish-blog-card:hover {
    transform: none;
  }
  .planish-site-body #blog .planish-blog-card__img {
    transition: none !important;
    transform: none !important;
  }
  @media (min-width: 768px) {
    .planish-pricing-card:hover,
    .planish-pricing-card--highlight:hover {
      transform: none;
    }
  }
  @media (min-width: 1024px) {
    .planish-pillar-card:hover,
    .planish-service-grid > .group:hover {
      transform: none;
    }
  }
  @media (min-width: 768px) {
    .planish-site-body .planish-faq-item:hover {
      transform: none;
    }
  }
}


.planish-site-body .bg-surface {
  background-color: #f8fafc;
  background-image: none;
}

.planish-marquee {
  position: relative;
  border-bottom: none;
  background: transparent;
  box-shadow: none;
}
.planish-marquee__viewport {
  overflow: hidden;
  
  mask-image: linear-gradient(90deg, transparent 0%, #000 0.55%, #000 99.45%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 0.55%, #000 99.45%, transparent 100%);
}
.planish-marquee__rail {
  display: flex;
  width: max-content;
  
  animation: planish-marquee-scroll 48s linear infinite;
  will-change: transform;
}
.planish-marquee__chunk {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.1rem;
  padding: 0.62rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #334155;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .planish-marquee__chunk {
    font-size: 0.74rem;
    padding: 0.72rem 0;
  }
}
.planish-marquee__sep {
  opacity: 0.38;
  padding: 0 0.55rem;
  font-weight: 500;
  color: var(--bs-primary);
}
@keyframes planish-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}
@media (prefers-reduced-motion: reduce) {
  .planish-marquee__rail {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }
  .planish-marquee__chunk:not(:first-child) {
    display: none;
  }
}


@media (max-width: 1023.98px) {
  .planish-marquee {
    padding-top: env(safe-area-inset-top, 0px);
  }
  body:has(.planish-marquee) #headerFixedMount {
    top: env(safe-area-inset-top, 0px) !important;
    
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.planish-section-dark {
  position: relative;
  isolation: isolate;
  background: linear-gradient(168deg, #070b12 0%, #0f1a2e 42%, #0a1222 100%);
  color: #e2e8f0;
}
.planish-section-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgb(var(--bs-primary-rgb) / 0.7), transparent);
}
.planish-section-dark > * {
  position: relative;
  z-index: 1;
}
.planish-section-dark .strategy-icon-box.planish-strategy-icon svg {
  color: #f8fafc;
}
.planish-section-dark .strategy-randevu-phone .hero-phone-bezel {
  filter: drop-shadow(0 1.5rem 2.5rem rgba(0, 0, 0, 0.5));
}

.planish-service-grid > .group {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.2rem;
  border-radius: var(--planish-radius-xl);
  background: #ffffff;
  border: 1px solid rgb(226 232 240);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.planish-service-grid > .group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bs-primary), var(--planish-secondary-teal));
  opacity: 0.92;
}
.planish-service-grid > .group .feature-icon-cell {
  box-shadow: none;
  color: #475569;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.55, 0.64, 1),
    box-shadow 0.28s ease,
    color 0.32s ease,
    background-color 0.28s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .planish-service-grid > .group:hover .feature-icon-cell {
    transform: translateY(-8px);
    color: var(--bs-primary);
    box-shadow:
      0 10px 26px rgb(var(--bs-primary-rgb) / 0.22),
      0 4px 12px rgba(15, 23, 42, 0.08);
  }
}
.planish-service-grid > .group h3 {
  color: var(--planish-ink-strong);
  font-weight: 800;
}
@media (min-width: 1024px) {
  .planish-service-grid > .group:hover {
    transform: translateY(-4px);
    border-color: rgb(var(--bs-primary-rgb) / 0.22);
    box-shadow: none;
  }
}


.planish-pricing-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f1f5f9;
}
.planish-pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, rgb(226 232 240 / 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(226 232 240 / 0.45) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}
.planish-pricing-section::after {
  display: none;
}
.planish-pricing-section > * {
  position: relative;
  z-index: 1;
}
.planish-pricing-free {
  position: relative;
  overflow: hidden;
  border-radius: var(--planish-radius-2xl);
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  box-shadow: none;
}
.planish-pricing-free::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
  background: linear-gradient(90deg, var(--bs-primary), var(--planish-secondary-teal));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.planish-pricing-free__grid {
  display: grid;
  gap: 0;
  align-items: stretch;
}
.planish-pricing-free__body {
  padding: 1.35rem 1.35rem 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .planish-pricing-free__grid {
    grid-template-columns: minmax(0, 1fr) minmax(11.5rem, 15.5rem);
  }
  .planish-pricing-free__body {
    padding: 1.65rem 1.5rem 1.65rem 1.75rem;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .planish-pricing-free__body {
    padding: 1.85rem 2rem 1.85rem 2rem;
  }
  .planish-pricing-free__grid {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 17rem);
  }
}

.planish-pricing-free.planish-pricing-free--twocol .planish-pricing-free__grid {
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
  .planish-pricing-free.planish-pricing-free--twocol .planish-pricing-free__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (min-width: 768px) {
  .planish-pricing-free.planish-pricing-free--twocol .planish-pricing-free__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.planish-pricing-free.planish-pricing-free--twocol .planish-pricing-free__cta-col {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1rem;
}
.planish-pricing-free__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--planish-ink-strong);
}
.planish-pricing-free__lifetime-note {
  margin: -0.35rem 0 0.8rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgb(var(--bs-primary-rgb));
}
.planish-pricing-free__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: #475569;
  max-width: 40rem;
}
@media (min-width: 640px) {
  .planish-pricing-free__text {
    margin-left: 0;
    margin-right: auto;
  }
}
.planish-pricing-free__cta-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.45rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgb(var(--bs-primary-rgb) / 0.06) 0%,
    #f8fafc 100%
  );
  border-top: 1px solid rgb(226 232 240);
}
@media (min-width: 640px) {
  .planish-pricing-free__cta-col {
    border-top: none;
    border-left: 1px solid rgba(226, 232, 240, 0.75);
    padding: 1.65rem 1.5rem;
    border-radius: 0 var(--planish-radius-2xl) var(--planish-radius-2xl) 0;
  }
}
.planish-pricing-free__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
@media (min-width: 640px) {
  .planish-pricing-free__price-block {
    align-items: center;
  }
}
.planish-pricing-free__amount {
  font-family: var(--app-font-hero);
  font-size: clamp(2.15rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--bs-primary);
}
.planish-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.1rem 0.35rem;
}
.planish-price-amount {
  font-weight: 900 !important;
}
.planish-price-period-sub {
  font-size: 0.62rem !important;
  line-height: 1.3;
  opacity: 0.92;
}
@media (min-width: 640px) {
  .planish-price-period-sub {
    font-size: 0.72rem !important;
  }
}
.planish-pricing-free__period {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #64748b;
  text-transform: lowercase;
}
.planish-pricing-card {
  position: relative;
  overflow: hidden;
  padding: 1.85rem 1.6rem 1.9rem;
  border-radius: var(--planish-radius-xl);
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  box-shadow: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.planish-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  opacity: 0.9;
}
@media (min-width: 768px) {
  .planish-pricing-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: none;
  }
}
.planish-pricing-card--highlight {
  border-color: rgb(var(--bs-primary-rgb) / 0.35);
  background: #ffffff;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgb(var(--bs-primary-rgb) / 0.12);
}
.planish-pricing-card--highlight::before {
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary), var(--planish-secondary-teal));
  opacity: 1;
}
@media (min-width: 768px) {
  .planish-pricing-card--highlight:hover {
    border-color: rgb(var(--bs-primary-rgb) / 0.45);
    box-shadow:
      0 8px 28px rgba(15, 23, 42, 0.08),
      0 0 0 1px rgb(var(--bs-primary-rgb) / 0.18);
  }
}
.planish-pricing-ribbon {
  align-self: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.1rem;
  padding: 0.6rem 1.35rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #04748c 52%, var(--planish-secondary-teal) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    0 6px 22px rgb(var(--bs-primary-rgb) / 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}
.planish-pricing-ribbon__inner {
  display: inline-block;
  letter-spacing: 0.16em;
}
.planish-pricing-cta {
  box-shadow: none;
}
.planish-pricing-cta:hover {
  box-shadow: none;
}
.planish-pricing-free-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff !important;
  text-decoration: none !important;
  background-image: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bs-primary) 88%, #ffffff 12%) 0%,
    var(--bs-primary) 100%
  );
  background-color: var(--bs-primary);
  box-shadow:
    0 6px 22px rgb(var(--bs-primary-rgb) / 0.35),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.planish-pricing-free-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 10px 28px rgb(var(--bs-primary-rgb) / 0.32),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.planish-pricing-free-cta:active {
  transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
  .planish-pricing-free-cta.planish-cta-sales-hover:hover {
    transform: translateY(-1px) scale(1.03);
  }
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .planish-pricing-free-cta {
    background-image: none;
    background-color: var(--bs-primary);
  }
}
.planish-pricing-features li > span.text-primary.font-bold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.12rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: rgb(var(--bs-primary-rgb) / 0.12);
  color: var(--bs-primary);
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 800;
}
.planish-site-body .planish-pricing-grid {
  align-items: stretch;
  gap: clamp(1.15rem, 2.2vw, 1.65rem);
}


.planish-pillar-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--planish-radius-xl);
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  padding: 1.85rem 1.6rem;
  box-shadow: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.planish-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  bottom: 0;
  background: linear-gradient(180deg, var(--bs-primary), var(--planish-secondary-teal));
  opacity: 0.85;
}
@media (min-width: 1024px) {
  .planish-pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgb(var(--bs-primary-rgb) / 0.2);
    box-shadow: none;
  }
}


.planish-stats-band {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  box-shadow: 0 1px 0 #e2e8f0 inset, 0 -1px 0 #e2e8f0 inset;
}
.planish-stats-band .stat-counter {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: var(--planish-ink-strong);
}
@supports (-webkit-background-clip: text) {
  .planish-stats-band .stat-counter {
    background: linear-gradient(
      115deg,
      var(--bs-primary) 0%,
      color-mix(in srgb, var(--bs-primary) 55%, #0f766e 45%) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
@supports not (-webkit-background-clip: text) {
  .planish-stats-band .stat-counter {
    color: var(--bs-primary);
  }
}


.planish-testimonials-section .testimonial-card {
  border-radius: var(--planish-radius-xl) !important;
  border: 1px solid rgb(226 232 240) !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.planish-testimonials-section .testimonial-card:hover {
  border-color: rgb(var(--bs-primary-rgb) / 0.22) !important;
  box-shadow: none !important;
}
.testimonial-verified-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  max-width: calc(100% - 7rem);
  padding: 0.32rem 0.62rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #0369a1 100%);
  box-shadow:
    0 4px 14px rgb(var(--bs-primary-rgb) / 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  pointer-events: none;
}
.planish-testimonials-section .testimonial-card > span.font-serif[aria-hidden="true"] {
  color: #e2e8f0 !important;
  opacity: 0.9;
}


.planish-site-body .planish-faq-band {
  position: relative;
  isolation: isolate;
  background-color: #f1f5f9;
  background-image:
    linear-gradient(to right, rgb(226 232 240 / 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(226 232 240 / 0.45) 1px, transparent 1px);
  background-size: 24px 24px;
}
.planish-site-body .planish-faq-intro .planish-section-label {
  box-shadow: none;
}
.planish-site-body .planish-faq-lead a {
  text-underline-offset: 0.15em;
}

.planish-site-body .planish-faq-item {
  position: relative;
  border-radius: var(--planish-radius-xl);
  
  overflow: visible;
  border-color: rgb(226 232 240) !important;
  background: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.planish-site-body .planish-faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  bottom: 0;
  background: linear-gradient(180deg, var(--bs-primary), var(--planish-secondary-teal));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.planish-site-body .planish-faq-item[open]::before {
  opacity: 1;
}
.planish-site-body .planish-faq-item[open] {
  border-color: rgb(var(--bs-primary-rgb) / 0.22) !important;
  background: #ffffff !important;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgb(var(--bs-primary-rgb) / 0.1) !important;
}
.planish-site-body .planish-faq-item:hover {
  border-color: rgb(203 213 225) !important;
}
@media (min-width: 768px) {
  .planish-site-body .planish-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: none !important;
  }
}
.planish-site-body .planish-faq-summary {
  padding: 1.15rem 1.25rem;
}
@media (min-width: 640px) {
  .planish-site-body .planish-faq-summary {
    padding: 1.25rem 1.5rem;
  }
}
.planish-site-body .planish-faq-summary:hover {
  background: rgb(var(--bs-primary-rgb) / 0.04);
}
.planish-site-body .planish-faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  margin-top: -0.05rem;
  border-radius: 0.5rem;
  background: rgb(var(--bs-primary-rgb) / 0.1);
  color: var(--bs-primary);
  transition: transform 0.2s ease, background 0.2s ease;
}
.planish-site-body .planish-faq-item[open] .planish-faq-chevron {
  background: rgb(var(--bs-primary-rgb) / 0.16);
}
.planish-site-body .planish-faq-answer {
  border-top-color: rgb(226 232 240) !important;
  background: #f8fafc;
  color: #475569;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


.planish-site-body #blog .planish-blog-card {
  position: relative;
  z-index: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgb(226 232 240);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 4px 14px rgba(15, 23, 42, 0.035);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.planish-site-body #blog .planish-blog-card:hover {
  z-index: 2;
  overflow: hidden;
  transform: translateY(-3px);
  border-color: rgb(226 232 240);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.07),
    0 6px 18px rgba(15, 23, 42, 0.045);
}

.planish-site-body #blog .planish-blog-card--editorial:hover {
  transform: translateY(-3px);
  border-color: rgb(226 232 240);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.07),
    0 6px 18px rgba(15, 23, 42, 0.045);
}
.planish-site-body #blog .planish-blog-card--editorial {
  min-height: 21.5rem;
  overflow: hidden;
}
.planish-site-body #blog .planish-blog-card--editorial .planish-blog-card__media {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 9.5rem;
  border-radius: 1.15rem 1.15rem 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.planish-site-body #blog .planish-blog-card--editorial .planish-blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(15 23 42 / 0.22) 0%, rgb(15 23 42 / 0.5) 55%, rgb(15 23 42 / 0.72) 100%);
  pointer-events: none;
}

.planish-site-body .planish-blog-card__media .planish-blog-card__tag {
  position: absolute;
  top: clamp(0.55rem, 1.8vw, 0.85rem);
  left: clamp(0.55rem, 1.8vw, 0.85rem);
  z-index: 4;
  max-width: min(14rem, calc(100% - 1.25rem));
  padding: 0.35rem 0.78rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.55) 0%, transparent 45%),
    linear-gradient(145deg, rgb(255 255 255 / 0.94) 0%, rgb(248 250 252 / 0.88) 100%);
  border: 1px solid rgb(255 255 255 / 0.95);
  box-shadow:
    0 4px 18px rgb(15 23 42 / 0.14),
    0 1px 0 rgb(255 255 255 / 0.9) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}
.planish-site-body #blog .planish-blog-card--editorial .planish-blog-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.planish-site-body #blog .planish-blog-card--editorial .planish-blog-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.planish-site-body #blog .planish-blog-card--editorial .planish-blog-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: none;
  box-shadow: inset 0 1px 0 0 rgb(241 245 249 / 0.92);
}
.planish-site-body #blog .planish-blog-card__author {
  gap: 0.75rem;
}
.planish-site-body #blog .planish-blog-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid rgb(226 232 240 / 0.95);
  background: #ffffff;
  overflow: hidden;
}
.planish-site-body #blog .planish-blog-card__avatar-img {
  display: block;
  width: 68%;
  height: 68%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.planish-site-body #blog .planish-blog-card__body {
  position: relative;
  background: #ffffff;
  border-top: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 1.2rem 1.15rem !important;
}
.planish-site-body #blog .planish-blog-card--editorial .planish-blog-card__body {
  border-radius: 0 0 1.15rem 1.15rem;
}
@media (min-width: 640px) {
  .planish-site-body #blog .planish-blog-card__body {
    padding: 1.4rem 1.35rem !important;
  }
}
.planish-site-body #fiyatlandirma .max-w-6xl > p.text-center.text-sm {
  display: block;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.65rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.planish-testimonials-section .testimonial-sector-chip {
  border-color: rgb(226 232 240) !important;
  background: #ffffff !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.planish-site-body #blog .planish-blog-card:focus-visible {
  outline: 2px solid rgb(var(--bs-primary-rgb) / 0.42);
  outline-offset: 3px;
}
.planish-site-body #blog .planish-blog-card__media {
  position: relative;
}

.planish-site-body #blog .planish-blog-card:not(.planish-blog-card--editorial) .planish-blog-card__img {
  display: block;
  width: 100%;
  height: clamp(220px, 52vw, 280px);
  object-fit: cover;
}
@media (min-width: 640px) {
  .planish-site-body #blog .planish-blog-card:not(.planish-blog-card--editorial) .planish-blog-card__img {
    height: clamp(250px, 26vw, 280px);
  }
}
@media (min-width: 1024px) {
  .planish-site-body #blog .planish-blog-card:not(.planish-blog-card--editorial) .planish-blog-card__img {
    height: clamp(235px, 19vw, 270px);
  }
}



.planish-site-body #blog .planish-blog-section-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: min(78rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 640px) {
  .planish-site-body #blog .planish-blog-section-wrap {
    max-width: min(80rem, 100%);
  }
}
@media (min-width: 1280px) {
  .planish-site-body #blog .planish-blog-section-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.planish-site-body #blog .planish-blog-carousel {
  position: relative;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 640px) {
  .planish-site-body #blog .planish-blog-carousel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 1023.98px) {
  .planish-site-body #blog .planish-blog-carousel:not(.planish-blog-carousel--no-arrows) {
    padding-left: 0;
    padding-right: 0;
  }
}
.planish-site-body #blog .planish-blog-carousel--no-arrows {
  padding-left: 0;
  padding-right: 0;
}
.planish-site-body #blog .planish-blog-carousel__viewport {
  position: relative;
  z-index: 0;
  
  padding-top: 0.85rem;
  padding-bottom: 1rem;
  padding-left: clamp(0.65rem, 2vw, 1.15rem);
  padding-right: clamp(0.65rem, 2vw, 1.15rem);
  margin-top: 0.35rem;
  cursor: grab;
  
  touch-action: none;
}
.planish-site-body #blog .planish-blog-carousel__viewport.planish-blog-carousel__viewport--is-dragging {
  cursor: grabbing;
}
.planish-site-body #blog .planish-blog-carousel__viewport.planish-blog-carousel__viewport--is-dragging .planish-blog-carousel__track {
  user-select: none;
}
@media (min-width: 640px) {
  .planish-site-body #blog .planish-blog-carousel__viewport {
    padding-top: 1rem;
    padding-bottom: 1.1rem;
    padding-left: clamp(0.85rem, 2.2vw, 1.35rem);
    padding-right: clamp(0.85rem, 2.2vw, 1.35rem);
  }
}
.planish-site-body #blog .planish-blog-carousel__slide {
  overflow: visible;
}
.planish-site-body #blog .planish-blog-carousel__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}
.planish-site-body #blog .planish-blog-carousel__slide > .planish-blog-card {
  height: 100%;
}

body.planish-site-body #blog .planish-blog-carousel__viewport .planish-blog-carousel__slide,
body.planish-site-body #blog .planish-blog-carousel__viewport .planish-blog-carousel__slide * {
  touch-action: none;
}
body.planish-site-body #blog .planish-blog-carousel__viewport .planish-blog-card__img {
  -webkit-user-drag: none;
  user-select: none;
}

body.planish-site-body #blog .planish-blog-carousel__viewport .planish-blog-card__media .planish-blog-card__tag {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: linear-gradient(
    145deg,
    rgb(255 255 255 / 0.98) 0%,
    rgb(248 250 252 / 0.96) 100%
  );
  border: 1px solid rgb(241 245 249 / 0.98);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.06),
    0 4px 12px rgb(15 23 42 / 0.08);
  isolation: isolate;
  transform: translateZ(0);
}
.planish-site-body #blog .planish-blog-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgb(226 232 240);
  border-radius: 9999px;
  background: #ffffff;
  color: #1e293b;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}
.planish-site-body #blog .planish-blog-carousel__btn:hover:not(:disabled) {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.35);
  color: var(--planish-accent-ink);
  box-shadow: none;
}
.planish-site-body #blog .planish-blog-carousel__btn:focus-visible {
  outline: 2px solid rgb(var(--planish-accent-ink-rgb) / 0.45);
  outline-offset: 2px;
}
.planish-site-body #blog .planish-blog-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
.planish-site-body #blog .planish-blog-carousel__btn--prev {
  left: 0;
}
.planish-site-body #blog .planish-blog-carousel__btn--next {
  right: 0;
}
@media (max-width: 1023.98px) {
  .planish-site-body #blog .planish-blog-carousel__viewport {
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }
  .planish-site-body #blog .planish-blog-carousel__nav-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .planish-site-body #blog .planish-blog-carousel__btn {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    color: var(--planish-ink-strong, #0f172a);
  }
  .planish-site-body #blog .planish-blog-carousel__btn:hover:not(:disabled) {
    border-color: rgb(var(--planish-accent-ink-rgb) / 0.35);
    color: var(--planish-accent-ink);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
  }
  .planish-site-body #blog .planish-blog-carousel__btn:focus-visible {
    outline: none;
    box-shadow:
      0 0 0 2px #fff,
      0 0 0 4px rgb(var(--planish-accent-ink-rgb) / 0.45);
  }
}
@media (min-width: 1024px) {
  .planish-site-body #blog .planish-blog-carousel__nav-row {
    position: absolute;
    inset: 0;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
  }
  .planish-site-body #blog .planish-blog-carousel__nav-row .planish-blog-carousel__btn {
    pointer-events: auto;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgb(226 232 240);
    border-radius: 9999px;
    background: #ffffff;
    color: #1e293b;
    box-shadow: none;
  }
  .planish-site-body #blog .planish-blog-carousel__nav-row .planish-blog-carousel__btn:hover:not(:disabled) {
    border-color: rgb(var(--planish-accent-ink-rgb) / 0.35);
    color: var(--planish-accent-ink);
    box-shadow: none;
  }
  .planish-site-body #blog .planish-blog-carousel__nav-row .planish-blog-carousel__btn:focus-visible {
    outline: 2px solid rgb(var(--planish-accent-ink-rgb) / 0.45);
    outline-offset: 2px;
    box-shadow: none;
  }
}

/* Blog yazısı — diğer yazılar karuseli: oklar kartın altında ortada */
.planish-site-body .planish-blog-carousel--nav-below {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__viewport {
  position: relative;
  z-index: 0;
  order: 1;
  padding-top: 0.85rem;
  padding-bottom: 1rem;
  padding-left: clamp(0.65rem, 2vw, 1.15rem);
  padding-right: clamp(0.65rem, 2vw, 1.15rem);
  margin-top: 0;
  cursor: grab;
  touch-action: none;
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__viewport.planish-blog-carousel__viewport--is-dragging {
  cursor: grabbing;
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__viewport.planish-blog-carousel__viewport--is-dragging .planish-blog-carousel__track {
  user-select: none;
}
@media (min-width: 640px) {
  .planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__viewport {
    padding-top: 1rem;
    padding-bottom: 1.1rem;
    padding-left: clamp(0.85rem, 2.2vw, 1.35rem);
    padding-right: clamp(0.85rem, 2.2vw, 1.35rem);
  }
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__slide {
  overflow: visible;
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__slide > .planish-blog-card {
  height: 100%;
}
body.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__viewport .planish-blog-carousel__slide,
body.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__viewport .planish-blog-carousel__slide * {
  touch-action: none;
}
body.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__viewport .planish-blog-card__img {
  -webkit-user-drag: none;
  user-select: none;
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__nav-row {
  order: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  position: static;
  inset: auto;
  pointer-events: auto;
  z-index: auto;
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__btn {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 9999px;
  background: #ffffff;
  color: var(--planish-ink-strong, #0f172a);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.35s var(--planish-reveal-ease, ease);
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__btn:hover:not(:disabled) {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.35);
  color: var(--planish-accent-ink);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgb(var(--planish-accent-ink-rgb) / 0.45);
}
.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body .planish-blog-carousel--nav-below .planish-blog-carousel__btn:hover:not(:disabled) {
    transform: scale(1.06);
  }
}

@media (max-width: 639.98px) {
  .planish-site-body .planish-testimonials-section .planish-testimonials-carousel:not(.planish-testimonials-carousel--no-arrows) {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
  }
  .planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn {
    width: 2.35rem;
    height: 2.35rem;
  }
  .planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn--prev {
    left: -0.65rem;
  }
  .planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn--next {
    right: -0.65rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .planish-site-body #blog .planish-blog-carousel__track {
    transition: none !important;
  }
}


.planish-site-body .planish-testimonials-section .planish-testimonials-carousel {
  position: relative;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 640px) {
  .planish-site-body .planish-testimonials-section .planish-testimonials-carousel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 639.98px) {
  .planish-site-body .planish-testimonials-section .planish-testimonials-carousel:not(.planish-testimonials-carousel--no-arrows) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel--no-arrows {
  padding-left: 0;
  padding-right: 0;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__viewport {
  position: relative;
  z-index: 0;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__slide > .planish-testimonial-card {
  height: 100%;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgb(226 232 240);
  border-radius: 9999px;
  background: #ffffff;
  color: #1e293b;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn:hover:not(:disabled) {
  border-color: rgb(var(--bs-primary-rgb) / 0.35);
  color: var(--bs-primary);
  box-shadow: none;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn:focus-visible {
  outline: 2px solid rgb(var(--bs-primary-rgb) / 0.45);
  outline-offset: 2px;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn--prev {
  left: 0;
}
.planish-site-body .planish-testimonials-section .planish-testimonials-carousel__btn--next {
  right: 0;
}
@media (prefers-reduced-motion: reduce) {
  .planish-site-body .planish-testimonials-section .planish-testimonials-carousel__track {
    transition: none !important;
  }
}



.planish-site-body #blog .planish-blog-article-card-outer {
  position: relative;
  padding-top: 0.45rem;
}
/* Prose ile üstte çifte boşluk: sadece ilk paragraf (genelde) */
.planish-site-body #blog .planish-blog-article-body > p:first-of-type {
  margin-top: 0;
}
.planish-blog-article-intro-band {
  position: relative;
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: none;
  background: #e2e8f0;
}
.planish-blog-article-intro-band__media {
  width: 100%;
  height: clamp(168px, 32vw, 280px);
  position: relative;
  overflow: hidden;
  background: #cbd5e1;
  isolation: isolate;
}
/* Başlık: bant alanında ortada, tüm taraflarda eşit şeffaf iç boşluk */
.planish-blog-article-intro-band__title-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.1vw, 0.72rem);
  box-sizing: border-box;
  padding: clamp(0.75rem, 2.2vw, 1.5rem);
  pointer-events: none;
}
.planish-blog-article-intro-band--with-banner-title h1.planish-display-title {
  text-align: center;
  text-wrap: balance;
  color: #f8fafc;
  max-width: 100%;
  font-size: clamp(1.2rem, 3.4vw, 2.1rem);
  line-height: 1.18;
  text-shadow:
    0 0 1px rgba(15, 23, 42, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 4px 20px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
}
.planish-blog-article-intro-band--with-banner-title h1.planish-display-title::after {
  content: none;
  display: none;
}
/* Hafif buğulu cam: alttaki fotoğrafı buğular (blurdan ayrı; reduced-motion ile de kalkmaz) */
.planish-blog-article-intro-band__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px) saturate(0.95);
  -webkit-backdrop-filter: blur(5px) saturate(0.95);
}
.planish-blog-article-intro-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Metin okunur kalsın; fotoğrafı daha az karart */
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.12) 0%,
    rgba(15, 23, 42, 0.05) 42%,
    rgba(15, 23, 42, 0.2) 100%
  );
  pointer-events: none;
}
.planish-blog-article-intro-band__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transform: translateZ(0);
  filter: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .planish-blog-article-intro-band__media::before {
    display: none;
  }
  .planish-blog-article-intro-band__img {
    filter: blur(2.25px) saturate(0.95);
  }
}
.planish-blog-article-intro-band__img--placeholder {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}
.planish-blog-article-intro-band__tag {
  position: static;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(15, 23, 42, 0.5);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.3rem 0.78rem;
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
  user-select: text;
  -webkit-user-select: text;
}
.planish-blog-article-intro-band__meta {
  position: static;
  z-index: 1;
  max-width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  user-select: text;
  -webkit-user-select: text;
}
.planish-site-body #blog .planish-blog-article__tag {
  display: inline-block;
  max-width: min(20rem, calc(100% - 3rem));
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.5) 0%, transparent 42%),
    linear-gradient(148deg, rgb(255 255 255 / 0.97) 0%, rgb(248 250 252 / 0.92) 100%);
  border: 1px solid rgb(255 255 255 / 0.95);
  box-shadow:
    0 6px 24px rgb(15 23 42 / 0.12),
    0 1px 0 rgb(255 255 255 / 0.92) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.planish-site-body #blog .planish-blog-article__tag--floating {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -42%);
  z-index: 6;
  pointer-events: none;
}

.planish-site-body .planish-blog-article-body p {
  margin-bottom: 1rem;
}
.planish-site-body .planish-blog-article-body h2,
.planish-site-body .planish-blog-article-body h3,
.planish-site-body .planish-blog-article-body h4 {
  font-weight: 700;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.planish-site-body .planish-blog-article-body ul,
.planish-site-body .planish-blog-article-body ol {
  list-style-position: outside;
  margin: 0.5rem 0 1rem;
  padding-left: 1.5rem;
}
.planish-site-body .planish-blog-article-body ul {
  list-style-type: disc;
}
.planish-site-body .planish-blog-article-body ol {
  list-style-type: decimal;
}
.planish-site-body .planish-blog-article-body li {
  display: list-item;
}
.planish-site-body .planish-blog-article-body ul ul {
  list-style-type: circle;
}
.planish-site-body .planish-blog-article-body img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 0.75rem;
  border: 1px solid rgba(203, 213, 225, 0.65);
  box-shadow: none;
  background: #f1f5f9;
  filter: blur(1.15px) saturate(0.97);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.planish-site-body .planish-blog-article-body p img,
.planish-site-body .planish-blog-article-body li img {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.planish-site-body .planish-blog-article-body a {
  color: var(--planish-accent-green);
  text-decoration: underline;
}
.planish-site-body .planish-blog-article-body a:hover {
  color: var(--planish-accent-ink);
  font-weight: 700;
  text-decoration: none;
}
.planish-blog-article-nav-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1rem;
  background: #fff;
  box-shadow: none;
  padding: 0.9rem;
}
.planish-blog-article-nav-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.planish-blog-article-nav-card__category,
.planish-blog-article-nav-card__all {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 9999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  background: #fff;
}
.planish-blog-article-nav-card__category:hover,
.planish-blog-article-nav-card__all:hover,
.planish-blog-article-nav-card__category:focus-visible,
.planish-blog-article-nav-card__all:focus-visible {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.45);
  color: var(--planish-accent-ink);
  font-weight: 800;
}
.planish-blog-article-nav-card__links {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
}
.planish-blog-article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.8rem;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  background: #fff;
}
.planish-blog-article-nav-link:hover,
.planish-blog-article-nav-link:focus-visible {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.35);
  background: rgb(var(--planish-accent-ink-rgb) / 0.05);
}
.planish-blog-article-nav-link:hover .planish-blog-article-nav-link__title,
.planish-blog-article-nav-link:focus-visible .planish-blog-article-nav-link__title {
  color: var(--planish-accent-ink);
  font-weight: 800;
}
.planish-blog-article-nav-link__dir {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
}
.planish-blog-article-nav-link__title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}
.planish-blog-article-nav-link.is-disabled {
  opacity: 0.5;
  background: #f8fafc;
}
@media (max-width: 639.98px) {
  .planish-blog-article-nav-section .planish-blog-article-nav-card {
    padding: 0.65rem 0.75rem 0.45rem;
  }
  .planish-blog-article-nav-section .planish-blog-article-nav-card__top {
    align-items: flex-start;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
  }
  .planish-blog-article-nav-section .planish-blog-article-nav-card__category,
  .planish-blog-article-nav-section .planish-blog-article-nav-card__all {
    padding: 0.3rem 0.62rem;
    font-size: 0.74rem;
    line-height: 1.25;
  }
  .planish-blog-article-nav-section .planish-blog-article-nav-card__links {
    margin-top: 0.5rem;
    margin-bottom: 0;
    gap: 0.45rem;
  }
  .planish-blog-article-nav-section .planish-blog-article-nav-card__links > .planish-blog-article-nav-link:last-child {
    margin-bottom: 0;
  }
  .planish-blog-article-nav-section .planish-blog-article-nav-link {
    padding: 0.55rem 0.65rem;
  }
  .planish-blog-other-posts-section .planish-blog-carousel--nav-below .planish-blog-carousel__viewport {
    padding-top: 0.35rem;
    padding-bottom: 0.65rem;
  }
}
@media (min-width: 640px) {
  .planish-blog-article-nav-card {
    padding: 1rem;
  }
  .planish-blog-article-nav-card__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Sadece önceki veya sadece sonraki: tek hücre tam genişlik */
  .planish-blog-article-nav-card__links > .planish-blog-article-nav-link:only-child {
    grid-column: 1 / -1;
  }
}

body.planish-site-body #blogLoadMoreBtn:hover,
body.planish-site-body #blogLoadMoreBtn:focus-visible {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.35) !important;
  color: var(--planish-accent-ink) !important;
  font-weight: 700 !important;
}


body.planish-marketing-auth-body {
  overflow-x: clip;
  --planish-footer-wave-h: 5rem;
  background-color: #f8fafc !important;
  background-image: none !important;
  color: var(--bs-body-color, #495057);
  font-family: var(--app-font-family-museo);
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 400;
}
@media (min-width: 640px) {
  body.planish-marketing-auth-body {
    --planish-footer-wave-h: 7rem;
  }
}
body.planish-marketing-auth-body .font-hero {
  font-family: var(--app-font-hero);
  letter-spacing: -0.02em;
}
body.planish-marketing-auth-body .hero-stack {
  position: relative;
  z-index: 1;
  background-color: #fafaf9 !important;
  background-image:
    radial-gradient(ellipse 110% 75% at 50% -25%, rgb(54 184 66 / 0.055) 0%, transparent 52%),
    radial-gradient(ellipse 85% 60% at 100% 12%, rgb(120 113 108 / 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #fafaf9 0%, #f4f4f5 40%, #f4f4f5 70%, #fafaf9 100%) !important;
  background-size: auto, auto, auto !important;
  background-repeat: no-repeat, no-repeat, no-repeat !important;
  background-position: center top, center top, 0 0 !important;
}

body.planish-marketing-auth-body .hero-stack.marketing-auth-hero-fill {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 5.5rem);
  min-height: calc(100vh - 5.5rem);
  
  padding-bottom: var(--planish-footer-wave-h);
}

body.planish-site-body .planish-blog-main {
  padding-bottom: var(--planish-footer-wave-h);
}

body.planish-site-body .planish-blog-main #blog {
  padding-bottom: 1.5rem;
}
@media (min-width: 640px) {
  body.planish-site-body .planish-blog-main #blog {
    padding-bottom: 1.75rem;
  }
}
@media (min-width: 1024px) {
  body.planish-site-body .planish-blog-main #blog {
    padding-bottom: 2rem;
  }
}
body.planish-site-body footer#iletisim.planish-site-footer--blog {
  margin-top: calc(-1 * var(--planish-footer-wave-h));
  z-index: 2;
}

.planish-blog-sector-toolbar-wrap {
  margin-bottom: clamp(1.6rem, 2.6vw, 2.4rem) !important;
  position: relative;
  z-index: 40;
}
.planish-blog-sector-toolbar-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 1.0625rem;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  padding: 0;
}
.planish-blog-sector-toolbar-card::before {
  display: none;
}
.planish-blog-sector-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin: 0.25rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(226, 232, 240, 0.55);
  background: rgba(255, 255, 255, 0.48);
}
.planish-blog-sector-toolbar__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.05rem 1.2rem 1.05rem 1.25rem;
}
.planish-blog-sector-toolbar__meta-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.planish-blog-sector-toolbar__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.05rem 1.05rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.5) 0%, rgb(248 250 252 / 0.4) 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.72);
}
.planish-blog-sector-toolbar__all {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 9999px;
  padding: 0.42rem 0.88rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  background: #fff;
  text-decoration: none;
}
.planish-blog-sector-toolbar__all:hover:not(.is-active),
.planish-blog-sector-toolbar__all:focus-visible:not(.is-active) {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.45);
  color: var(--planish-accent-ink);
  font-weight: 800;
}
.planish-blog-sector-toolbar__all.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}
.planish-blog-sector-toolbar__current {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}
.planish-blog-sector-toolbar__current.is-muted {
  color: #64748b;
  font-weight: 500;
}
.planish-blog-sector-picker {
  position: relative;
  z-index: 80;
}
.planish-blog-sector-picker__summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 9999px;
  padding: 0.42rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  background: #fff;
}
.planish-blog-sector-picker__summary::-webkit-details-marker {
  display: none;
}
.planish-blog-sector-picker__summary:hover,
.planish-blog-sector-picker__summary:focus-visible {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.45);
  color: var(--planish-accent-ink);
  font-weight: 800;
}
.planish-blog-sector-picker[open] .planish-blog-sector-picker__summary {
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.35);
  color: var(--planish-accent-ink);
  font-weight: 800;
}
.planish-blog-sector-picker__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: min(34rem, 90vw);
  max-width: min(40rem, 92vw);
  max-height: 17rem;
  overflow: auto;
  border-radius: 0.95rem;
  border: 1px solid #d7dee8;
  background: #fff;
  box-shadow: none;
  padding: 0.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  z-index: 120;
}
.planish-blog-sector-picker__item {
  border-radius: 0.65rem;
  padding: 0.48rem 0.56rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  line-height: 1.32;
}
.planish-blog-sector-picker__item:hover {
  background: #f8fafc;
  color: var(--planish-accent-ink);
  font-weight: 700;
}
.planish-blog-sector-picker__item.is-active {
  background: rgb(var(--planish-accent-green-rgb) / 0.11);
  color: var(--planish-accent-green);
}
@media (max-width: 767.98px) {
  .planish-blog-sector-toolbar-card {
    border-radius: 1.0625rem;
  }
  .planish-blog-sector-toolbar__meta {
    padding: 0.9rem 0.85rem 0.85rem;
  }
  .planish-blog-sector-toolbar__actions {
    width: 100%;
    padding: 0.8rem 0.85rem 0.9rem;
    justify-content: space-between;
  }
}
@media (min-width: 640px) {
  .planish-blog-sector-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(11.5rem, 15.5rem);
  }
  .planish-blog-sector-toolbar__actions {
    border-top: 0;
    border-left: 1px solid rgba(226, 232, 240, 0.72);
    padding: 1.05rem 1rem;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .planish-blog-sector-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 17rem);
  }
  .planish-blog-sector-toolbar__meta {
    padding: 1.15rem 1.35rem 1.15rem 1.5rem;
  }
}
body.planish-marketing-auth-body .planish-site-footer {
  margin-top: calc(-1 * var(--planish-footer-wave-h));
  
  z-index: 2;
}
body.planish-marketing-auth-body .hero-stack.marketing-auth-hero-fill > section.relative {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 18rem;
}
body.planish-marketing-auth-body .hero-stack.marketing-auth-hero-fill > section.relative > .marketing-hero-split {
  flex: 1 1 auto;
  align-items: flex-start;
  justify-items: stretch;
  width: 100%;
}

body.planish-marketing-auth-body .marketing-hero-split > .relative.order-1 {
  display: flex;
  justify-content: center;
}

body.planish-marketing-auth-body .marketing-hero-split .marketing-auth-form-card {
  box-sizing: border-box;
  width: 100%;
  max-width: min(48rem, 100%) !important;
  margin-inline: auto;
  flex: 0 1 auto;
}

/* Giriş/kayıt mockup sütunu kaldırıldı; önbellekteki eski işaretlemeyi gösterme */
body.planish-marketing-auth-body .hero-device-wrap,
body.planish-marketing-auth-body .hero-device-stack,
body.planish-marketing-auth-body .hero-device-stack-inner,
body.planish-marketing-auth-body .hero-device-duo,
body.planish-marketing-auth-body .hero-device-stack-desktop,
body.planish-marketing-auth-body .hero-device-stack-phone,
body.planish-marketing-auth-body .hero-device-duo__desktop,
body.planish-marketing-auth-body .hero-device-duo__phone {
  display: none !important;
}
@media (max-width: 1023px) {
  body.planish-marketing-auth-body .hero-stack.marketing-auth-hero-fill {
    min-height: calc(100svh - 4.5rem);
    min-height: calc(100vh - 4.5rem);
  }
}


.auth-lang-dropdown .dropdown-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.auth-lang-dropdown .dropdown-menu:not(.show) {
  display: none !important;
}
.auth-lang-dropdown .dropdown-menu.show {
  display: block !important;
}
.auth-lang-dropdown .dropdown-item {
  list-style: none;
}
.auth-lang-dropdown .dropdown-item.active,
.auth-lang-dropdown .dropdown-item:active {
  background-color: var(--bs-primary);
  color: #fff;
}
.hero-wave-divider {
  display: block;
  width: calc(100% + 4px);
  max-width: none;
  height: 2.25rem;
  margin-left: -2px;
}
@media (min-width: 640px) {
  .hero-wave-divider { height: 2.75rem; }
}
@media (min-width: 1024px) {
  .hero-wave-divider { height: 3.25rem; }
}
.doodle-deco,
.deco-scatter { pointer-events: none; position: absolute; }
#headerFixedMount { transition: none; }
.sss-above-straddle {
  min-height: calc(min(56rem, calc(100% - 3rem)) * 9 / 32 + 2.75rem);
}
.sss-video-straddle {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 3rem), 56rem);
  z-index: 20;
}
#sss .sss-video-straddle > .relative.rounded-app {
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgb(var(--bs-primary-rgb) / 0.18);
}
.sss-below-straddle {
  padding-top: calc(min(56rem, calc(100% - 3rem)) * 9 / 32 + 2rem);
}
.feature-icon-cell {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--bs-border-radius, 6px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.group:hover .feature-icon-cell {
  transform: translateY(-2px);
}
.feature-icon-cell svg {
  width: 1.85rem;
  height: 1.85rem;
  color: var(--bs-body-color, #495057);
}
@media (min-width: 640px) {
  .feature-icon-cell { width: 4.75rem; height: 4.75rem; }
  .feature-icon-cell svg { width: 2rem; height: 2rem; }
}
.strategy-icon-box {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: var(--bs-border-radius, 6px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strategy-icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--bs-body-color, #495057);
}
@media (min-width: 640px) {
  .strategy-icon-box {
    width: 4rem;
    height: 4rem;
  }
  .strategy-icon-box svg { width: 1.625rem; height: 1.625rem; }
}
.strategy-randevu-phone {
  width: min(100%, 13.875rem);
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  -webkit-user-select: none;
  user-select: none;
}
@media (min-width: 640px) {
  .strategy-randevu-phone {
    width: min(100%, 14.375rem);
    margin-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .strategy-randevu-phone {
    margin-top: 3rem;
  }
}
.strategy-randevu-shot-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: inherit;
}
.strategy-randevu-shot-wrap img.strategy-randevu-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.strategy-randevu-phone .hero-phone-screen {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.hero-phone-bezel {
  border-radius: inherit;
  padding: 4px;
  overflow: hidden;
  background: #2c2c2e;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
}
@media (max-width: 639.98px) {
  .hero-phone-bezel {
    padding: 5px; 
  }
}
@media (min-width: 640px) {
  .hero-phone-bezel {
    padding: 5px;
  }
}
.hero-phone-screen {
  position: relative;
  border-radius: 2.28rem;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
@media (min-width: 640px) {
  .hero-phone-screen {
    border-radius: 2.48rem;
  }
}
.hero-phone-island {
  position: absolute;
  top: 0.52rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26%;
  min-width: 2.75rem;
  max-width: 4.15rem;
  height: 0.95rem;
  background: linear-gradient(180deg, #121214 0%, #050506 100%);
  border-radius: 9999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 640px) {
  .hero-phone-island {
    top: 0.6rem;
    width: 27%;
    min-width: 2.9rem;
    max-width: 4.35rem;
    height: 1.02rem;
  }
}

.testimonial-card .testimonial-stars,
.testimonial-card footer,
.testimonial-card footer * {
  -webkit-user-select: none;
  user-select: none;
}
.site-header-chrome,
.site-header-chrome a,
.site-header-chrome button {
  -webkit-user-select: none;
  user-select: none;
}

#headerFixedMount,
#headerFixedMount * ,
footer#iletisim,
footer#iletisim * {
  box-sizing: border-box;
}
#headerFixedMount,
footer#iletisim {
  font-family: var(--app-font-family-museo);
}
#headerFixedMount h1,
#headerFixedMount h2,
#headerFixedMount h3,
#headerFixedMount h4,
#headerFixedMount h5,
#headerFixedMount h6,
#headerFixedMount p,
footer#iletisim h1,
footer#iletisim h2,
footer#iletisim h3,
footer#iletisim h4,
footer#iletisim h5,
footer#iletisim h6,
footer#iletisim p {
  margin: 0;
}
footer#iletisim .footer-bottom-row {
  min-height: 3.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  --planish-footer-socket-pad: 1.375rem;
  padding-top: var(--planish-footer-socket-pad);
  padding-bottom: calc(var(--planish-footer-socket-pad) + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 640px) {
  footer#iletisim .footer-bottom-row {
    --planish-footer-socket-pad: 1.5rem;
  }
  footer#iletisim .footer-bottom-row__copy {
    text-align: left;
  }
}
footer#iletisim .footer-bottom-row__copy {
  margin: 0;
  line-height: 1.4;
  text-align: left;
  min-width: 0;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  footer#iletisim .footer-bottom-row__copy {
    font-size: 0.9375rem;
  }
}
footer#iletisim .footer-bottom-row__iyzico,
footer#iletisim .footer-iyzico-band__img {
  -webkit-user-select: none;
  user-select: none;
}
footer#iletisim .footer-iyzico-band__img {
  height: auto;
  max-height: 2.35rem;
  max-width: min(18rem, 78vw);
  object-fit: contain;
  object-position: right center;
  -webkit-user-drag: none;
}
@media (min-width: 640px) {
  footer#iletisim .footer-iyzico-band__img {
    max-height: 2.85rem;
    max-width: 20rem;
  }
}
@media (min-width: 1024px) {
  footer#iletisim .footer-bottom-row__iyzico {
    transform: translateX(-1.45rem);
  }
}


footer#iletisim .planish-footer-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.625rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid #fff;
  background: #f8fafc;
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    outline 0.18s ease,
    outline-offset 0.18s ease;
}
footer#iletisim a.planish-footer-phone-pill {
  outline: none;
}
footer#iletisim .planish-footer-phone-pill__icon {
  flex-shrink: 0;
  display: block;
  color: #0f172a;
  transition: color 0.18s ease;
}
footer#iletisim .planish-footer-phone-pill__num {
  transition: color 0.18s ease;
}
footer#iletisim a.planish-footer-phone-pill:hover,
footer#iletisim a.planish-footer-phone-pill:focus-visible {
  background: #f1f5f9;
  border: 1px solid #fff;
  color: #0f172a;
  box-shadow: none;
  
  outline: 1px solid #fff;
  outline-offset: 4px;
}
footer#iletisim a.planish-footer-phone-pill:hover .planish-footer-phone-pill__icon,
footer#iletisim a.planish-footer-phone-pill:focus-visible .planish-footer-phone-pill__icon {
  color: #0f172a;
}


#topContactStrip .planish-footer-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.625rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(74, 222, 128, 0.42);
  background: linear-gradient(
    165deg,
    rgba(34, 197, 94, 0.28) 0%,
    rgba(22, 163, 74, 0.2) 48%,
    rgba(21, 128, 61, 0.22) 100%
  );
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease;
}
#topContactStrip .planish-footer-phone-pill__icon {
  flex-shrink: 0;
  display: block;
  color: #bbf7d0;
  transition: color 0.18s ease;
}
#topContactStrip .planish-footer-phone-pill__num {
  transition: color 0.18s ease;
}
#topContactStrip a.planish-footer-phone-pill:hover,
#topContactStrip a.planish-footer-phone-pill:focus-visible {
  background: #a7f3d0;
  border-color: #6ee7b7;
  color: #0f172a;
  box-shadow: none;
}
#topContactStrip a.planish-footer-phone-pill:hover .planish-footer-phone-pill__icon,
#topContactStrip a.planish-footer-phone-pill:focus-visible .planish-footer-phone-pill__icon {
  color: #0f172a;
}
#topContactStrip a.planish-footer-phone-pill:focus-visible {
  outline: 2px solid #34d399;
  outline-offset: 2px;
}
footer#iletisim .planish-footer-phone-pill--static {
  pointer-events: none;
}


.planish-contact-strip {
  background: transparent;
  border-bottom: none;
}

#topContactStrip,
#topContactStrip .planish-contact-strip__inner,
#topContactStrip .planish-contact-strip__row {
  background: transparent !important;
}
#topContactStrip .planish-contact-strip__phone {
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155 !important;
  text-decoration: none !important;
  transition: color 0.18s ease;
}
#topContactStrip .planish-contact-strip__phone-icon {
  flex-shrink: 0;
  color: #22c55e;
}
#topContactStrip .planish-contact-strip__phone:hover,
#topContactStrip .planish-contact-strip__phone:focus-visible {
  color: #15803d !important;
}
#topContactStrip .planish-contact-strip__phone:hover .planish-contact-strip__phone-icon,
#topContactStrip .planish-contact-strip__phone:focus-visible .planish-contact-strip__phone-icon {
  color: #16a34a;
}
#topContactStrip .planish-contact-strip__phone:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 3px;
  border-radius: 4px;
}
.planish-contact-strip__or {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #94a3b8;
  padding: 0 0.35rem;
  margin-inline: 0;
}
.planish-contact-strip__email {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.18s ease;
}
.planish-contact-strip__email:hover,
.planish-contact-strip__email:focus-visible {
  color: var(--bs-primary) !important;
}

#topContactStrip .planish-contact-strip__callback.planish-top-strip-callback {
  border-radius: 9999px !important;
  border-width: 1px !important;
  padding: 0.18rem 0.6rem !important;
  line-height: 1.25 !important;
  min-height: 0 !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  background-color: #fff !important;
  border-color: #22c55e !important;
  color: #15803d !important;
  box-shadow: none !important;
}
#topContactStrip .planish-contact-strip__callback.planish-top-strip-callback:hover,
#topContactStrip .planish-contact-strip__callback.planish-top-strip-callback:focus-visible {
  background-color: #22c55e !important;
  border-color: #16a34a !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: translateY(-1px);
}
#topContactStrip .planish-contact-strip__callback.planish-top-strip-callback:active {
  background-color: #16a34a !important;
  border-color: #15803d !important;
  color: #fff !important;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  #topContactStrip .planish-contact-strip__callback.planish-top-strip-callback:hover,
  #topContactStrip .planish-contact-strip__callback.planish-top-strip-callback:focus-visible {
    transform: none;
  }
}
#headerFixedMount ul,
#headerFixedMount ol,
footer#iletisim ul,
footer#iletisim ol {
  margin: 0;
  padding: 0;
}
#headerFixedMount button,
footer#iletisim button,
footer#iletisim input {
  font: inherit;
}

#siteHeader.site-header-chrome {
  background-color: rgba(255, 255, 255, 0.62) !important;
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.85) inset !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 1.0625rem !important;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}
#siteHeader.site-header-chrome > div {
  background-color: rgba(255, 255, 255, 0.48) !important;
  border: 1px solid rgba(226, 232, 240, 0.55) !important;
  border-radius: 0.875rem !important;
}


#siteHeader .app-brand-wordmark-link {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
#siteHeader .app-brand-wordmark-link--header {
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  max-width: 100%;
}
#siteHeader .app-brand-wordmark-link:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
  border-radius: 2px;
}
#siteHeader .app-brand-wordmark {
  font-family: var(--app-font-logo-wordmark) !important;
  font-weight: 700;
  color: var(--bs-primary);
  line-height: 1.05;
  letter-spacing: -0.02em;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: inline-block;
  pointer-events: none;
}
#siteHeader .app-brand-wordmark-link .app-brand-wordmark {
  pointer-events: none;
}
#siteHeader .app-brand-wordmark--header {
  font-size: clamp(1.42rem, 3.2vw, 1.92rem);
  padding: 0;
  letter-spacing: -0.03em;
  text-shadow: none;
}
body[data-accent-theme="default"] #siteHeader .app-brand-wordmark,
body[data-accent-theme="planish_new"] #siteHeader .app-brand-wordmark {
  color: #000 !important;
}
#siteHeader .app-brand-wordmark-i {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  position: static;
  letter-spacing: inherit;
}
#siteHeader .app-brand-wordmark-i__inner {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  max-width: none;
  width: auto;
  overflow: visible;
  line-height: inherit;
  letter-spacing: inherit;
}
#siteHeader .app-brand-wordmark-i__glyph {
  font: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: inherit;
  display: inline;
  pointer-events: none;
}
#siteHeader .app-brand-wordmark-i__sparkles {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.52em);
  width: 1.05em;
  height: auto;
  aspect-ratio: 205 / 230;
  transform: translate(calc(-50% - 0.055em), 0);
  margin: 0;
  display: block;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}
#siteHeader .app-brand-monogram--header {
  display: none !important;
}


@media (min-width: 992px) {
  #siteHeader .app-brand-wordmark.app-brand-wordmark--header {
    font-size: clamp(1.48rem, 3.05vw, 2.02rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
  }
}


@media (max-width: 991.98px) {
  #siteHeader .app-brand-wordmark-link--header {
    flex-shrink: 0;
    max-width: 100%;
    align-self: center;
    justify-content: flex-start !important;
  }
  body[data-accent-theme="default"] #siteHeader .app-brand-wordmark.app-brand-wordmark--header,
  body[data-accent-theme="planish_new"] #siteHeader .app-brand-wordmark.app-brand-wordmark--header {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-weight: 600;
    white-space: nowrap;
    color: #000 !important;
    text-shadow: none;
  }
}

#mobileNav {
  background-color: rgba(255, 255, 255, 0.92) !important;
}
/* Mobil açık menü: max-height site_header.php embedded’de; burada sadece kaydırma davranışı */
@media (max-width: 767.98px) {
  #mobileNav.planish-mobile-nav-panel.is-open {
    overflow-x: hidden;
    border-bottom-left-radius: 0.875rem;
    border-bottom-right-radius: 0.875rem;
    overscroll-behavior: contain;
  }
}
#menuBtn {
  touch-action: manipulation;
}


#topContactStrip a {
  text-decoration: none !important;
  color: #60697b !important;
}
#topContactStrip a:hover {
  color: var(--bs-primary) !important;
}
#topContactStrip .text-sm {
  line-height: 1.25rem !important;
}
#topContactStrip a {
  line-height: 1.25rem !important;
}
#topContactStrip .planish-contact-strip__email {
  color: #64748b !important;
}
#topContactStrip .planish-contact-strip__email:hover,
#topContactStrip .planish-contact-strip__email:focus-visible {
  color: var(--bs-primary) !important;
}

@media (max-width: 1023px) {
  #topContactStrip .planish-contact-strip__email {
    display: none !important;
  }
  #topContactStrip .planish-contact-strip__row {
    justify-content: center;
  }
  #topContactStrip .planish-contact-strip__actions {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  #topContactStrip .planish-contact-strip__row {
    justify-content: space-between;
  }
  #topContactStrip .planish-contact-strip__actions {
    justify-content: flex-end;
  }
}

#topContactStrip .planish-contact-strip__phone {
  color: #334155 !important;
}
#topContactStrip .planish-contact-strip__phone:hover,
#topContactStrip .planish-contact-strip__phone:focus-visible {
  color: #15803d !important;
}

.site-header-chrome a[href],
#siteHeader.site-header-chrome a[href] {
  text-decoration: none !important;
}


#blog .planish-blog-card.group {
  text-decoration: none !important;
  color: inherit;
}


#blog {
  scroll-margin-top: 6.5rem;
  position: relative;
  z-index: 0;
}



.planish-header-cta-desktop {
  display: none !important;
}
@media (min-width: 768px) {
  .planish-header-cta-desktop.planish-site-header-login {
    display: inline !important;
  }
  .planish-header-cta-desktop.planish-laszlo-why-cta.planish-laszlo-why-cta--header {
    display: inline-flex !important;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .site-header-chrome nav > a.app-brand-wordmark-link {
    flex-shrink: 0;
  }
  /* Üst/alt dış halka simetri: p-1 her yüz; tongue için negatif margin ile yapıştır (padding-bottom:0 asimetri yaratıyordu) */
  /* Hamburger açık: alt border menü — Giriş/Ücretsiz / tongue arasına çizgi düşmesin */
  #headerFixedMount.planish-mobile-nav-menu-open #siteHeader.site-header-chrome {
    border-bottom: 0 !important;
  }
  #headerFixedMount.planish-mobile-nav-menu-open .planish-header-chrome-surface {
    border-bottom: 0;
    overflow: hidden;
  }
  #headerFixedMount.planish-mobile-nav-menu-open .planish-header-mobile-tab__tongue {
    padding-top: 0.4rem;
  }
  /* Tongue wrapper: dış header içinde, iç panelin hemen altında (yukarı çekiş ≈ dış p-1 alt + önceki telafi) */
  /* Dış katman: #siteHeader.site-header-chrome ile aynı değerler (inline ile hizalı) */
  .planish-header-mobile-tab {
    width: 100%;
    box-sizing: border-box;
    margin: -0.3rem auto 0;
    padding: 0 0 0.35rem;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(18px) saturate(1.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: none;
    border-radius: 0 0 1.0625rem 1.0625rem;
    box-shadow: none;
  }
  /* İç: .planish-header-chrome-surface ile aynı */
  .planish-header-mobile-tab__tongue {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 62%;
    max-width: 15.5rem;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0 0 0.875rem 0.875rem;
    background: rgba(255, 255, 255, 0.48) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    backdrop-filter: blur(24px) saturate(1.15);
    border: 1px solid rgba(226, 232, 240, 0.55);
    border-top: none;
    box-shadow: none;
    overflow: hidden;
  }
  .planish-header-mobile-tab__link {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.7rem 0.5rem;
    font-size: clamp(0.7rem, 2.8vw, 0.875rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
    background: transparent !important;
  }
  .planish-header-mobile-tab__link--login,
  .planish-header-mobile-tab__link--login:hover,
  .planish-header-mobile-tab__link--login:focus-visible,
  .planish-header-mobile-tab__link--login:active,
  .planish-header-mobile-tab__link--login.planish-header-mobile-tab__link--active {
    color: #0f172a !important;
  }
  .planish-header-mobile-tab__link--signup,
  .planish-header-mobile-tab__link--signup:hover,
  .planish-header-mobile-tab__link--signup:focus-visible,
  .planish-header-mobile-tab__link--signup:active,
  .planish-header-mobile-tab__link--signup.planish-header-mobile-tab__link--active {
    color: #16a34a !important;
  }
  .planish-header-mobile-tab__link + .planish-header-mobile-tab__link {
    border-left: 1px solid rgba(203, 213, 225, 0.55);
  }
  .planish-header-mobile-tab__link:hover,
  .planish-header-mobile-tab__link:focus-visible,
  .planish-header-mobile-tab__link:active,
  .planish-header-mobile-tab__link--active {
    background: transparent !important;
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .planish-header-mobile-tab__link:hover,
  .planish-header-mobile-tab__link:focus-visible {
    transition: none;
  }
}


.site-header-chrome nav > div.hidden.md\:flex a,
#planishSectorMenuDesktopBtn {
  position: relative;
  color: #60697b !important;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 0.2rem 0 0.45rem;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.site-header-chrome nav > div.hidden.md\:flex a::after,
#planishSectorMenuDesktopBtn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05rem;
  height: 2px;
  border-radius: 9999px;
  
  background: var(--planish-site-nav-underline);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}
.site-header-chrome nav > div.hidden.md\:flex a:hover,
#planishSectorMenuDesktopBtn:hover {
  color: #21252b !important;
}
.site-header-chrome nav > div.hidden.md\:flex a:hover::after,
.site-header-chrome nav > div.hidden.md\:flex a:focus-visible::after,
#planishSectorMenuDesktopBtn:hover::after,
#planishSectorMenuDesktopBtn:focus-visible::after {
  transform: scaleX(1);
}
.site-header-chrome nav > div.hidden.md\:flex a.planish-site-nav-link--active,
#planishSectorMenuDesktopBtn.planish-site-nav-link--active {
  
  color: var(--planish-site-nav-accent) !important;
}
.site-header-chrome nav > div.hidden.md\:flex a.planish-site-nav-link--active::after,
#planishSectorMenuDesktopBtn.planish-site-nav-link--active::after {
  transform: scaleX(1);
  opacity: 1;
}
#planishSectorMenuDesktopBtn svg {
  width: 14px;
  height: 14px;
}
#planishSectorMenuDesktopPanel.planish-sector-menu-desktop-panel {
  top: calc(100% + 1.45rem) !important;
  margin-top: 0 !important;
  width: clamp(38rem, 86vw, 64rem);
  max-width: 96vw;
  min-width: min(38rem, 96vw);
  padding: 0.75rem;
}
#planishSectorMenuDesktopPanel .planish-sector-menu-desktop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 0.4rem;
  align-items: stretch;
}
#planishSectorMenuDesktopPanel .planish-sector-menu-desktop-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  border-radius: 0.65rem;
  padding: 0.5rem 0.6rem;
  line-height: 1.3;
  color: #334155 !important;
  text-decoration: none !important;
}
#planishSectorMenuDesktopPanel .planish-sector-menu-desktop-item::after {
  display: none !important;
}
#planishSectorMenuDesktopPanel .planish-sector-menu-desktop-item:hover {
  background: #f8fafc;
  color: #0f172a !important;
}
#planishSectorMenuDesktopPanel .planish-sector-menu-desktop-item.is-active {
  background: #f1f5f9;
  color: #0f172a !important;
}
#planishSectorMenuDesktopPanel .planish-sector-menu-desktop-item__icon {
  flex: 0 0 auto;
}
#planishSectorMenuDesktopPanel .planish-sector-menu-desktop-item__label {
  display: block;
  min-width: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  font-weight: 600;
}
@media (max-width: 1279.98px) {
  #planishSectorMenuDesktopPanel .planish-sector-menu-desktop-grid {
    grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr));
  }
}
@media (max-width: 991.98px) {
  #planishSectorMenuDesktopPanel.planish-sector-menu-desktop-panel {
    width: min(30rem, 96vw);
    min-width: min(30rem, 96vw);
  }
  #planishSectorMenuDesktopPanel .planish-sector-menu-desktop-grid {
    grid-template-columns: 1fr;
  }
}
#mobileNav a.planish-site-nav-link--active {
  color: var(--planish-site-nav-accent) !important;
}


.planish-site-header-login {
  position: relative;
  text-decoration: none !important;
  transition: color 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
#siteHeader.site-header-chrome .planish-site-header-login:link,
#siteHeader.site-header-chrome .planish-site-header-login:visited,
.site-header-chrome .planish-site-header-login:link,
.site-header-chrome .planish-site-header-login:visited {
  color: #60697b !important;
}
#siteHeader.site-header-chrome .planish-site-header-login:hover,
#siteHeader.site-header-chrome .planish-site-header-login:focus-visible,
#siteHeader.site-header-chrome .planish-site-header-login:active,
.site-header-chrome .planish-site-header-login:hover,
.site-header-chrome .planish-site-header-login:focus-visible,
.site-header-chrome .planish-site-header-login:active {
  color: #21252b !important;
}
.site-header-chrome nav > div.flex > a.planish-site-header-login {
  padding: 0.2rem 0 0.45rem;
}
@media (min-width: 640px) {
  .planish-site-header-login::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05rem;
    height: 2px;
    border-radius: 9999px;
    background: var(--planish-site-nav-underline);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
  }
  .planish-site-header-login:hover::after,
  .planish-site-header-login:focus-visible::after,
  .planish-site-header-login.planish-site-header-login--active::after {
    transform: scaleX(1);
  }
}
#siteHeader.site-header-chrome .planish-site-header-login.planish-site-header-login--active,
.site-header-chrome .planish-site-header-login.planish-site-header-login--active {
  color: var(--planish-site-nav-accent) !important;
}
#mobileNav .planish-site-header-login--mobile.planish-site-header-login--active {
  color: var(--planish-site-nav-accent) !important;
}
#mobileNav .planish-site-header-login--mobile {
  padding-left: 0;
  padding-right: 0;
  width: fit-content;
  max-width: 100%;
}


.site-header-chrome a.rounded-app.bg-primary,
.site-header-chrome a.inline-flex.rounded-app.bg-primary {
  color: #fff !important;
}
.site-header-chrome a.rounded-app.bg-primary:hover,
.site-header-chrome a.inline-flex.rounded-app.bg-primary:hover {
  color: #fff !important;
}


.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header {
  min-width: 0;
  padding: 0.62rem 1.35rem;
  border-radius: 9999px;
  background: #166b1f !important;
  color: #ffffff !important;
  border: 1px solid #166b1f;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: none;
  transition: transform 0.22s ease;
}
.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header:hover,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header:hover,
.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header:focus-visible,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header:focus-visible {
  background: #12541a !important;
  border-color: #12541a;
  color: #ffffff !important;
  transform: scale(1.045);
}
.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header .planish-laszlo-why-cta__label,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header .planish-laszlo-why-cta__label {
  padding-right: 0;
}
.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header .planish-laszlo-why-cta__label::after,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header .planish-laszlo-why-cta__label::after {
  content: none;
}
.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header::before,
.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header::after,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header::before,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header::after {
  content: none;
}
.site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header.planish-laszlo-why-cta--header-active,
#mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header.planish-laszlo-why-cta--header-active {
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  .site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header,
  #mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header {
    transition: none;
  }
  .site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header:hover,
  #mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header:hover,
  .site-header-chrome .planish-laszlo-why-cta.planish-laszlo-why-cta--header:focus-visible,
  #mobileNav .planish-laszlo-why-cta.planish-laszlo-why-cta--header:focus-visible {
    transform: none;
  }
}


.planish-site-body section a.rounded-app.bg-primary {
  background-image: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bs-primary) 86%, #ffffff 14%) 0%,
    var(--bs-primary) 100%
  );
  box-shadow: none;
}
.planish-site-body section a.rounded-app.bg-primary:hover {
  background-image: none;
  background-color: var(--planish-primary-hover, #067a97);
  box-shadow: none;
}


#mobileNav a {
  text-decoration: none !important;
  color: #60697b !important;
  font-weight: 600;
}
#mobileNav a:hover {
  color: #21252b !important;
}
#mobileNav a.inline-flex.rounded-app.bg-primary,
#mobileNav a.inline-flex.justify-center.rounded-app.bg-primary {
  color: #fff !important;
}
#mobileNav a.py-2.font-bold.text-slate-600 {
  color: #475569 !important;
}
#mobileNav a.py-2.font-bold.text-slate-600:hover {
  color: var(--bs-primary) !important;
}


footer#iletisim a[href] {
  text-decoration: none !important;
}
footer#iletisim li a[href] {
  color: rgba(255, 255, 255, 0.7) !important;
}
footer#iletisim li a[href]:hover {
  color: #fff !important;
}
footer#iletisim a.text-sm.text-white\/90,
footer#iletisim a[class*="text-white/90"] {
  color: rgba(255, 255, 255, 0.9) !important;
}
footer#iletisim a.text-sm.text-white\/90:hover,
footer#iletisim a[class*="text-white/90"]:hover {
  color: #fff !important;
}
footer#iletisim p a.text-white,
footer#iletisim p a.font-semibold {
  color: #fff !important;
  text-decoration: none !important;
}
footer#iletisim p a.text-white:hover,
footer#iletisim p a.font-semibold:hover {
  text-decoration: underline !important;
}
footer#iletisim a.text-white\/70,
footer#iletisim a[class*="text-white/70"] {
  color: rgba(255, 255, 255, 0.7) !important;
}
footer#iletisim a.text-white\/70:hover,
footer#iletisim a[class*="text-white/70"]:hover {
  color: #fff !important;
}


#iletisim .planish-site-wordmark--footer {
  -webkit-user-select: none;
  user-select: none;
}
#iletisim .planish-site-wordmark--footer.app-brand-wordmark-link--header,
#iletisim .planish-site-wordmark--footer.planish-site-wordmark--footer-static {
  justify-content: flex-start;
  color: #fff;
  cursor: default;
}
#iletisim .planish-site-wordmark--footer .app-brand-wordmark,
#iletisim .planish-site-wordmark--footer .app-brand-wordmark.app-brand-wordmark--header {
  font-family: var(--app-font-logo-wordmark) !important;
  color: #fff !important;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-shadow: none;
}
body[data-accent-theme="default"] #iletisim .planish-site-wordmark--footer .app-brand-wordmark,
body[data-accent-theme="planish_new"] #iletisim .planish-site-wordmark--footer .app-brand-wordmark {
  color: #fff !important;
}
@media (max-width: 991.98px) {
  body[data-accent-theme="default"] #iletisim .planish-site-wordmark--footer .app-brand-wordmark.app-brand-wordmark--header,
  body[data-accent-theme="planish_new"] #iletisim .planish-site-wordmark--footer .app-brand-wordmark.app-brand-wordmark--header {
    color: #fff !important;
    white-space: nowrap;
  }
}
#iletisim .planish-site-wordmark--footer.app-brand-wordmark-link--header:hover .app-brand-wordmark {
  color: rgba(255, 255, 255, 0.9) !important;
}
#iletisim .planish-site-wordmark--footer.app-brand-wordmark-link--header:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 2px;
  border-radius: 2px;
}
#iletisim .planish-site-wordmark--footer .app-brand-wordmark-i {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  position: static;
  letter-spacing: inherit;
}
#iletisim .planish-site-wordmark--footer .app-brand-wordmark-i__inner {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  max-width: none;
  width: auto;
  overflow: visible;
  line-height: inherit;
  letter-spacing: inherit;
}
#iletisim .planish-site-wordmark--footer .app-brand-wordmark-i__glyph {
  font: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: inherit;
  display: inline;
  pointer-events: none;
}
#iletisim .planish-site-wordmark--footer .app-brand-wordmark-i__sparkles {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.52em);
  width: 1.05em;
  height: auto;
  aspect-ratio: 205 / 230;
  transform: translate(calc(-50% - 0.055em), 0);
  margin: 0;
  display: block;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}
#iletisim .planish-site-wordmark--footer .app-brand-monogram--header {
  display: none !important;
}


h1 .planish-site-wordmark--hero.app-brand-wordmark-link--header {
  justify-content: flex-start;
  vertical-align: baseline;
  max-width: 100%;
}
h1 .planish-site-wordmark--hero .app-brand-wordmark,
h1 .planish-site-wordmark--hero .app-brand-wordmark.app-brand-wordmark--header {
  font-family: var(--app-font-logo-wordmark) !important;
  color: var(--bs-primary) !important;
  font-size: clamp(1.58rem, 4.1vw, 2.72rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  padding: 0;
  text-shadow: none;
}
body[data-accent-theme="default"] h1 .planish-site-wordmark--hero .app-brand-wordmark,
body[data-accent-theme="planish_new"] h1 .planish-site-wordmark--hero .app-brand-wordmark {
  color: var(--bs-primary) !important;
}
h1 .planish-site-wordmark--hero .app-brand-wordmark-link:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
  border-radius: 2px;
}
h1 .planish-site-wordmark--hero .app-brand-wordmark-i {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  position: static;
  letter-spacing: inherit;
}
h1 .planish-site-wordmark--hero .app-brand-wordmark-i__inner {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  max-width: none;
  width: auto;
  overflow: visible;
  line-height: inherit;
  letter-spacing: inherit;
}
h1 .planish-site-wordmark--hero .app-brand-wordmark-i__glyph {
  font: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: inherit;
  display: inline;
  pointer-events: none;
}
h1 .planish-site-wordmark--hero .app-brand-wordmark-i__sparkles {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.52em);
  width: 1.05em;
  height: auto;
  aspect-ratio: 205 / 230;
  transform: translate(calc(-50% - 0.055em), 0);
  margin: 0;
  display: block;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}
h1 .planish-site-wordmark--hero .app-brand-monogram--header {
  display: none !important;
}


body.planish-marketing-auth-body #siteHeader a[href],
body.planish-marketing-auth-body #topContactStrip a[href],
body.planish-marketing-auth-body #mobileNav a[href],
body.planish-marketing-auth-body footer#iletisim a[href] {
  text-decoration: none !important;
}

#iletisim .footer-body-pull {
  margin-top: -12px;
}
@media (min-width: 640px) {
  #iletisim .footer-body-pull {
    margin-top: -16px;
  }
}

body.planish-marketing-auth-body #iletisim .footer-body-pull {
  margin-top: -2px;
}
@media (min-width: 640px) {
  body.planish-marketing-auth-body #iletisim .footer-body-pull {
    margin-top: -2px;
  }
}
footer#iletisim h3 {
  font-weight: var(--app-panel-primary-title-font-weight, 700);
  margin-bottom: 1.125rem !important;
}
footer#iletisim .footer-legal-link {
  cursor: pointer;
  font: inherit;
}
footer#iletisim .footer-legal-link:hover {
  color: #fff !important;
}
.footer-legal-modal {
  position: fixed;
  inset: 0;
  
  z-index: 2147483010;
  box-sizing: border-box;
}
.footer-legal-modal:not(.hidden) {
  display: flex;
  align-items: center;
  justify-content: center;
  
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
}
.footer-legal-modal.hidden {
  display: none !important;
}
.footer-legal-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--planish-modal-scrim-bg);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.footer-legal-modal__dialog {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(92vw, 52rem);
  max-height: min(48rem, calc(100vh - 2rem));
  max-height: min(48rem, calc(100svh - 2rem));
  min-height: 0;
  overflow: hidden;
  border-radius: var(--bs-border-radius-lg, 0.4rem);
  background: var(--bs-card-bg, #fff);
  border: 1px solid var(--bs-border-color, #eff2f7);
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.footer-legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: var(--app-modal-header-padding-y, 0.9rem) var(--app-modal-header-padding-x, 1.25rem);
  border-bottom: 1px solid var(--bs-border-color, #eff2f7);
}
.footer-legal-modal__title {
  margin: 0;
  color: var(--planish-accent-ink, #0a0a0a);
  font-weight: var(--app-panel-primary-title-font-weight, 700);
  font-size: 1.05rem;
  line-height: 1.3;
}
.footer-legal-modal__body h1,
.footer-legal-modal__body h2,
.footer-legal-modal__body h3,
.footer-legal-modal__body h4,
.footer-legal-modal__body h5,
.footer-legal-modal__body h6 {
  color: var(--planish-accent-ink, #0a0a0a);
}
.footer-legal-modal__close {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1rem 0.3rem;
}
.footer-legal-modal__close:hover {
  color: #0f172a;
}
.footer-legal-modal__body {
  overflow: auto;
  padding: var(--app-modal-body-padding-top, 1rem) var(--app-modal-body-padding-x, 1.25rem) var(--app-modal-body-padding-bottom, 1.15rem);
}
.planish-legal-sablon-body b,
.planish-legal-sablon-body strong {
  font-weight: 700;
}
.planish-legal-sablon-body h2,
.planish-legal-sablon-body h3,
.planish-legal-sablon-body h4 {
  font-size: 1.05em;
  font-weight: 700;
  margin: 0.75em 0 0.4em;
  line-height: 1.3;
  color: var(--planish-accent-ink, #0a0a0a);
}
.planish-legal-sablon-body p {
  margin: 0.5em 0;
}
.planish-legal-sablon-body p:first-child {
  margin-top: 0;
}
.planish-legal-sablon-body p:last-child {
  margin-bottom: 0;
}


body > .iti--container,
body > .iti.iti--container,
body > .iti__country-container,
body > .iti__country-list {
  z-index: 2147483020 !important;
}
body > .iti--container .iti__country-list,
body > .iti.iti--container .iti__country-list {
  z-index: inherit !important;
}


body.planish-marketing-auth-body #topContactStrip a.planish-footer-phone-pill {
  color: #fff !important;
}
body.planish-marketing-auth-body #topContactStrip a.planish-footer-phone-pill:hover,
body.planish-marketing-auth-body #topContactStrip a.planish-footer-phone-pill:focus-visible {
  color: #0f172a !important;
}
body.planish-marketing-auth-body #topContactStrip .planish-contact-strip__phone-icon {
  color: #22c55e !important;
}


.planish-site-body .planish-top-strip-callback,
.planish-marketing-auth-body .planish-top-strip-callback {
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  border-color: rgb(var(--bs-primary-rgb) / 0.42) !important;
  background-color: #fff !important;
  color: #0c718a !important;
}
@media (min-width: 1280px) {
  .planish-site-body .planish-top-strip-callback:not(.planish-contact-strip__callback),
  .planish-marketing-auth-body .planish-top-strip-callback:not(.planish-contact-strip__callback) {
    font-size: 0.75rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

.planish-site-body .planish-top-strip-callback:hover,
.planish-site-body .planish-top-strip-callback:focus-visible {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: #fff !important;
}
.planish-marketing-auth-body .planish-top-strip-callback:hover,
.planish-marketing-auth-body .planish-top-strip-callback:focus-visible {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
}
.planish-site-body .planish-top-strip-callback:active {
  background-color: var(--planish-primary-hover, #067a97) !important;
  border-color: var(--planish-primary-hover, #067a97) !important;
  color: #fff !important;
}
.planish-marketing-auth-body .planish-top-strip-callback:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #fff !important;
}
.planish-callback-modal .footer-legal-modal__dialog.planish-callback-modal__dialog {
  width: min(92vw, 26rem);
  max-height: min(44rem, calc(100vh - 2rem));
  max-height: min(44rem, calc(100svh - 2rem));
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.planish-callback-modal .footer-legal-modal__header {
  flex-shrink: 0;
}
.planish-callback-modal .planish-callback-kvkk {
  font-size: 0.8125rem;
  line-height: 1.45;
}
.planish-callback-modal .planish-callback-kvkk p:first-child {
  margin-top: 0;
}
.planish-callback-modal .planish-callback-kvkk p:last-child {
  margin-bottom: 0;
}
.planish-callback-modal .planish-callback-kvkk-open {
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--planish-site-nav-accent);
  text-align: inherit;
  text-decoration: none;
  cursor: pointer;
}
.planish-callback-modal .planish-callback-kvkk-open:hover,
.planish-callback-modal .planish-callback-kvkk-open:focus-visible {
  color: #000000;
  outline: none;
  text-decoration: none;
}
.planish-callback-modal .planish-callback-kvkk-confirm .form-check {
  align-items: flex-start;
  gap: 0.5rem;
}

.planish-callback-modal .planish-callback-kvkk-phase-check.form-check {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding-left: 0;
  min-height: 0;
}
.planish-callback-modal .planish-callback-kvkk-phase-check .form-check-input {
  float: none;
  margin-top: 0.05rem;
  margin-left: 0;
  position: static;
}
.planish-callback-modal .planish-callback-kvkk-confirm-text {
  display: inline-block;
  flex: 1 1 auto;
  line-height: 1.35;
  cursor: default;
  user-select: text;
}
.planish-callback-modal #planishCallbackKvkkContinue:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none !important;
}

.planish-callback-modal .footer-legal-modal__body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.planish-callback-modal .planish-callback-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.planish-callback-modal #planishCallbackPhaseForm {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.planish-callback-modal #planishCallbackPhaseKvkk {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.planish-callback-modal #planishCallbackPhaseKvkk.hidden,
.planish-callback-modal #planishCallbackPhaseKvkk[hidden] {
  display: none !important;
}
.planish-callback-modal #planishCallbackPhaseForm.hidden,
.planish-callback-modal #planishCallbackPhaseForm[hidden] {
  display: none !important;
}
.planish-callback-modal #planishCallbackKvkkHeading {
  flex-shrink: 0;
}
.planish-callback-modal .planish-callback-kvkk-scroll {
  flex: 1 1 auto;
  min-height: 0;
  
  max-height: min(56vh, 22rem);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
  .planish-callback-modal .planish-callback-kvkk-scroll {
    max-height: min(58vh, 26rem);
  }
}
.planish-callback-modal .planish-callback-kvkk-confirm {
  flex-shrink: 0;
}

.planish-callback-modal .marketing-auth-form-card {
  min-height: 0;
  max-width: none !important;
}

.planish-callback-modal .planish-callback-form-panel {
  border-radius: 0.75rem;
  border: 1px solid #e6ebf1;
  background: #fcfcfd;
  padding: 0.95rem 1rem 1rem;
  box-shadow: 0 1px 0 rgb(15 23 42 / 0.04);
}
.planish-callback-modal .planish-callback-form-panel .planish-callback-field-gap + .planish-callback-field-gap {
  margin-top: 0.65rem;
}
.planish-callback-modal .planish-callback-form-panel .planish-callback-kvkk-row {
  margin-top: 0.75rem;
  padding-top: 0.35rem;
}
.planish-callback-modal .planish-callback-form-panel .marketing-auth-field-floating,
.planish-callback-modal .planish-callback-form-panel .app-phone-form-floating {
  border-color: #dce3ec;
  background-color: #fff;
  box-shadow: none;
}
.planish-callback-modal .planish-callback-form-panel .app-phone-form-floating {
  position: relative;
  overflow: visible;
}
.planish-callback-modal .planish-callback-form-panel .app-phone-form-floating .js-app-phone {
  display: flex !important;
  align-items: center;
  min-height: calc(3.5rem + 2px);
  padding: 0 0.75rem;
}
.planish-callback-modal .planish-callback-form-panel .app-phone-form-floating .js-app-phone .iti {
  flex: 1 1 auto;
  width: 100%;
}
.planish-callback-modal .planish-callback-form-panel .app-phone-form-floating .js-app-phone-inline-error {
  display: block !important;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.2rem);
  width: auto;
  margin-top: 0 !important;
  text-align: left;
  pointer-events: none;
}
.planish-callback-modal
  .planish-callback-form-panel
  .marketing-auth-field-floating:focus-within:not(:has(.marketing-auth-field-floating__input.is-invalid)),
.planish-callback-modal
  .planish-callback-form-panel
  .app-phone-form-floating:focus-within:not(:has(.js-app-phone-tel.is-invalid)) {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}
.planish-callback-modal .planish-callback-form-panel .planish-callback-kvkk-row--flush {
  border-top: 0;
}

.planish-callback-modal .marketing-auth-form-card .form-check {
  align-items: flex-start;
  gap: 0.5rem;
}
.planish-callback-modal .planish-callback-kvkk-row {
  width: 100%;
  clear: both;
}
.planish-callback-modal .planish-callback-kvkk-inline {
  width: 100%;
}
.planish-callback-modal .planish-callback-kvkk-inline .form-check-input {
  margin-top: 0.08rem;
}
.planish-callback-modal #planishCbKvkkDesc {
  line-height: 1.45;
}
.planish-callback-modal .planish-required-mark {
  color: #ef4444;
  margin-left: 0.22rem;
  margin-right: 0.16rem;
  font-weight: 700;
}

.planish-callback-modal
  .marketing-auth-form-card
  .app-phone-form-floating:not(:focus-within):not(:has(.iti__tel-input:not(:placeholder-shown)))
  .app-phone-form-floating__label {
  padding: 0 0.75rem 0 calc(0.75rem + 3.35rem + 0.5rem);
}
.planish-callback-modal .planish-callback-modal__phone-wrap {
  margin-top: 0.1rem;
}

.planish-callback-modal .planish-callback-submit {
  background-color: #22c55e !important;
  border: 1px solid #16a34a !important;
  color: #fff !important;
  box-shadow: none !important;
}
.planish-callback-modal .planish-callback-submit:hover,
.planish-callback-modal .planish-callback-submit:focus-visible {
  background-color: #16a34a !important;
  border-color: #15803d !important;
  color: #fff !important;
  box-shadow: none !important;
}
.planish-callback-modal .planish-callback-submit:active {
  background-color: #15803d !important;
  border-color: #166534 !important;
}

.planish-callback-modal .planish-callback-modal__phone {
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155 !important;
  text-decoration: none !important;
  transition: color 0.18s ease;
}
.planish-callback-modal .planish-callback-modal__phone-icon {
  flex-shrink: 0;
  color: #22c55e;
}
.planish-callback-modal .planish-callback-modal__phone:hover,
.planish-callback-modal .planish-callback-modal__phone:focus-visible {
  color: #15803d !important;
}
.planish-callback-modal .planish-callback-modal__phone:hover .planish-callback-modal__phone-icon,
.planish-callback-modal .planish-callback-modal__phone:focus-visible .planish-callback-modal__phone-icon {
  color: #16a34a;
}
.planish-callback-modal .planish-callback-modal__phone:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 3px;
  border-radius: 6px;
}
.planish-callback-modal .planish-callback-modal__phone--static {
  cursor: default;
  color: #334155 !important;
}
.planish-callback-modal .planish-callback-modal__phone--static .planish-callback-modal__phone-icon {
  color: #22c55e;
}

@media (min-width: 1024px) {
  footer#iletisim .planish-footer-brand-col {
    justify-self: start;
    max-width: min(28rem, 100%);
    padding-inline-start: 0.75rem;
  }
  footer#iletisim .planish-footer-brand-intro {
    line-height: 1.55;
  }
}


footer#iletisim .planish-footer-container {
  width: 100%;
  max-width: min(92rem, 100%);
}
@media (min-width: 640px) {
  footer#iletisim .planish-footer-container {
    max-width: min(92rem, 100%);
  }
}


footer#iletisim .planish-footer-container.grid {
  row-gap: 2.25rem;
}

footer#iletisim h3 {
  letter-spacing: 0.01em;
}


footer#iletisim .planish-footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.75rem;
  row-gap: 0;
  align-items: start;
}
@media (min-width: 640px) {
  footer#iletisim .planish-footer-nav-grid {
    column-gap: 2rem;
  }
}
footer#iletisim ul.planish-footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer#iletisim ul.planish-footer-nav-list a.planish-footer-nav-link,
footer#iletisim ul.planish-footer-nav-list a.planish-footer-nav-link:link,
footer#iletisim ul.planish-footer-nav-list a.planish-footer-nav-link:visited,
footer#iletisim ul.planish-footer-nav-list a.planish-footer-nav-link.planish-site-nav-link--active {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400 !important;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
footer#iletisim ul.planish-footer-nav-list a.planish-footer-nav-link:hover,
footer#iletisim ul.planish-footer-nav-list a.planish-footer-nav-link:focus-visible {
  color: #ffffff !important;
}

footer#iletisim ul.planish-footer-nav-list button.footer-legal-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400 !important;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
footer#iletisim ul.planish-footer-nav-list button.footer-legal-link:hover,
footer#iletisim ul.planish-footer-nav-list button.footer-legal-link:focus-visible {
  color: #ffffff !important;
}


footer#iletisim .planish-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
footer#iletisim .planish-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
footer#iletisim .planish-footer-contact-item__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.4rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.88);
}
footer#iletisim .planish-footer-contact-item__glyph {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}
footer#iletisim .planish-footer-contact-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}
footer#iletisim .planish-footer-contact-item__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
footer#iletisim .planish-footer-contact-item__value {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  transition: color 0.16s ease;
}

footer#iletisim li a.planish-footer-contact-item__value {
  color: rgba(255, 255, 255, 0.96) !important;
}
footer#iletisim li a.planish-footer-contact-item__value:hover,
footer#iletisim li a.planish-footer-contact-item__value:focus-visible {
  color: #fff !important;
}
footer#iletisim a.planish-footer-contact-item__value:hover {
  color: #fff;
}
footer#iletisim .planish-footer-contact-item__value--break {
  overflow-wrap: anywhere;
  word-break: break-word;
}
footer#iletisim li a[href] {
  transition: color 0.16s ease;
}
footer#iletisim input[type="email"] {
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}
footer#iletisim input[type="email"]::placeholder {
  color: #94a3b8;
}
footer#iletisim input[type="email"]:focus {
  outline: none;
  border-color: rgb(var(--bs-primary-rgb) / 0.55);
  box-shadow: 0 0 0 3px rgb(var(--bs-primary-rgb) / 0.18);
  background-color: #fff;
}
footer#iletisim form button[type="submit"] {
  transition: background-color 0.16s ease, transform 0.12s ease;
}
footer#iletisim form button[type="submit"]:active {
  transform: translateY(1px);
}
@media (max-width: 767px) {
  footer#iletisim .planish-footer-container.grid {
    row-gap: 2rem;
  }
}


@media (max-width: 639.98px) {
  footer#iletisim .footer-body-pull {
    padding-top: calc(2rem + 8px);
    
    padding-bottom: 0;
  }
  
  footer#iletisim .planish-footer-container.grid {
    gap: 1.5rem;
    row-gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  footer#iletisim .planish-footer-mid-2x2 {
    gap: 1.5rem 1.25rem;
    row-gap: 1.5rem;
  }
  footer#iletisim .planish-footer-mid-2x2 > * > h3 {
    margin-top: 0;
  }
  
  footer#iletisim .planish-footer-mid-2x2 > :nth-child(1) {
    order: 1;
  }
  footer#iletisim .planish-footer-mid-2x2 > :nth-child(2) {
    order: 3;
  }
  footer#iletisim .planish-footer-mid-2x2 > :nth-child(3) {
    order: 2;
  }
  footer#iletisim .planish-footer-mid-2x2 > :nth-child(4) {
    order: 4;
  }
  footer#iletisim .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    --planish-footer-socket-pad: 1.15rem;
    padding-top: var(--planish-footer-socket-pad);
    padding-bottom: calc(var(--planish-footer-socket-pad) + env(safe-area-inset-bottom, 0px));
  }
  footer#iletisim .footer-bottom-row__copy {
    width: 100%;
    font-size: 0.8125rem;
    line-height: 1.45;
    text-align: center;
  }
  footer#iletisim .footer-bottom-row__iyzico {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  footer#iletisim .footer-iyzico-band__img {
    max-width: 100%;
    width: auto;
    max-height: 2rem;
    height: auto;
    object-position: left center;
  }
  footer#iletisim .planish-footer-phone-cta {
    margin-top: 1.75rem;
  }
  footer#iletisim a.planish-footer-phone-pill,
  footer#iletisim .planish-footer-phone-pill.planish-footer-phone-pill--static {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 0.55rem 1rem;
    gap: 0.7rem;
  }
}

@media (min-width: 640px) {
  footer#iletisim .planish-footer-mid-2x2 > * {
    order: 0;
  }
}


/* Çerez şeridi açıkken footer altı boşluğu koyu tut (body padding açık zemin çizgisi yapıyordu) */
html.planish-cookie-bar-visible body.planish-site-body footer#iletisim.planish-site-footer::after,
html.planish-cookie-bar-visible body.planish-marketing-auth-body footer#iletisim::after {
  content: "";
  display: block;
  height: var(--planish-cookie-bar-offset, 3.5rem);
  background-color: var(--planish-footer-chrome-bottom);
  background-image: none;
}

/* Çerez bilgilendirme — altta ince siyah şerit + sağ üstte yarı taşan X */
.planish-cookie-bar {
  position: fixed;
  z-index: 50000;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  box-sizing: border-box;
  pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
html body #planishCookieBar.planish-cookie-bar:not(.planish-cookie-bar--hidden) {
  background-color: var(--planish-footer-chrome-bottom);
  background-image: none;
  transition: background-color 0.28s ease;
}
html body #planishCookieBar.planish-cookie-bar:not(.planish-cookie-bar--hidden).planish-cookie-bar--over-footer {
  background-color: transparent !important;
  background-image: none !important;
}
.planish-cookie-bar--hidden {
  display: none !important;
}
.planish-cookie-bar__strip {
  position: relative;
  pointer-events: auto;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding:
    0.72rem max(3.25rem, calc(2.75rem + env(safe-area-inset-right, 0px)))
    0.72rem
    max(0.85rem, env(safe-area-inset-left, 0px));
  color: #fff;
  text-align: left;
  transition: background-color 0.28s ease;
}

/* Açık zemin üstünde: mevcut koyu şerit */
html body #planishCookieBar.planish-cookie-bar:not(.planish-cookie-bar--hidden) .planish-cookie-bar__strip {
  background-color: var(--planish-footer-chrome-bottom) !important;
  background-image: none !important;
}
/* Footer üstünde: footer ile aynı düz ton (gradyan yok) */
html body #planishCookieBar.planish-cookie-bar:not(.planish-cookie-bar--hidden).planish-cookie-bar--over-footer .planish-cookie-bar__strip {
  background-color: var(--planish-cookie-bar-footer-bg, var(--planish-footer-chrome-bottom)) !important;
  background-image: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 992px) {
  .planish-cookie-bar__strip {
    padding-left: max(2.5rem, env(safe-area-inset-left, 0px));
  }
}
.planish-cookie-bar__text {
  margin: 0;
  max-width: none;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}
@media (min-width: 640px) {
  .planish-cookie-bar__text {
    font-size: 0.875rem;
    line-height: 1.45;
  }
}
.planish-cookie-bar__legal-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  cursor: pointer;
  display: inline;
  vertical-align: baseline;
}
.planish-cookie-bar__legal-btn:hover {
  color: #fff;
  opacity: 0.88;
}
.planish-cookie-bar__legal-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
  border-radius: 2px;
}
.planish-cookie-bar__legal-fallback {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.planish-cookie-bar__close {
  position: absolute;
  top: 0;
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

html body #planishCookieBar .planish-cookie-bar__close {
  background-color: var(--planish-footer-chrome-bottom) !important;
  background-image: none !important;
  transition: background-color 0.28s ease, border-color 0.15s ease;
}
html body #planishCookieBar.planish-cookie-bar--over-footer .planish-cookie-bar__close {
  background-color: var(--planish-cookie-bar-footer-bg, var(--planish-footer-chrome-bottom)) !important;
  background-image: none !important;
}

.planish-cookie-bar__close:hover {
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.72);
}
.planish-cookie-bar__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}
.planish-cookie-bar__close-icon {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 300;
  margin-top: -0.05em;
}

/* Tanıtım sitesi: sağ alt iletişim — app header destek dropdown ile aynı yüzey */
.planish-mkt-contact {
  --planish-mkt-contact-launcher-sz: 3.35rem;
  --planish-mkt-contact-launcher-icon-sz: 1.3rem;
  --planish-mkt-contact-panel-w: min(22rem, calc(100vw - 1.25rem));
  --planish-mkt-contact-accent: #166b1f;
  --planish-mkt-contact-launcher-bg: #0a0a0a;
  --planish-mkt-contact-launcher-bg-hover: #171717;
  --planish-mkt-contact-launcher-fg: #ffffff;
  --planish-mkt-contact-launcher-green: #166b1f;
  --planish-mkt-contact-launcher-green-hover: #12541a;
  --planish-mkt-contact-launcher-green-rgb: 22, 107, 31;
  --planish-mkt-contact-launcher-ring: rgba(255, 255, 255, 0.92);
  --planish-mkt-contact-launcher-ring-w: 2px;
  --planish-mkt-contact-footer-offset: 0px;
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(max(1rem, env(safe-area-inset-bottom, 0px)) + var(--planish-mkt-contact-footer-offset, 0px));
  z-index: 2147482000;
  transition: bottom 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: calc(100vw - 2rem);
  pointer-events: none;
  box-sizing: border-box;
}
html.planish-cookie-bar-visible .planish-mkt-contact {
  bottom: calc(1rem + var(--planish-cookie-bar-offset, 0px) + var(--planish-mkt-contact-footer-offset, 0px));
}
@media (prefers-reduced-motion: reduce) {
  .planish-mkt-contact {
    transition: none;
  }
}
.planish-mkt-contact > * {
  pointer-events: auto;
}
.planish-mkt-contact__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--planish-modal-scrim-bg-soft);
  cursor: pointer;
  pointer-events: auto;
}
.planish-mkt-contact__panel {
  position: relative;
  z-index: 1;
  display: none !important;
  flex-direction: column;
  width: var(--planish-mkt-contact-panel-w);
  max-width: calc(100vw - 1.25rem);
  max-height: min(32rem, calc(100vh - 6.5rem - var(--planish-cookie-bar-offset, 0px)));
  overflow: visible;
  padding: 0;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 1rem;
  box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.35);
  transform-origin: bottom right;
}
.planish-mkt-contact__panel[hidden] {
  display: none !important;
}
.planish-mkt-contact--open .planish-mkt-contact__panel {
  display: flex !important;
  animation: planish-mkt-contact-panel-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Mobil: destek paneli yatayda ortada, sağ/sol boşluk eşit */
@media (max-width: 639.98px) {
  .planish-mkt-contact--open {
    left: max(0.625rem, env(safe-area-inset-left, 0px));
    right: max(0.625rem, env(safe-area-inset-right, 0px));
    align-items: center;
    max-width: none;
  }
  .planish-mkt-contact--open .planish-mkt-contact__panel {
    width: 100%;
    max-width: min(22rem, 100%);
    margin-left: auto;
    margin-right: auto;
    transform-origin: bottom center;
  }
}
@keyframes planish-mkt-contact-panel-in {
  from {
    opacity: 0;
    transform: translateY(0.65rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.planish-mkt-contact__panel-inner {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  overflow: hidden;
  padding: 0.55rem 0.85rem 0.65rem;
  border-radius: inherit;
}
.planish-mkt-contact__close {
  position: absolute;
  top: 0;
  right: 0.85rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.planish-mkt-contact__close:hover {
  opacity: 0.92;
  border-color: rgba(15, 23, 42, 0.28);
}
.planish-mkt-contact__close-icon {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 300;
  margin-top: -0.05em;
}
.planish-mkt-contact__panel-head {
  flex-shrink: 0;
  padding: 0.35rem 2rem 0.35rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.planish-mkt-contact__panel-title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.3;
}
.planish-mkt-contact__panel-body {
  min-width: 0;
  overflow-y: auto;
}
.planish-mkt-contact__lead {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
  text-align: start;
}
@media (min-width: 640px) {
  .planish-mkt-contact__lead {
    font-size: 0.875rem;
    line-height: 1.45;
  }
}
.planish-mkt-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.planish-mkt-contact__action {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  background: transparent;
  color: #334155;
  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease;
}
a.planish-mkt-contact__action:hover,
a.planish-mkt-contact__action:focus-visible,
button.planish-mkt-contact__action:hover,
button.planish-mkt-contact__action:focus-visible {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}
.planish-mkt-contact__action-icon {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
}
.planish-mkt-contact__action-icon--phone {
  color: #0d6efd;
}
.planish-mkt-contact__action-icon--wa {
  color: #25d366;
}
.planish-mkt-contact__action-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1 1 auto;
}
.planish-mkt-contact__action-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
}
.planish-mkt-contact__action-sub {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.35;
  color: #64748b;
}
.planish-mkt-contact__launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--planish-mkt-contact-launcher-sz);
  height: var(--planish-mkt-contact-launcher-sz);
  margin: 0;
  padding: 0;
  border: var(--planish-mkt-contact-launcher-ring-w) solid var(--planish-mkt-contact-launcher-ring);
  border-radius: 999px;
  line-height: 0;
  color: var(--planish-mkt-contact-launcher-fg);
  background-color: var(--planish-mkt-contact-launcher-bg);
  background-image: none;
  box-shadow:
    0 14px 32px rgb(0 0 0 / 0.32),
    0 4px 12px rgb(0 0 0 / 0.18);
  cursor: pointer;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.planish-mkt-contact__launcher-icon {
  display: grid;
  place-items: center;
  width: var(--planish-mkt-contact-launcher-icon-sz);
  height: var(--planish-mkt-contact-launcher-icon-sz);
  margin: 0;
  flex-shrink: 0;
  pointer-events: none;
}
.planish-mkt-contact__launcher-svg {
  display: block;
  width: var(--planish-mkt-contact-launcher-icon-sz);
  height: var(--planish-mkt-contact-launcher-icon-sz);
  margin: 0;
  overflow: visible;
}
.planish-mkt-contact__launcher:hover {
  transform: translateY(-2px);
  color: var(--planish-mkt-contact-launcher-fg);
  background-color: var(--planish-mkt-contact-launcher-bg-hover);
  border-color: #ffffff;
  box-shadow:
    0 18px 38px rgb(0 0 0 / 0.36),
    0 6px 16px rgb(0 0 0 / 0.2);
}
.planish-mkt-contact__launcher:active {
  transform: translateY(0) scale(0.97);
  box-shadow:
    0 10px 24px rgb(0 0 0 / 0.28),
    0 3px 10px rgb(0 0 0 / 0.16);
}
/* Footer / koyu zemin: sadece gölge biraz güçlü, border kalınlığı sabit */
.planish-mkt-contact--on-dark .planish-mkt-contact__launcher {
  border-color: #ffffff;
  box-shadow:
    0 16px 36px rgb(0 0 0 / 0.45),
    0 6px 14px rgb(0 0 0 / 0.24);
}
.planish-mkt-contact--on-dark .planish-mkt-contact__launcher:hover {
  box-shadow:
    0 20px 40px rgb(0 0 0 / 0.5),
    0 8px 18px rgb(0 0 0 / 0.28);
}
.planish-mkt-contact--open .planish-mkt-contact__launcher {
  display: none !important;
}
.planish-mkt-contact__launcher:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.planish-mkt-contact__action:focus-visible,
.planish-mkt-contact__close:focus-visible {
  outline: 2px solid var(--planish-mkt-contact-accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .planish-mkt-contact--open .planish-mkt-contact__panel {
    animation: none;
  }
  .planish-mkt-contact__launcher,
  .planish-mkt-contact__launcher:hover,
  .planish-mkt-contact__launcher:active {
    transform: none;
  }
}

.marketing-auth-form-card {
  font-family: var(--app-font-family-museo);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--bs-body-color, #495057);
}
.marketing-auth-form-card h1 {
  font-family: var(--app-font-family-museo);
  font-weight: 700;
  color: #21252b;
  letter-spacing: -0.02em;
  line-height: 1.25;
}


.marketing-auth-form-card .app-phone-form-floating {
  position: relative;
  display: block;
  border: 1px solid #dee2e6;
  border-radius: 0.625rem;
  background-color: #fff;
  min-height: calc(3.5rem + 2px);
  padding: 0;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.marketing-auth-form-card .app-phone-form-floating:focus-within {
  border-color: var(--planish-auth-input-focus-border);
  box-shadow: 0 0 0 0.2rem var(--planish-auth-input-focus-ring);
}
.marketing-auth-form-card .app-phone-form-floating:has(.js-app-phone-tel.is-invalid) {
  border-color: #dc3545;
}
.marketing-auth-form-card .app-phone-form-floating:has(.js-app-phone-tel.is-invalid):focus-within {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.2);
}
.marketing-auth-form-card .app-phone-form-floating__label {
  position: absolute;
  left: 0;
  z-index: 4;
  max-width: calc(100% - 1.5rem);
  margin: 0;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--app-float-label-font-family, inherit);
  font-size: var(--app-float-label-font-size, 0.8125rem);
  font-weight: var(--app-float-label-font-weight, 500);
  letter-spacing: var(--app-float-label-letter-spacing, 0.01em);
  line-height: 1.5;
  color: var(--app-float-label-color, #6c757d);
  -webkit-text-fill-color: var(--app-float-label-color, #6c757d);
  opacity: 1;
  transition:
    opacity 0.2s ease,
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s ease,
    padding 0.2s ease,
    top 0.2s ease;
}
.marketing-auth-form-card .marketing-auth-contact-field .app-phone-form-floating__label {
  font-weight: var(--app-float-label-font-weight, 500);
  font-size: var(--app-float-label-font-size, 0.8125rem);
  color: var(--app-float-label-color, #6c757d);
  -webkit-text-fill-color: var(--app-float-label-color, #6c757d);
}
.marketing-auth-form-card .app-phone-form-floating:not(:focus-within):not(:has(.iti__tel-input:not(:placeholder-shown))) .app-phone-form-floating__label {
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.75rem 0 calc(0.75rem + 3.35rem);
}
.marketing-auth-form-card .app-phone-form-floating:focus-within .app-phone-form-floating__label,
.marketing-auth-form-card .app-phone-form-floating:has(.iti__tel-input:not(:placeholder-shown)) .app-phone-form-floating__label {
  top: 0;
  opacity: var(--app-float-label-floated-opacity, 0.65);
  padding: 1rem 0.75rem 0;
  padding-left: 0.75rem;
  transform: scale(var(--app-float-label-floated-scale, 0.85)) translateY(var(--app-float-label-floated-translate-y, -0.65rem)) translateX(var(--app-float-label-floated-translate-x, 0.12rem));
}
.marketing-auth-form-card .app-phone-form-floating:focus-within .app-phone-form-floating__label {
  color: var(--app-float-label-color, #6c757d);
  -webkit-text-fill-color: var(--app-float-label-color, #6c757d);
}
.marketing-auth-form-card .app-phone-form-floating:has(.js-app-phone-tel.is-invalid) .app-phone-form-floating__label {
  color: #dc3545;
}
.marketing-auth-form-card .app-phone-form-floating:has(.js-app-phone-tel.is-invalid):focus-within .app-phone-form-floating__label {
  color: #dc3545;
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone {
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: calc(3.5rem + 2px);
  padding: 0 0.75rem;
}
.marketing-auth-form-card .app-phone-form-floating:focus-within .js-app-phone,
.marketing-auth-form-card .app-phone-form-floating:has(.iti__tel-input:not(:placeholder-shown)) .js-app-phone {
  align-items: flex-end;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  min-height: calc(3.5rem + 2px);
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}
.marketing-auth-form-card .app-phone-form-floating:focus-within .js-app-phone .iti,
.marketing-auth-form-card .app-phone-form-floating:has(.iti__tel-input:not(:placeholder-shown)) .js-app-phone .iti {
  align-items: center;
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__tel-input,
.marketing-auth-form-card .app-phone-form-floating .js-app-phone input[type="tel"] {
  flex: 1 1 0%;
  width: 1%;
  max-width: 100%;
  min-width: 6rem;
  min-height: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  padding-left: 3.35rem;
  border: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-sizing: border-box;
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__tel-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__selected-flag {
  display: flex;
  align-items: center;
  align-self: center;
  min-height: 1.65rem;
  border-radius: 0;
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__flag-container {
  display: flex;
  align-items: center;
  align-self: center;
  border-radius: 0;
  left: 0 !important;
  right: auto !important;
  inset-inline-start: 0 !important;
  inset-inline-end: auto !important;
  pointer-events: none !important;
  border: 0 !important;
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__country-container,
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__selected-country,
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__selected-country-primary {
  left: 0 !important;
  right: auto !important;
  inset-inline-start: 0 !important;
  inset-inline-end: auto !important;
}
.marketing-auth-form-card .app-phone-form-floating .js-app-phone .iti__arrow {
  border-top-color: #6c757d;
  opacity: 0;
}
.marketing-auth-form-card .marketing-auth-contact-field .app-phone-form-floating .js-app-phone .iti__tel-input,
.marketing-auth-form-card .marketing-auth-contact-field .app-phone-form-floating .js-app-phone input[type="tel"] {
  min-width: 0;
}
.marketing-auth-form-card .marketing-auth-contact-row > .marketing-auth-contact-field {
  min-width: 0;
}
.marketing-auth-form-card .marketing-auth-contact-row .app-phone-form-floating {
  width: 100%;
  max-width: 100%;
}

.marketing-auth-form-card .marketing-auth-field-floating {
  position: relative;
  display: block;
  border: 1px solid #dee2e6;
  border-radius: 0.625rem;
  background-color: #fff;
  min-height: calc(3.5rem + 2px);
  padding: 0;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.marketing-auth-form-card .marketing-auth-field-floating:focus-within {
  border-color: var(--planish-auth-input-focus-border);
  box-shadow: 0 0 0 0.2rem var(--planish-auth-input-focus-ring);
}
.marketing-auth-form-card .marketing-auth-field-floating:has(.marketing-auth-field-floating__input.is-invalid) {
  border-color: #dc3545;
}
.marketing-auth-form-card .marketing-auth-field-floating:has(.marketing-auth-field-floating__input.is-invalid):focus-within {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.2);
}
.marketing-auth-form-card .marketing-auth-field-floating__label {
  position: absolute;
  left: 0;
  z-index: 4;
  max-width: calc(100% - 1.5rem);
  margin: 0;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--app-float-label-font-family, inherit);
  font-size: var(--app-float-label-font-size, 0.8125rem);
  font-weight: var(--app-float-label-font-weight, 500);
  letter-spacing: var(--app-float-label-letter-spacing, 0.01em);
  line-height: 1.5;
  color: var(--app-float-label-color, #6c757d);
  -webkit-text-fill-color: var(--app-float-label-color, #6c757d);
  opacity: 1;
  transition:
    opacity 0.2s ease,
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s ease,
    padding 0.2s ease,
    top 0.2s ease;
}
.marketing-auth-form-card
  .marketing-auth-field-floating:not(:focus-within):not(:has(.marketing-auth-field-floating__input:not(:placeholder-shown))):not(.js-auth-floating-filled):not(:has(.marketing-auth-field-floating__input:-webkit-autofill)):not(:has(.marketing-auth-field-floating__input:autofill))
  .marketing-auth-field-floating__label {
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.75rem;
}
.marketing-auth-form-card .marketing-auth-field-floating:focus-within .marketing-auth-field-floating__label,
.marketing-auth-form-card
  .marketing-auth-field-floating:has(.marketing-auth-field-floating__input:not(:placeholder-shown))
  .marketing-auth-field-floating__label,
.marketing-auth-form-card
  .marketing-auth-field-floating:has(.marketing-auth-field-floating__input:-webkit-autofill)
  .marketing-auth-field-floating__label,
.marketing-auth-form-card
  .marketing-auth-field-floating:has(.marketing-auth-field-floating__input:autofill)
  .marketing-auth-field-floating__label,
.marketing-auth-form-card .marketing-auth-field-floating.js-auth-floating-filled .marketing-auth-field-floating__label {
  top: 0;
  opacity: var(--app-float-label-floated-opacity, 0.65);
  padding: 1rem 0.75rem 0;
  transform: scale(var(--app-float-label-floated-scale, 0.85)) translateY(var(--app-float-label-floated-translate-y, -0.65rem)) translateX(var(--app-float-label-floated-translate-x, 0.12rem));
}
.marketing-auth-form-card .marketing-auth-field-floating:focus-within .marketing-auth-field-floating__label {
  color: var(--app-float-label-color, #6c757d);
  -webkit-text-fill-color: var(--app-float-label-color, #6c757d);
}
.marketing-auth-form-card .marketing-auth-field-floating:has(.marketing-auth-field-floating__input.is-invalid) .marketing-auth-field-floating__label {
  color: #dc3545;
}
.marketing-auth-form-card .marketing-auth-field-floating__input {
  display: block;
  width: 100%;
  min-height: calc(3.5rem + 2px);
  margin: 0;
  padding: 1.05rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  appearance: none;
}
.marketing-auth-form-card .marketing-auth-field-floating:focus-within .marketing-auth-field-floating__input,
.marketing-auth-form-card
  .marketing-auth-field-floating:has(.marketing-auth-field-floating__input:not(:placeholder-shown))
  .marketing-auth-field-floating__input,
.marketing-auth-form-card
  .marketing-auth-field-floating:has(.marketing-auth-field-floating__input:-webkit-autofill)
  .marketing-auth-field-floating__input,
.marketing-auth-form-card
  .marketing-auth-field-floating:has(.marketing-auth-field-floating__input:autofill)
  .marketing-auth-field-floating__input,
.marketing-auth-form-card .marketing-auth-field-floating.js-auth-floating-filled .marketing-auth-field-floating__input {
  padding-top: 1.35rem;
  padding-bottom: 0.5rem;
}
@keyframes marketing-auth-autofill-detect {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.marketing-auth-form-card .marketing-auth-field-floating__input:-webkit-autofill,
.marketing-auth-form-card .marketing-auth-field-floating__input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 99999s ease-out 0s;
  animation-name: marketing-auth-autofill-detect;
  animation-duration: 0.001s;
}
.marketing-auth-form-card .marketing-auth-field-floating__input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.marketing-auth-form-card .form-control,
.marketing-auth-form-card .form-select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid var(--app-modal-form-border-color, #b8c4d2);
  border-radius: var(--bs-border-radius, 6px);
  font-size: 0.9375rem;
  color: var(--bs-body-color, #495057);
  appearance: auto;
}
.marketing-auth-form-card .form-check-input {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  border: 1px solid #cbd5e1;
  border-radius: 0.28rem;
  background: #ffffff;
  box-shadow: none;
  float: none;
  margin-left: 0;
  flex-shrink: 0;
  display: inline-grid;
  place-content: center;
  transition: all 0.16s ease;
}
.marketing-auth-form-card .form-check-input::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  transform: scale(0);
  transition: transform 0.14s ease;
  background: currentColor;
  color: #ffffff;
  clip-path: polygon(14% 52%, 0 67%, 39% 100%, 100% 26%, 85% 11%, 38% 71%);
}
.marketing-auth-form-card .form-check-input:checked {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #ffffff;
  box-shadow: none;
}
.marketing-auth-form-card .form-check-input:checked::after {
  transform: scale(1);
}
.marketing-auth-form-card .form-check-input:focus-visible {
  outline: 1px solid rgb(10 10 10 / 0.4);
  outline-offset: 1px;
}
.marketing-auth-form-card .form-control:focus {
  border-color: rgb(0 0 0 / 0.35);
  box-shadow: 0 0 0 0.11rem rgb(0 0 0 / 0.08);
  outline: none;
}
.marketing-auth-form-card .form-select:focus {
  border-color: rgb(0 0 0 / 0.35);
  box-shadow: 0 0 0 0.11rem rgb(0 0 0 / 0.08);
  outline: none;
}
.marketing-auth-form-card .form-control:hover,
.marketing-auth-form-card .form-select:hover {
  border-color: rgb(0 0 0 / 0.22);
}
body.planish-marketing-auth-body .marketing-auth-form-card .marketing-auth-field-floating:focus-within,
body.planish-marketing-auth-body .marketing-auth-form-card .app-phone-form-floating:focus-within {
  border-color: var(--planish-auth-input-focus-border) !important;
  box-shadow: 0 0 0 0.2rem var(--planish-auth-input-focus-ring) !important;
}

.marketing-auth-form-card .btn-primary,
.marketing-auth-form-card .btn.btn-primary,
.marketing-auth-form-card button.auth-form-submit {
  --bs-btn-bg: #000000;
  --bs-btn-border-color: #000000;
  --bs-btn-hover-bg: #1a1a1a;
  --bs-btn-hover-border-color: #1a1a1a;
  --bs-btn-active-bg: #262626;
  --bs-btn-active-border-color: #262626;
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: none;
}
.marketing-auth-form-card .btn-primary:hover,
.marketing-auth-form-card .btn.btn-primary:hover,
.marketing-auth-form-card button.auth-form-submit:hover {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #fff !important;
}
.marketing-auth-form-card .alert {
  border-radius: var(--bs-border-radius, 6px);
  border-width: 1px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.marketing-auth-form-card .alert-danger {
  background-color: #fde8ec;
  border-color: #f5c2c7;
  color: #842029;
}
.marketing-auth-form-card .alert-warning {
  background-color: #fff8e6;
  border-color: #ffe69c;
  color: #664d03;
}
.marketing-auth-form-card .alert-success {
  background-color: #e8f7ef;
  border-color: #a3cfbb;
  color: #0a3622;
}
.marketing-auth-form-card .text-muted {
  color: #60697b !important;
}
.marketing-auth-form-card a.fw-semibold {
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
}
.marketing-auth-form-card a.fw-semibold:hover {
  color: #0a0a0a;
  text-decoration: none;
}
.marketing-auth-form-card .form-check {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding-left: 0;
}
.marketing-auth-form-card .form-check-label {
  margin-bottom: 0;
  font-weight: 500;
  color: #21252b;
  font-size: 0.8125rem;
  line-height: 1.3;
}
.marketing-auth-form-card .form-label {
  font-weight: 600;
  color: #5c6370;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.marketing-auth-name-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.marketing-auth-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.marketing-auth-category-picker {
  position: relative;
}
.marketing-auth-category-toggle {
  text-align: left;
  cursor: pointer;
}
.marketing-auth-category-picker.is-valid-live .marketing-auth-category-toggle {
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.marketing-auth-category-picker .auth-bizcat-tick {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #0a0a0a;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, visibility 0.16s ease;
}
.marketing-auth-category-picker .auth-bizcat-tick svg {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}
.marketing-auth-category-picker.is-valid-live .auth-bizcat-tick {
  opacity: 1;
  visibility: visible;
}
.marketing-auth-category-toggle .js-bizcat-toggle-label {
  display: block;
  padding-right: 2rem;
}
.marketing-auth-category-toggle .js-bizcat-toggle-label.is-placeholder {
  color: #94a3b8;
}
.marketing-auth-category-panel {
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 0;
  right: 0;
  z-index: 25;
  border: 1px solid #dbe3ef;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: none;
  padding: 0.55rem;
}
.marketing-auth-category-search-wrap {
  padding-bottom: 0.2rem;
}
.marketing-auth-category-list {
  max-height: 12rem;
  overflow-y: auto;
  display: grid;
  gap: 0.22rem;
}
.marketing-auth-category-option {
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 0.55rem;
  padding: 0.5rem 0.62rem;
  font-size: 0.9rem;
  color: #334155;
}
.marketing-auth-category-option:hover {
  background: #f4f4f5;
}
.marketing-auth-category-option.is-selected {
  background: #ebebeb;
  color: #0a0a0a;
  font-weight: 700;
}
.marketing-auth-form-card .auth-bizcat-hint {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.35;
}
.marketing-auth-form-card .auth-pre-submit-note {
  margin-top: 0.15rem;
  margin-bottom: 0.45rem;
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.35;
  color: #64748b;
}
@media (min-width: 576px) {
  .marketing-auth-name-row {
    flex-direction: row;
    align-items: flex-start;
  }
  .marketing-auth-name-row > .marketing-auth-name-field {
    flex: 1 1 0;
    min-width: 0;
  }
  .marketing-auth-contact-row {
    flex-direction: row;
    align-items: flex-start;
  }
  .marketing-auth-contact-row > .marketing-auth-contact-field {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (max-width: 1023.98px) {
  #formRegister .marketing-auth-name-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #formRegister .marketing-auth-name-row > .marketing-auth-name-field {
    flex: 1 1 0;
    min-width: 0;
  }
  #formRegister .marketing-auth-contact-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  #formRegister .marketing-auth-contact-row > .marketing-auth-contact-field,
  #formRegister .marketing-auth-contact-row > .marketing-auth-contact-field > .js-reg-phone-wrap,
  #formRegister .marketing-auth-contact-row > .marketing-auth-contact-field .js-app-phone {
    width: 100%;
  }
}
.marketing-auth-form-card .progress {
  background-color: #e8eef5;
}
.marketing-auth-form-card .progress-bar {
  background-color: #0a0a0a;
}


footer#iletisim h1, footer#iletisim h2, footer#iletisim h3,
footer#iletisim h4, footer#iletisim h5, footer#iletisim h6 {
  font-size: inherit !important;
  font-weight: inherit;
  line-height: inherit;
  margin-top: 0;
  margin-bottom: 0;
}
footer#iletisim h3.font-bold {
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
  footer#iletisim .planish-footer-mid-2x2 > :nth-child(3),
  footer#iletisim .planish-footer-mid-2x2 > :nth-child(4) {
    padding-top: 1.35rem;
  }
}

/* lg+: eşit 1fr/1fr yerine auto + 1fr — sol sütun dar kalınca sağ blok sola yaklaşır */
@media (min-width: 1024px) {
  footer#iletisim .planish-footer-mid-2x2 {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 2rem;
  }
}
@media (min-width: 1280px) {
  footer#iletisim .planish-footer-mid-2x2 {
    column-gap: 2.25rem;
  }
}
footer#iletisim ul,
footer#iletisim ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#iletisim p {
  margin: 0;
}


.auth-form-heading {
  font-family: var(--app-font-hero);
  font-size: 1.625rem;
  font-weight: 800;
  color: #21252b;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
}
.auth-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
body.planish-marketing-auth-body[data-planish-page='404'] .marketing-auth-form-card .auth-heading-row {
  justify-content: center;
}
body.planish-marketing-auth-body[data-planish-page='404'] .marketing-auth-form-card .auth-heading-text-block {
  text-align: center;
}
body.planish-marketing-auth-body[data-planish-page='404'] .marketing-auth-form-card h1.planish-404-heading {
  font-family: var(--app-font-hero);
  font-weight: 800;
  color: #21252b;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-align: center;
  width: 100%;
  font-size: clamp(3.5rem, min(22vw, 22vmin), 8rem);
}
@media (min-width: 1024px) {
  body.planish-marketing-auth-body[data-planish-page='404'] .marketing-auth-form-card h1.planish-404-heading {
    font-size: clamp(4.5rem, min(15vw, 12rem), 9rem);
  }
}
.auth-heading-progress {
  min-width: 7.25rem;
  width: 8.5rem;
}
.auth-heading-progress-track {
  position: relative;
  height: 0.45rem;
  border-radius: 9999px;
  background: #e8eef5;
  overflow: hidden;
}
.auth-heading-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #0a0a0a;
}
.auth-heading-progress-text {
  display: block;
  margin-top: 0.25rem;
  text-align: right;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 700;
  color: #64748b;
}
.auth-heading-progress.is-complete .auth-heading-progress-fill {
  background: #0a0a0a;
}
.auth-heading-progress.is-complete .auth-heading-progress-text {
  color: #404040;
}


.marketing-auth-form-card .form-control-sm,
.marketing-auth-form-card .form-select-sm {
  min-height: auto;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.9375rem !important;
  border-radius: 0.65rem !important;
}


.marketing-auth-form-card {
  border-radius: 1.125rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.75);
  box-shadow: none;
  width: 100%;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
}
.marketing-auth-form-card .mb-3 {
  margin-bottom: 0.7rem !important;
}
.marketing-auth-form-card .mb-4 {
  margin-bottom: 0.9rem !important;
}
.marketing-auth-form-card .auth-login-surface {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
}
.marketing-auth-form-card .auth-form-unified {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.marketing-auth-form-card .auth-form-unified.auth-form-login,
.marketing-auth-form-card #formRegister.auth-form-unified,
.marketing-auth-form-card #registerApplicationForm.auth-form-unified {
  flex: 0 0 auto;
}
.marketing-auth-form-card .auth-form-submit-row {
  margin-top: auto !important;
  padding-top: 0.65rem;
}
.marketing-auth-form-card .auth-form-login .auth-form-submit-row,
.marketing-auth-form-card #formRegister .auth-form-submit-row,
.marketing-auth-form-card #registerApplicationForm .auth-form-submit-row {
  margin-top: 0.65rem !important;
  padding-top: 0 !important;
}
.marketing-auth-form-card .auth-form-bottom-link {
  min-height: 1.4rem;
  margin-top: 0.24rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marketing-auth-form-card .auth-form-bottom-link:empty {
  visibility: hidden;
}
.marketing-auth-form-card .auth-live-host {
  position: relative;
}
.marketing-auth-form-card .auth-live-inline-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.marketing-auth-form-card .js-app-phone .iti {
  position: relative;
  width: 100%;
}
.marketing-auth-form-card .js-app-phone .iti input.js-app-phone-tel {
  width: 100% !important;
}
.marketing-auth-form-card .auth-live-tick {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  pointer-events: none;
  box-shadow: none;
  z-index: 3;
}
.marketing-auth-form-card .auth-live-tick svg {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}
.marketing-auth-form-card .auth-live-host.is-valid-live .auth-live-tick {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.marketing-auth-form-card .auth-live-host .form-control,
.marketing-auth-form-card .auth-live-host .form-select {
  padding-right: 2.4rem !important;
}
.marketing-auth-form-card .auth-live-host.is-valid-live .form-control,
.marketing-auth-form-card .auth-live-host.is-valid-live .form-select {
  border-color: #cbd5e1 !important;
  box-shadow: none !important;
}
.marketing-auth-form-card .auth-live-host.is-valid-live .app-phone-form-floating .js-app-phone .iti__tel-input.form-control,
.marketing-auth-form-card .auth-live-host.is-valid-live .app-phone-form-floating .js-app-phone input[type="tel"].form-control {
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  box-shadow: none !important;
}
.marketing-auth-form-card .auth-live-host.is-valid-live .app-phone-form-floating .js-app-phone .iti__tel-input.form-control:focus,
.marketing-auth-form-card .auth-live-host.is-valid-live .app-phone-form-floating .js-app-phone input[type="tel"].form-control:focus,
.marketing-auth-form-card .auth-live-host.is-valid-live .app-phone-form-floating .js-app-phone .iti__tel-input.form-control:focus-visible,
.marketing-auth-form-card .auth-live-host.is-valid-live .app-phone-form-floating .js-app-phone input[type="tel"].form-control:focus-visible {
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.marketing-auth-form-card .auth-live-host.is-valid-live .form-control:focus,
.marketing-auth-form-card .auth-live-host.is-valid-live .form-select:focus {
  border-color: inherit !important;
  box-shadow: none !important;
  outline: none !important;
}
.marketing-auth-form-card .auth-live-host-password .auth-live-tick {
  right: 2.7rem;
}
.marketing-auth-form-card .auth-live-host-password .auth-live-tick svg {
  width: 0.9rem;
  height: 0.9rem;
}
.marketing-auth-form-card .auth-form-login .auth-login-fields {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-start;
}
.marketing-auth-form-card .auth-login-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.marketing-auth-form-card .auth-login-meta-left {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
}
.marketing-auth-form-card .auth-inline-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  font-size: 0.875rem;
  line-height: 1.35;
}
.marketing-auth-form-card .auth-login-meta-link {
  color: #0a0a0a !important;
  text-decoration: none;
  font-weight: 700;
}
.marketing-auth-form-card .auth-login-meta-link:hover,
.marketing-auth-form-card .auth-login-meta-link:focus-visible {
  color: #0a0a0a !important;
  text-decoration: none;
}
.marketing-auth-form-card .auth-login-meta-link-disabled {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: default;
  color: #0a0a0a !important;
}
.marketing-auth-form-card .auth-login-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.marketing-auth-form-card .auth-remember-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  cursor: pointer;
}
.marketing-auth-form-card .auth-remember-label,
.marketing-auth-form-card .auth-forgot-link {
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 700;
}
@media (max-width: 575px) {
  .marketing-auth-form-card {
    min-height: auto;
  }
  .marketing-auth-form-card .auth-form-login .auth-login-fields {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
}
@media (max-width: 1023.98px) {
  body.planish-marketing-auth-body .marketing-auth-form-card .form-control,
  body.planish-marketing-auth-body .marketing-auth-form-card .form-select,
  body.planish-marketing-auth-body .marketing-auth-form-card input,
  body.planish-marketing-auth-body .marketing-auth-form-card select,
  body.planish-marketing-auth-body .marketing-auth-form-card textarea {
    font-size: 16px !important;
  }
}
.marketing-auth-form-card .btn:not(.btn-link):not(.app-auth-pw-toggle),
.marketing-auth-form-card .btn.btn-primary:not(.app-auth-pw-toggle),
.marketing-auth-form-card .auth-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  border-radius: var(--bs-btn-border-radius, 6px) !important;
  border: 1px solid transparent;
  font-size: 0.95rem;
  line-height: 1.1;
  padding: 0.7rem 1rem;
  transition: background-color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, color 0.32s ease;
}
.marketing-auth-form-card .auth-form-submit.is-progress-complete {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
}
.marketing-auth-form-card .auth-form-submit.is-progress-complete:hover {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.marketing-auth-form-card .app-auth-pw-toggle {
  width: auto !important;
  min-height: 0 !important;
  padding: 0 0.55rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #64748b !important;
}
.marketing-auth-form-card .app-auth-pw-toggle:hover,
.marketing-auth-form-card .app-auth-pw-toggle:focus {
  color: #334155 !important;
}
.marketing-auth-form-card .js-password-policy-input-wrap {
  position: relative;
}
.marketing-auth-form-card .js-password-policy-input-wrap .js-password-policy-input {
  padding-right: 4.8rem !important;
}
.marketing-auth-form-card .js-password-policy-input-wrap .app-auth-pw-toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.marketing-auth-form-card .js-password-policy-input-wrap .app-auth-pw-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.marketing-auth-form-card .marketing-auth-field-floating--action .js-password-policy-input-wrap .app-auth-pw-toggle {
  top: 0 !important;
  bottom: 0 !important;
  transform: none !important;
}
.marketing-auth-form-card .password-policy-hints-panel {
  display: block;
  margin-top: 0;
  margin-bottom: 0 !important;
  padding: 0.55rem 0.7rem;
  border: 1px solid #e2ebfb;
  border-radius: 0.72rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  list-style: none;
  opacity: 0;
  transform: translateY(-0.18rem);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.28s ease, margin-top 0.22s ease;
}
.marketing-auth-form-card .password-policy-hints-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  max-height: 12rem;
  margin-top: 0.6rem;
  pointer-events: auto;
}
.marketing-auth-form-card .password-policy-hints-panel .js-pw-hint {
  position: relative;
  margin: 0;
  padding: 0.12rem 0 0.12rem 1.3rem;
  color: #6b82ab;
  font-size: 0.83rem;
  line-height: 1.35;
  font-weight: 500;
  opacity: 1;
  transform: translateY(0);
  max-height: 2rem;
  overflow: hidden;
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.26s ease, padding 0.22s ease;
}
.marketing-auth-form-card .password-policy-hints-panel .js-pw-hint::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 9999px;
  background: #fff;
  border: 2px solid #b3c7ea;
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75);
}
.marketing-auth-form-card .password-policy-hints-panel .js-pw-hint.is-rule-hidden {
  opacity: 0;
  transform: translateY(-0.14rem);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}
.d-none {
  display: none !important;
}
.marketing-auth-form-card .invalid-feedback,
.marketing-auth-form-card .js-app-phone-inline-error,
.marketing-auth-form-card .js-password-policy-submit-err {
  display: block;
  margin-top: 0.12rem !important;
  margin-bottom: 0;
  font-size: 0.72rem !important;
  line-height: 1.2;
  color: #dc2626 !important;
  font-weight: 600;
  min-height: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.26s ease, transform 0.26s ease;
}
.marketing-auth-form-card .invalid-feedback.d-none,
.marketing-auth-form-card .js-password-policy-submit-err.d-none,
.marketing-auth-form-card .js-app-phone-inline-error.d-none {
  display: none !important;
  opacity: 0;
  transform: translateY(-0.12rem);
  visibility: hidden;
}
.marketing-auth-form-card .btn-link:not(.app-auth-pw-toggle) {
  border: 0;
  background: transparent;
  color: #0a0a0a;
  font-weight: 700;
  text-decoration: none;
  padding: 0;
}
.marketing-auth-form-card .btn-link:not(.app-auth-pw-toggle):hover {
  color: #0a0a0a;
  text-decoration: none;
}
.marketing-auth-form-card [data-bs-toggle="modal"] {
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
}
.marketing-auth-form-card [data-bs-toggle="modal"]:hover {
  color: #0a0a0a;
  text-decoration: none;
}
.auth-lang-dropdown .btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--app-modal-form-border-color, #b8c4d2);
  border-radius: var(--bs-btn-border-radius, 6px) !important;
  color: #475569;
  background: rgba(255, 255, 255, 0.96);
  text-decoration: none !important;
}
.auth-lang-dropdown .btn:hover {
  border-color: #c6d2e5;
  color: #334155;
}
.auth-lang-dropdown .dropdown-menu {
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: none;
}
.auth-lang-dropdown .dropdown-item {
  color: #334155;
  text-decoration: none !important;
}
.auth-lang-dropdown .dropdown-item:hover {
  background: #f8fafc;
  color: #1f2937;
}


.app-planish-modal.modal {
  position: fixed;
  inset: 0;
  z-index: 120000;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  padding: 1rem;
}
.app-planish-modal.modal.show {
  display: block;
}
.app-planish-modal .modal-dialog {
  position: relative;
  width: auto;
  max-width: 52rem;
  margin: clamp(1rem, 6vh, 3.5rem) auto;
}
.app-planish-modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: none;
}
.app-planish-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}
.app-planish-modal .modal-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
  color: #1f2937;
}
.app-planish-modal .modal-body {
  padding: 1rem 1.25rem 1.1rem;
  color: #334155;
}
.app-planish-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem 1.1rem;
  border-top: 1px solid #e2e8f0;
}
.app-planish-modal .btn-close {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.app-planish-modal .btn-close:hover {
  color: #0f172a;
}

body.planish-marketing-auth-body .app-planish-modal .btn.btn-primary {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
}
body.planish-marketing-auth-body .app-planish-modal .btn.btn-primary:hover {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #fff !important;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 119900;
  background: var(--planish-modal-scrim-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 1;
}




body.planish-site-body .planish-marketing-intro {
  position: relative;
  isolation: isolate;
  border-radius: var(--planish-radius-2xl);
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.planish-site-body .planish-marketing-intro .planish-section-label {
  box-shadow: none;
}
body.planish-site-body .planish-marketing-intro .doodle-deco {
  opacity: 0.78 !important;
  filter: drop-shadow(0 8px 18px rgb(var(--bs-primary-rgb) / 0.2));
}
body.planish-site-body #fiyatlandirma.border-y {
  border-color: rgb(226 232 240) !important;
}
body.planish-site-body #neden-biz.border-t,
body.planish-site-body #sss.border-t,
body.planish-site-body #blog.border-t,
body.planish-site-body #cta-son.border-t {
  border-color: rgb(226 232 240) !important;
}
body.planish-site-body #sss {
  position: relative;
  isolation: isolate;
}
body.planish-site-body #sss::before {
  display: none;
}
body.planish-site-body #sss .planish-faq-band {
  position: relative;
  z-index: 1;
}


body.planish-site-body #sss.planish-faq-section--laszlo-split.planish-laszlo-band--white {
  background-color: #ffffff !important;
}
@media (min-width: 1024px) {
  
  body.planish-site-body #sss.planish-faq-section--laszlo-split {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split > .planish-laszlo-container {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(7.5rem, 11vh, 10rem) !important;
    padding-bottom: clamp(4.5rem, 8vh, 7rem) !important;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split {
    width: 100%;
    align-items: start;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__sticky {
    position: sticky;
    top: clamp(9.25rem, 18vh, 14rem);
    align-self: start;
    
    padding-top: clamp(3rem, 7vmin, 6rem);
    padding-right: clamp(0.4rem, 1.5vw, 1rem);
    transform: none;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__sticky-motion {
    will-change: transform;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__accordion {
    align-self: start;
  }
}
body.planish-site-body .planish-faq-split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}
@media (min-width: 1024px) {
  body.planish-site-body .planish-faq-split {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    column-gap: clamp(2.75rem, 7vw, 5.5rem);
    align-items: start;
  }
}

body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__intro {
  text-align: center;
}

body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__intro a.text-primary {
  color: #045a72 !important;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__intro a.text-primary:hover,
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__intro a.text-primary:focus-visible {
  color: #033e4f !important;
}
body.planish-site-body .planish-faq-split__eyebrow {
  
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.35;
  text-align: center;
}
body.planish-site-body .planish-faq-split__eyebrow::after {
  content: '';
  display: block;
  width: 3.25rem;
  height: 7px;
  margin: 0.75rem auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 10'%3E%3Cpath fill='none' stroke='%2394a3b8' stroke-width='1.6' stroke-linecap='round' d='M3 7c6-6 12 6 18 0s12 6 18 0 12 6 17 0'/%3E%3C/svg%3E")
    no-repeat center bottom;
  background-size: 100% auto;
  opacity: 0.95;
}
body.planish-site-body .planish-faq-split__display {
  font-size: clamp(2.1rem, 4.8vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
body.planish-site-body .planish-faq-split__mark {
  position: relative;
  z-index: 0;
  display: inline;
  color: #0f172a;
}
body.planish-site-body .planish-faq-split__mark::after {
  content: '';
  position: absolute;
  left: -0.05em;
  right: -0.08em;
  bottom: 0.04em;
  height: 0.44em;
  
  background: linear-gradient(102deg, #8ee598 0%, #4cc95a 48%, #36b842 100%);
  opacity: 0.92;
  z-index: -1;
  border-radius: 0.06em;
  transform: rotate(-0.8deg);
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__accordion {
  border-top: 0;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split {
  border-radius: 0 !important;
  background: transparent !important;
  
  border: none !important;
  border-bottom: none !important;
  box-shadow: 0 1px 0 0 rgb(226 232 240) !important;
  overflow: visible !important;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split::before {
  display: none !important;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split[open] {
  box-shadow: 0 1px 0 0 rgb(226 232 240) !important;
  background: transparent !important;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split:last-of-type,
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split:last-of-type[open],
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split:last-of-type:hover {
  box-shadow: none !important;
}
@media (max-width: 639.98px) {
  body.planish-site-body #sss #sss-list.planish-reveal--stagger.is-visible > .planish-faq-item--split {
    -webkit-transform: none !important;
    transform: none !important;
  }
  /* SSS: mobilde üst/alt boşluk (pt-28 / pb-32 + blog pt-36 fazlaydı) */
  body.planish-site-body #sss.planish-faq-section--laszlo-split > .planish-laszlo-container {
    padding-top: 3.25rem !important;
    padding-bottom: 2.75rem !important;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__intro {
    margin-bottom: 2rem !important;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split {
    gap: 1.5rem;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__display {
    margin-bottom: 1rem !important;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-split__eyebrow {
    margin-bottom: 0.85rem;
  }
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-answer--split {
    padding-bottom: 1.1rem !important;
  }
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark.planish-gorusler-section--pad {
    padding-bottom: 2.25rem !important;
  }
  body.planish-site-body #blog.planish-home-section.planish-laszlo-band {
    padding-top: 3rem !important;
  }
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split:hover {
  transform: none !important;
  box-shadow: none !important;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-summary--split:hover {
  background: transparent !important;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-chevron--split {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: #64748b !important;
  transition: transform 0.2s ease, color 0.2s ease;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-item--split[open] .planish-faq-chevron--split {
  transform: rotate(-180deg);
  background: transparent !important;
  color: #0f172a !important;
}
body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-answer--split {
  margin: 0;
  padding-top: 0;
  padding-bottom: 1.75rem;
  padding-left: calc(2.25rem + 0.75rem);
  border: none !important;
  background: transparent !important;
  color: #475569 !important;
}
@media (min-width: 640px) {
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-answer--split {
    padding-left: calc(2.75rem + 1.25rem);
  }
}


body.planish-site-body .planish-home-section {
  scroll-margin-top: clamp(6.5rem, 15vh, 8.5rem);
}
@media (min-width: 640px) {
  body.planish-site-body .planish-home-section {
    scroll-margin-top: clamp(7.25rem, 16vh, 9.25rem);
  }
}

body.planish-site-body .planish-home-section:not(#cta-son) > .planish-laszlo-container {
  padding-bottom: clamp(2rem, 4.25vw, 3.75rem);
}

body.planish-site-body .planish-marketing-intro .planish-display-title + p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
@media (max-width: 639px) {
  body.planish-site-body .planish-marketing-intro {
    padding-top: 1.35rem;
    padding-bottom: 1.55rem;
    border-radius: var(--planish-radius-xl);
  }
}

#hizmetler.planish-section-services article h3 {
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}
#neden-biz .planish-laszlo-why-card__heading {
  letter-spacing: -0.02em;
}

#hizmetler.planish-section-services {
  position: relative;
  isolation: isolate;
  overflow-x: visible;
}
#hizmetler.planish-section-services::before {
  display: none;
}
#hizmetler.planish-section-services > * {
  position: relative;
  z-index: 1;
}
#hizmetler.bg-surface,
#neden-biz.bg-surface {
  background-color: #f8fafc;
  background-image: none;
}
#neden-biz.bg-surface {
  position: relative;
  isolation: isolate;
}
#neden-biz.bg-surface::before {
  display: none;
}
#neden-biz.bg-surface > .max-w-6xl {
  position: relative;
  z-index: 1;
}
#blog.bg-surface {
  position: relative;
  isolation: isolate;
  background-color: #f1f5f9;
  background-image:
    linear-gradient(to right, rgb(226 232 240 / 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(226 232 240 / 0.45) 1px, transparent 1px);
  background-size: 24px 24px;
}
#blog.bg-surface::before {
  display: none;
}
#blog.bg-surface .planish-blog-section-wrap {
  position: relative;
  z-index: 1;
}
#cta-son.bg-surface {
  position: relative;
  isolation: isolate;
  background-color: #f8fafc;
  background-image: none;
}
#cta-son.bg-surface::before {
  display: none;
}
#hizmetler article.rounded-app {
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
  border-color: rgb(226 232 240) !important;
  background: #ffffff !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (prefers-reduced-motion: no-preference) {
  #hizmetler article.rounded-app:hover {
    transform: translateY(-4px);
    border-color: rgb(var(--bs-primary-rgb) / 0.22) !important;
    background: #ffffff !important;
    box-shadow: none;
  }
}
#hizmetler .feature-icon-cell {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgb(226 232 240) !important;
  background: #f8fafc !important;
  box-shadow: none;
}
@media (prefers-reduced-motion: no-preference) {
  #hizmetler article.rounded-app:hover .feature-icon-cell {
    transform: scale(1.045);
    box-shadow: none;
  }
}
#neden-biz ul.list-none:not(.planish-laszlo-why-list--cards) > li {
  margin-left: 0;
  margin-right: 0;
  padding: 0.85rem 1rem 0.9rem 0.85rem;
  border-radius: var(--planish-radius-lg, 0.875rem);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
#neden-biz ul.list-none:not(.planish-laszlo-why-list--cards) > li:hover {
  background: #ffffff;
  border-color: rgb(203 213 225);
  box-shadow: none;
}
#neden-biz .feature-icon-cell {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgb(226 232 240) !important;
  background: #f8fafc !important;
  box-shadow: none;
}
#neden-biz ul.list-none:not(.planish-laszlo-why-list--cards) > li:hover .feature-icon-cell {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  #hizmetler article.rounded-app:hover {
    transform: none;
  }
  #hizmetler article.rounded-app:hover .feature-icon-cell,
  #neden-biz ul.list-none:not(.planish-laszlo-why-list--cards) > li:hover .feature-icon-cell {
    transform: none;
  }
}

#rakamlar.planish-stats-merge {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.planish-testimonials-section {
  position: relative;
  isolation: isolate;
  background-color: #f8fafc !important;
  background-image: none !important;
}
.planish-testimonials-section::before {
  display: none;
}
.planish-testimonials-section > .max-w-6xl {
  position: relative;
  z-index: 1;
}


/* Dış alan: yanlarla aynı düz renk (#fafafa = planish-laszlo-band--soft). Margin ile üst/alt şeffaf kalıp body rengine kaçıyordu; padding + flow-root. */
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark {
  --planish-gorusler-frame-bg: #fafafa;
  background-color: var(--planish-gorusler-frame-bg) !important;
  background-image: none !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: clamp(0.85rem, 4.5vw, 2.5rem);
  box-sizing: border-box;
  overflow-x: clip;
  overflow-y: visible;
  display: flow-root;
}
/* Bölüm padding’i: üst nefes korunur; alt SSS bandına yaklaşmak için daha dar. */
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark.planish-gorusler-section--pad {
  padding-top: calc(6rem + clamp(0.5rem, 2vw, 1rem)) !important;
  padding-bottom: calc(2.75rem + clamp(0.35rem, 1.4vw, 0.65rem)) !important;
}
@media (min-width: 640px) {
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark.planish-gorusler-section--pad {
    padding-top: calc(7.5rem + clamp(0.5rem, 2vw, 1rem)) !important;
    padding-bottom: calc(3.35rem + clamp(0.35rem, 1.4vw, 0.65rem)) !important;
  }
}
@media (min-width: 1024px) {
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark.planish-gorusler-section--pad {
    padding-top: calc(9rem + clamp(0.5rem, 2vw, 1rem)) !important;
    padding-bottom: calc(4rem + clamp(0.35rem, 1.4vw, 0.65rem)) !important;
  }
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark::before,
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark::after {
  display: none;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark > .planish-laszlo-container {
  position: relative;
  z-index: 2;
  background-color: var(--planish-footer-chrome-base) !important;
  background-image: linear-gradient(
    180deg,
    var(--planish-footer-chrome-top) 0%,
    var(--planish-footer-chrome-mid) 45%,
    var(--planish-footer-chrome-bottom) 100%
  ) !important;
  border: 0;
  border-radius: 1.35rem;
  box-shadow:
    0 16px 48px rgb(0 0 0 / 0.28),
    0 1px 0 rgb(255 255 255 / 0.06) inset;
  margin-block: 0;
  margin-inline: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  overflow: hidden;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card--laszlo-dark {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  
  transform: none;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
  background: rgb(255 255 255 / 0.95);
  border: 1px solid rgb(226 232 240 / 0.92);
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__name {
  font-size: 1rem;
  color: #f8fafc !important;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__role {
  color: rgb(226 232 240 / 0.88) !important;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card {
  box-sizing: border-box;
  
  width: 100%;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
  font-family: var(--app-font-hero, "Museo Sans Rounded", "Museo Sans", system-ui, sans-serif);
  padding: clamp(1.05rem, 2.25vw, 1.7rem) clamp(0.25rem, 1.2vw, 0.65rem) !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  margin-block: 0;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__slide {
  min-height: clamp(23.25rem, 53vh, 38.75rem);
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__quote {
  flex: 1 1 0%;
  min-height: clamp(7.85rem, 19.25vh, 13rem);
  color: #ffffff;
  font-size: clamp(0.84rem, 1.2vw, 1.02rem) !important;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.5;
  max-width: min(53rem, 100%);
  width: 100%;
  margin-top: -0.4rem !important;
  margin-bottom: 0 !important;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  text-align: center;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__meta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: clamp(0.85rem, 2.2vw, 1.35rem);
  padding-right: clamp(0.25rem, 1vw, 9.25rem);
  padding-left: 0;
}

body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonial-card__meta-row {
  min-height: 3.35rem;
  align-items: center;
  margin-top: auto;
  justify-content: flex-start;
  padding-right: calc(2 * 3.35rem + 0.65rem + clamp(0.35rem, 1.5vw, 1.1rem));
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo.planish-testimonials-carousel--no-arrows .planish-testimonial-card__meta-row {
  padding-right: 0;
}

body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonial-card__identity {
  flex: 0 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonial-card__byline {
  flex: 0 1 auto;
  min-width: 0;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonial-card__role {
  margin-top: 0.06rem !important;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonial-stars--laszlo {
  align-self: flex-start;
  margin-top: 0.05rem;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__name {
  font-family: var(--app-font-hero, "Museo Sans Rounded", "Museo Sans", system-ui, sans-serif);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__role {
  font-size: clamp(0.78rem, 1vw, 0.875rem);
  font-weight: 500;
  opacity: 0.92;
  margin-top: 0.2rem !important;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-stars--laszlo {
  flex: 0 0 auto;
  justify-content: flex-start !important;
  margin: 0;
  letter-spacing: 0.02em;
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-stars__star--full {
  color: #ffe066;
  text-shadow:
    0 1px 0 rgb(180 83 9 / 0.42),
    0 0 0.55em rgb(254 240 138 / 0.55);
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-stars__star--empty {
  color: rgb(255 255 255 / 0.4);
}
body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__footer {
  flex: 0 1 auto;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  row-gap: clamp(0.7rem, 2.5vw, 1.5rem);
  padding-top: clamp(1.1rem, 3.1vw, 2.45rem);
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__static-head {
  grid-column: 1;
  grid-row: 1;
  margin: clamp(0.35rem, 1.5vw, 1rem) auto clamp(0.15rem, 0.85vw, 0.55rem);
  padding: 0 clamp(0.75rem, 2.5vw, 1.25rem);
  max-width: min(70rem, 100%);
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-wrap: balance;
  position: relative;
  z-index: 1;
  color: #ffffff;
  -webkit-user-select: none;
  user-select: none;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__static-head .planish-laszlo-split-head__line {
  color: #ffffff;
}

@media (min-width: 640px) {
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__static-head.planish-display-title.planish-laszlo-split-head {
    font-size: clamp(2.45rem, 5.35vw, 4.1rem);
  }
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__subhead {
  margin-top: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: rgb(255 255 255 / 0.88);
  text-transform: none;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__subhead .planish-laszlo-marker-text {
  color: #f8fafc;
  font-weight: 700;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__subhead .planish-testimonials-carousel__subhead-red {
  color: #ef4444 !important;
  font-weight: 700;
}

@media (max-width: 639.98px) {
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__static-head {
    text-wrap: wrap;
  }
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__static-head .planish-laszlo-split-head__line {
    white-space: nowrap;
    font-size: clamp(1.38rem, 4.85vw, 1.95rem);
    letter-spacing: -0.05em;
  }
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__subhead {
    margin-top: 0.7rem;
  }
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__quote {
    margin-top: 0.45rem !important;
    padding-top: 0.5rem;
  }
}
@media (min-width: 640px) {
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__subhead {
    margin-top: 0.45rem;
  }
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__viewport {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  margin-left: auto;
  margin-right: auto;
  
  display: flex;
  flex-direction: column;
}

body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__track {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  flex: 1 1 auto;
  gap: 0 !important;
  will-change: auto;
  transform: none !important;
  
  position: relative;
  min-height: 0;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__slide {
  grid-column: 1;
  grid-row: 1;
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: none !important;
  
  transition: opacity 0.78s cubic-bezier(0.33, 0, 0.2, 1);
  z-index: 0;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__slide:not(.planish-testimonials-carousel__slide--active) {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: auto;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__slide--active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  height: 100%;
  min-height: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__slide--active > blockquote {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__slide {
    transition: none;
  }
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonials-carousel__controls {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: clamp(0rem, 1.2vw, 0.85rem);
  padding-bottom: 0.1rem;
  pointer-events: none;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonials-carousel__controls .planish-testimonials-carousel__btn {
  pointer-events: auto;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__btn {
  position: static !important;
  transform: none !important;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.9);
  background: #ffffff;
  color: #0f172a;
  box-shadow: none;
}
body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__btn:hover:not(:disabled) {
  transform: scale(1.06) !important;
  border-color: rgb(255 255 255 / 0.95);
  color: var(--bs-primary);
}
@media (max-width: 1023px) {
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__slide {
    min-height: clamp(19.25rem, 59vw, 30.75rem);
  }
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonial-card__meta-row {
    min-height: 2.95rem;
    padding-right: calc(2 * 2.95rem + 0.65rem + clamp(0.25rem, 2vw, 0.85rem));
  }
  body.planish-site-body #gorusler.planish-testimonials-carousel--laszlo.planish-testimonials-carousel--no-arrows .planish-testimonial-card__meta-row {
    padding-right: clamp(0.25rem, 3vw, 1rem);
  }
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__meta-row {
    justify-content: flex-start;
  }
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__identity {
    align-items: flex-start;
    flex: 1 1 auto;
  }
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-stars--laszlo {
    justify-content: flex-start !important;
  }
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__footer {
    flex: 0 1 auto;
    justify-content: flex-start;
  }
  body.planish-site-body #gorusler.planish-testimonials-section--laszlo-dark .planish-testimonial-card__byline {
    text-align: left;
  }
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo:not(.planish-testimonials-carousel--no-arrows) .planish-testimonials-carousel__controls {
    padding-right: 0.15rem;
  }
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__btn {
    width: 2.95rem;
    height: 2.95rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #gorusler .planish-testimonials-carousel--laszlo .planish-testimonials-carousel__btn:hover:not(:disabled) {
    transform: none !important;
  }
}

body.planish-site-body #cta-son > div {
  padding: 1.75rem 1.25rem;
  border-radius: var(--planish-radius-2xl);
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (min-width: 640px) {
  body.planish-site-body #cta-son > div {
    padding: 2.25rem 2rem;
  }
}


body.planish-site-body #cta-son {
  position: relative;
  z-index: 0;
  padding-bottom: calc(var(--planish-footer-wave-h, 5rem) + 1.25rem);
}
@media (min-width: 640px) {
  body.planish-site-body #cta-son {
    padding-bottom: calc(var(--planish-footer-wave-h, 7rem) + 1.5rem);
  }
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  #hizmetler article.rounded-app,
  #rakamlar.planish-stats-merge,
  .planish-pricing-free,
  .planish-pricing-card,
  body.planish-site-body #cta-son > div,
  body.planish-site-body #blog .planish-blog-card,
  body.planish-site-body .planish-marketing-intro,
  body.planish-site-body #blog .planish-blog-card__body,
  body.planish-site-body #fiyatlandirma .max-w-6xl > p.text-center.text-sm,
  .planish-site-body .planish-faq-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }
  body.planish-site-body #blog .planish-blog-card__body {
    background: #ffffff !important;
  }
  #neden-biz ul.list-none:not(.planish-laszlo-why-list--cards) > li {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }
}


body.planish-site-body .planish-home-section .planish-display-title {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.1;
  color: #0f172a;
}
body.planish-site-body .planish-home-section .planish-display-title::after {
  display: none;
}
body.planish-site-body .planish-home-section .planish-section-label {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.1rem;
  padding: 0 0 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #64748b;
  text-align: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  box-shadow: none;
}
body.planish-site-body .planish-home-section .planish-section-label--muted {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  color: #64748b;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}
body.planish-site-body .planish-home-section .planish-marketing-intro,
body.planish-site-body .planish-faq-band .planish-faq-intro.planish-marketing-intro {
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.planish-site-body .planish-home-section .planish-marketing-intro .doodle-deco {
  display: none !important;
}
#rakamlar.planish-laszlo-stats-panel .planish-section-label--muted {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
body.planish-site-body .planish-step-index {
  display: block;
  margin: 0 0 0.35rem;
  font-family: var(--app-font-hero, ui-sans-serif, system-ui, sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #94a3b8;
  line-height: 1.2;
}
body.planish-site-body #hizmetler .feature-icon-cell {
  background: #f8fafc !important;
  box-shadow: none !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569;
  --tw-ring-shadow: 0 0 #0000;
  --tw-ring-offset-shadow: 0 0 #0000;
}
body.planish-site-body #gorusler .testimonial-card:not(.planish-testimonial-card--laszlo-dark) {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
}
body.planish-site-body #gorusler .testimonial-card:not(.planish-testimonial-card--laszlo-dark) > span.font-serif[aria-hidden="true"] {
  color: #f1f5f9 !important;
  opacity: 1;
}
body.planish-site-body #fiyatlandirma .planish-pricing-ribbon {
  background: #0f172a;
  box-shadow: none;
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
}
body.planish-site-body #cta-son .planish-cta-primary {
  box-shadow: none;
}


body.planish-site-body {
  --planish-reveal-y: 2rem;
  --planish-reveal-duration: 0.85s;
  --planish-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --planish-reveal-stagger: 0.09s;
}

body.planish-site-body .planish-reveal:not(.planish-reveal--stagger) {
  opacity: 0;
  transform: translate3d(0, var(--planish-reveal-y), 0);
  transition:
    opacity var(--planish-reveal-duration) var(--planish-reveal-ease),
    transform var(--planish-reveal-duration) var(--planish-reveal-ease);
  will-change: opacity, transform;
}
body.planish-site-body .planish-reveal:not(.planish-reveal--stagger).is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

body.planish-site-body .planish-reveal--stagger > * {
  opacity: 0;
  transform: translate3d(0, calc(var(--planish-reveal-y) * 0.85), 0);
  transition:
    opacity var(--planish-reveal-duration) var(--planish-reveal-ease),
    transform var(--planish-reveal-duration) var(--planish-reveal-ease);
  will-change: opacity, transform;
}
body.planish-site-body .planish-reveal--stagger.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--planish-reveal-stagger) * 1);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--planish-reveal-stagger) * 2);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--planish-reveal-stagger) * 3);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--planish-reveal-stagger) * 4);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--planish-reveal-stagger) * 5);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--planish-reveal-stagger) * 6);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--planish-reveal-stagger) * 7);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--planish-reveal-stagger) * 8);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--planish-reveal-stagger) * 9);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--planish-reveal-stagger) * 10);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(11) {
  transition-delay: calc(var(--planish-reveal-stagger) * 11);
}
body.planish-site-body .planish-reveal--stagger.is-visible > *:nth-child(12) {
  transition-delay: calc(var(--planish-reveal-stagger) * 12);
}

@media (prefers-reduced-motion: reduce) {
  body.planish-site-body .planish-reveal:not(.planish-reveal--stagger),
  body.planish-site-body .planish-reveal--stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
    will-change: auto !important;
  }
}

body.planish-site-body #hizmetler article.rounded-app {
  transition:
    transform 0.55s var(--planish-reveal-ease),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #hizmetler article.rounded-app:hover {
    transform: translateY(-10px);
    box-shadow:
      0 12px 40px rgba(15, 23, 42, 0.09),
      0 4px 12px rgba(15, 23, 42, 0.05);
  }
}

body.planish-site-body #fiyatlandirma .planish-pricing-free,
body.planish-site-body #fiyatlandirma .planish-pricing-card {
  transition:
    transform 0.55s var(--planish-reveal-ease),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #fiyatlandirma .planish-pricing-free:hover,
  body.planish-site-body #fiyatlandirma .planish-pricing-card:hover {
    transform: translateY(-8px);
  }
}


body.planish-site-body #blog .planish-blog-card {
  transition:
    transform 0.55s var(--planish-reveal-ease),
    box-shadow 0.45s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #blog .planish-blog-card:hover {
    transform: translateY(-3px);
  }
  body.planish-site-body #blog .planish-blog-card--editorial:hover {
    transform: translateY(-3px);
  }
}

body.planish-site-body #blog .planish-blog-card__img {
  transition: transform 0.85s var(--planish-reveal-ease);
}

body.planish-site-body #gorusler .testimonial-card:not(.planish-testimonial-card--laszlo-dark) {
  transition:
    transform 0.55s var(--planish-reveal-ease),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #gorusler .testimonial-card:not(.planish-testimonial-card--laszlo-dark):hover {
    transform: translateY(-8px);
    box-shadow: none;
  }
}

body.planish-site-body .planish-faq-item {
  transition:
    transform 0.4s var(--planish-reveal-ease),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body .planish-faq-item:hover {
    transform: translateY(-3px);
  }
}

body.planish-site-body .planish-faq-summary {
  transition: background-color 0.35s ease;
}

body.planish-site-body #cta-son .planish-cta-primary {
  transition:
    transform 0.45s var(--planish-reveal-ease),
    box-shadow 0.45s ease,
    background-color 0.25s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #cta-son .planish-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
  }
}

body.planish-site-body .planish-home-section .planish-faq-lead a {
  transition:
    color 0.25s ease,
    text-underline-offset 0.25s ease,
    decoration-color 0.25s ease;
}
body.planish-site-body .planish-home-section .planish-faq-lead a:hover {
  text-underline-offset: 4px;
}

body.planish-site-body .planish-blog-carousel__btn,
body.planish-site-body .planish-testimonials-carousel__btn {
  transition:
    transform 0.35s var(--planish-reveal-ease),
    box-shadow 0.35s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body .planish-blog-carousel__btn:hover:not(:disabled),
  body.planish-site-body .planish-testimonials-carousel__btn:hover:not(:disabled) {
    transform: scale(1.06);
  }
}


body.planish-site-body .planish-laszlo-container {
  width: 100%;
  max-width: min(92rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.15rem, 5vw, 5rem);
  padding-right: clamp(1.15rem, 5vw, 5rem);
}

body.planish-site-body .planish-laszlo-wrap-narrow {
  width: 100%;
  max-width: min(56rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.15rem, 4vw, 2.5rem);
  padding-right: clamp(1.15rem, 4vw, 2.5rem);
}

body.planish-site-body .planish-laszlo-band--white {
  background-color: #ffffff !important;
  background-image: none !important;
}

body.planish-site-body .planish-laszlo-band--soft {
  background-color: #fafafa !important;
  background-image: none !important;
}

body.planish-site-body #blog.planish-laszlo-band--soft.bg-surface {
  background-color: #fafafa !important;
  background-image: none !important;
}

body.planish-site-body #blog.bg-surface::before {
  display: none;
}

body.planish-site-body .planish-laszlo-band--faq .planish-faq-band {
  background-color: #fafafa !important;
  background-image: none !important;
}

body.planish-site-body .planish-laszlo-band--faq .planish-faq-band::before {
  display: none;
}

body.planish-site-body .planish-home-section .planish-laszlo-split-head .planish-laszlo-split-head__accent {
  font-size: clamp(0.68rem, 1.15vw, 0.78rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  line-height: 1.35 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.planish-site-body .planish-laszlo-split-head__accent.tracking-tight {
  font-size: clamp(1.2rem, 3.2vw, 2.05rem) !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
  font-weight: 600 !important;
}

body.planish-site-body #cta-son .planish-laszlo-split-head .planish-laszlo-split-head__accent {
  font-size: clamp(1.2rem, 2.8vw, 1.75rem) !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
  font-weight: 600 !important;
  color: #64748b !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}


body.planish-site-body .planish-home-section .planish-display-title.planish-laszlo-split-head {
  font-family: var(--app-font-hero, "Museo Sans Rounded", "Museo Sans", system-ui, sans-serif);
  font-size: clamp(2.1rem, 4.8vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  
  line-height: 1.08;
  color: #0f172a;
}

body.planish-site-body #hizmetler .planish-display-title.planish-laszlo-split-head .planish-laszlo-split-head__line {
  padding-top: 0.12em;
  line-height: 1.12;
}

body.planish-site-body #cta-son.planish-laszlo-cta-band .planish-display-title.planish-laszlo-split-head {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

body.planish-site-body #neden-biz .feature-icon-cell {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: none !important;
  --tw-ring-shadow: 0 0 #0000;
  color: #475569;
}


body.planish-site-body #neden-biz.planish-laszlo-why-section {
  overflow: visible;
}
body.planish-site-body #neden-biz .planish-laszlo-container {
  overflow: visible;
}
body.planish-site-body #neden-biz .planish-laszlo-why-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}
body.planish-site-body #neden-biz .planish-laszlo-why-list--cards {
  list-style: none;
  display: flex;
  flex-direction: column;
  
  gap: clamp(1.15rem, 3.2vw, 1.65rem);
}
@media (min-width: 640px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-list--cards {
    gap: clamp(1.35rem, 3.5vw, 2rem);
  }
}
@media (min-width: 1024px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-list--cards {
    gap: clamp(1.5rem, 4vw, 2.65rem);
    
    padding-top: clamp(0.85rem, 2.2vw, 1.75rem);
  }
}
@media (min-width: 1024px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-split {
    grid-template-columns: minmax(0, 41%) minmax(0, 59%);
    column-gap: clamp(2.75rem, 6vw, 5rem);
    row-gap: 0;
    align-items: stretch;
  }
  body.planish-site-body #neden-biz .planish-laszlo-why-split__sticky {
    position: sticky;
    
    align-self: start;
    max-width: min(38rem, 100%);
    
    padding-top: clamp(3rem, 7vmin, 6rem);
    padding-right: clamp(0.5rem, 2vw, 1.25rem);
    
    top: clamp(9.25rem, 18vh, 14.5rem);
    transform: none;
  }
}


@media (max-width: 1023px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-split__sticky {
    padding-top: clamp(4rem, 12vmin, 8.5rem);
    padding-bottom: clamp(1.5rem, 5vmin, 3rem);
  }
}
@media (min-width: 1280px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-split {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    column-gap: clamp(3rem, 6.5vw, 5.5rem);
  }
}
body.planish-site-body #neden-biz .planish-laszlo-why-split__lead {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.65;
}
body.planish-site-body #neden-biz .planish-laszlo-why-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 11.25rem;
  padding: 0.95rem 2rem;
  line-height: 1.2;
  white-space: nowrap;
  background: #166b1f !important;
  color: #ffffff !important;
  border: 1px solid #166b1f;
  box-shadow:
    0 10px 30px rgb(22 107 31 / 0.35),
    0 1px 0 rgb(255 255 255 / 0.15) inset;
}
body.planish-site-body #neden-biz .planish-laszlo-why-cta::before,
body.planish-site-body #neden-biz .planish-laszlo-why-cta::after {
  content: none;
}
body.planish-site-body #neden-biz .planish-laszlo-why-cta:hover {
  background: #12541a !important;
  border-color: #12541a;
}
body.planish-site-body #neden-biz .planish-laszlo-why-cta__label {
  position: relative;
  display: inline-block;
  padding-right: 0;
}
body.planish-site-body #neden-biz .planish-laszlo-why-cta__label::after {
  content: none;
}
@media (max-width: 420px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-cta {
    min-width: 10.5rem;
    padding-inline: 1.6rem;
  }
}
body.planish-site-body #neden-biz .planish-laszlo-why-split__title .planish-laszlo-split-head__line {
  text-align: center;
}
body.planish-site-body #neden-biz .planish-laszlo-marker-text::after {
  background: #e53935;
}
body.planish-site-body .planish-laszlo-marker-text {
  position: relative;
  z-index: 0;
  display: inline;
  font-weight: 700;
  color: #0f172a;
}
body.planish-site-body .planish-laszlo-marker-text::after {
  content: '';
  position: absolute;
  left: -0.06em;
  right: -0.1em;
  bottom: 0.03em;
  height: 0.38em;
  
  background: #24a2c1;
  z-index: -1;
  border-radius: 0.12em;
  transform: rotate(-1deg);
}
body.planish-site-body #neden-biz .planish-laszlo-why-card {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.98);
  background: #ffffff;
  box-shadow: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
@media (min-width: 640px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-card {
    padding: 1.5rem 1.45rem;
    gap: 1.35rem;
  }
}
@media (min-width: 1024px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-card.planish-laszlo-why-card--xl {
    gap: clamp(1.35rem, 2.5vw, 2rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 2.85rem) clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 1.35rem;
    min-height: clamp(13.5rem, 26vh, 19rem);
    box-shadow: none;
  }
}
body.planish-site-body #neden-biz .planish-laszlo-why-card__heading {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0f172a;
}
body.planish-site-body #neden-biz .planish-laszlo-why-card__copy {
  margin: 0;
  font-size: clamp(1.05rem, 1.85vw, 1.25rem);
  line-height: 1.72;
  color: #64748b;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #neden-biz .planish-laszlo-why-card:hover {
    border-color: #cbd5e1;
    box-shadow: none;
    transform: translateY(-3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #neden-biz .planish-laszlo-why-card:hover {
    transform: none !important;
  }
}
body.planish-site-body #neden-biz .planish-laszlo-why-card__icon.feature-icon-cell {
  width: 3.25rem !important;
  height: 3.25rem !important;
  min-width: 3.25rem;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  color: #334155;
}
@media (min-width: 1024px) {
  body.planish-site-body #neden-biz .planish-laszlo-why-card--xl .planish-laszlo-why-card__icon.feature-icon-cell {
    width: 4.25rem !important;
    height: 4.25rem !important;
    min-width: 4.25rem;
    border-radius: 1rem;
  }
  body.planish-site-body #neden-biz .planish-laszlo-why-card--xl .planish-laszlo-why-card__icon svg {
    width: 1.85rem;
    height: 1.85rem;
  }
}

body.planish-site-body #neden-biz .planish-laszlo-why-card__copy .planish-laszlo-why-stat-em {
  font-weight: 700;
  color: #0f172a;
}
body.planish-site-body #neden-biz .planish-laszlo-why-card__icon svg {
  width: 1.42rem;
  height: 1.42rem;
}

@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #hizmetler .planish-laszlo-service-card:hover {
    transform: translateY(-10px);
    box-shadow:
      0 12px 40px rgba(15, 23, 42, 0.09),
      0 4px 12px rgba(15, 23, 42, 0.05);
  }
}

body.planish-site-body #hizmetler .planish-laszlo-service-card {
  transition:
    transform 0.55s var(--planish-reveal-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}


body.planish-site-body #hizmetler .planish-laszlo-app-showcase {
  position: relative;
  z-index: 1;
  overflow: visible;
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}
@media (min-width: 640px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 6vw, 4.5rem);
  }
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__phone {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: visible;
  aspect-ratio: 1;
  width: min(82vw, 19rem);
  min-width: 14rem;
  max-width: 19rem;
  padding: 0 clamp(0.45rem, 1.6vw, 0.95rem);
  isolation: isolate;
}
@media (min-width: 640px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__phone {
    width: min(52vw, 28rem);
    min-width: 20rem;
    max-width: 28rem;
  }
}
@media (min-width: 768px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__phone {
    width: min(48vw, 32rem);
    min-width: 22rem;
    max-width: 32rem;
  }
}
@media (min-width: 1024px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__phone {
    width: min(46vw, 36rem);
    min-width: 26rem;
    max-width: 36rem;
  }
}
@media (min-width: 1280px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__phone {
    width: min(42vw, 38rem);
    max-width: 38rem;
  }
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__phone-visual {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 38px rgb(15 23 42 / 0.11)) drop-shadow(0 4px 12px rgb(15 23 42 / 0.06));
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.82) 74%,
    rgba(0, 0, 0, 0.35) 86%,
    rgba(0, 0, 0, 0.06) 95%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.82) 74%,
    rgba(0, 0, 0, 0.35) 86%,
    rgba(0, 0, 0, 0.06) 95%,
    transparent 100%
  );
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 auto;
  width: 100%;
  max-width: 22rem;
  gap: clamp(1.1rem, 2.8vw, 1.65rem);
}
@media (min-width: 640px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__text {
    align-items: flex-start;
    text-align: left;
    margin-left: auto;
    max-width: min(28rem, 38vw);
    width: auto;
  }
}
@media (min-width: 1024px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__text {
    max-width: min(30rem, 34vw);
    padding-right: clamp(0rem, 1.5vw, 0.75rem);
  }
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__heading {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.12;
  color: var(--planish-ink-strong, #0f172a);
}
@media (min-width: 1024px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__heading {
    font-size: clamp(2.125rem, 3.4vw, 3.125rem);
  }
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__heading-accent {
  display: block;
  color: var(--bs-primary, #0796ba);
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__heading-rest {
  display: block;
  color: var(--planish-ink-strong, #0f172a);
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__copy {
  margin: 0;
  font-size: clamp(0.875rem, 1.35vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.62;
  color: #64748b;
}
@media (min-width: 640px) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__copy {
    max-width: none;
  }
}
body.planish-site-body #hizmetler .planish-laszlo-app-showcase__copy-strong {
  font-weight: 600;
  color: var(--planish-ink-strong, #0f172a);
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #hizmetler .planish-laszlo-app-showcase__phone-visual {
    filter: drop-shadow(0 8px 20px rgb(15 23 42 / 0.08));
  }
}

body.planish-site-body #hizmetler .planish-how-carousel {
  position: relative;
  padding-bottom: clamp(0.25rem, 1vw, 0.75rem);
}
body.planish-site-body #hizmetler .planish-how-carousel--marquee-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}
body.planish-site-body #hizmetler .planish-how-carousel__viewport {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-top: clamp(1rem, 2.75vw, 1.75rem);
  padding-bottom: clamp(1rem, 2.75vw, 1.75rem);
  padding-left: clamp(1.35rem, 5.25vw, 3rem);
  padding-right: clamp(1.35rem, 5.25vw, 3rem);
  cursor: grab;
  touch-action: none;
}
body.planish-site-body #hizmetler .planish-how-carousel--marquee-bleed .planish-how-carousel__viewport {
  overflow-x: visible;
  overflow-y: visible;
  cursor: grab;
  touch-action: pan-x;
}
body.planish-site-body #hizmetler .planish-how-carousel__viewport.planish-how-carousel__viewport--is-dragging {
  cursor: grabbing;
}
body.planish-site-body #hizmetler .planish-how-carousel__viewport.planish-how-carousel__viewport--is-dragging .planish-how-carousel__track {
  user-select: none;
}
body.planish-site-body #hizmetler .planish-how-carousel__slide {
  overflow: visible;
}
body.planish-site-body #hizmetler .planish-how-carousel__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}
body.planish-site-body #hizmetler .planish-how-carousel__viewport .planish-how-carousel__slide,
body.planish-site-body #hizmetler .planish-how-carousel__viewport .planish-how-carousel__slide * {
  touch-action: none;
}
body.planish-site-body #hizmetler .planish-how-carousel--marquee-bleed .planish-how-carousel__viewport .planish-how-carousel__slide,
body.planish-site-body #hizmetler .planish-how-carousel--marquee-bleed .planish-how-carousel__viewport .planish-how-carousel__slide * {
  touch-action: inherit;
}
body.planish-site-body #hizmetler .planish-how-carousel__viewport a.planish-how-card__fab {
  touch-action: manipulation;
}

body.planish-site-body #hizmetler .planish-how-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: clamp(15rem, 38vw, 18rem);
  display: flex;
  flex-direction: column;
  border-radius: 1.45rem;
  border: 1px solid rgb(229 231 235 / 0.95);
  background-color: #fdfdfd;
  background-image:
    radial-gradient(ellipse 110% 75% at 50% -25%, rgb(54 184 66 / 0.02) 0%, transparent 52%),
    radial-gradient(ellipse 85% 60% at 100% 12%, rgb(120 113 108 / 0.012) 0%, transparent 50%),
    linear-gradient(180deg, #fdfdfd 0%, #fafafa 44%, #fdfdfd 80%, #ffffff 100%);
  background-size: auto, auto, auto;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, center top, 0 0;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.65) inset,
    0 10px 28px rgb(15 23 42 / 0.05);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
body.planish-site-body #hizmetler .planish-how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgb(203 213 225 / 0.085) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(203 213 225 / 0.085) 1px, transparent 1px),
    linear-gradient(to right, rgb(148 163 184 / 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(148 163 184 / 0.05) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 96px 96px, 96px 96px;
  background-repeat: repeat;
  background-position: 0 0;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #hizmetler .planish-how-card:hover {
    border-color: rgb(209 213 219 / 0.98);
    box-shadow:
      0 1px 0 rgb(255 255 255 / 0.7) inset,
      0 14px 34px rgb(15 23 42 / 0.07);
    transform: translateY(-3px);
  }
}
body.planish-site-body #hizmetler .planish-how-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(1.35rem, 2.8vw, 1.65rem);
  padding-bottom: clamp(2.65rem, 5vw, 3rem);
  text-align: left;
}
body.planish-site-body #hizmetler .planish-how-card__step {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--app-font-hero, ui-sans-serif, system-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #9ca3af;
}
body.planish-site-body #hizmetler .planish-how-carousel__slide[data-planish-how-slide='1'] .planish-how-card__step {
  color: #36b842;
}
body.planish-site-body #hizmetler .planish-how-carousel__slide[data-planish-how-slide='2'] .planish-how-card__step {
  color: #e53935;
}
body.planish-site-body #hizmetler .planish-how-carousel__slide[data-planish-how-slide='3'] .planish-how-card__step {
  color: #24a2c1;
}
body.planish-site-body #hizmetler .planish-how-carousel__slide[data-planish-how-slide='4'] .planish-how-card__step {
  color: #7c3aed;
}
body.planish-site-body #hizmetler .planish-how-carousel__slide[data-planish-how-slide='5'] .planish-how-card__step {
  color: #d97706;
}
body.planish-site-body #hizmetler .planish-how-card__title {
  margin: 0;
  font-size: clamp(1.18rem, 2.15vw, 1.48rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.18;
  color: #0f172a;
}
body.planish-site-body #hizmetler .planish-how-card__text {
  margin: 0.85rem 0 0;
  flex: 1 1 auto;
  font-size: clamp(0.9rem, 1.45vw, 1.03rem);
  line-height: 1.65;
  color: #4b5563;
}
body.planish-site-body #hizmetler .planish-how-card__fab {
  position: absolute;
  right: 1.05rem;
  bottom: 1.05rem;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgb(229 231 235 / 0.98);
  background: #ffffff;
  color: #6d28d9;
  text-decoration: none;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.05);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background-color 0.22s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #hizmetler .planish-how-card__fab:hover {
    border-color: rgb(209 213 219 / 0.98);
    box-shadow: 0 4px 14px rgb(15 23 42 / 0.08);
    transform: translateY(-1px);
  }
}
body.planish-site-body #hizmetler .planish-how-card__fab:focus-visible {
  outline: 2px solid rgb(109 40 217 / 0.45);
  outline-offset: 2px;
}

body.planish-site-body #hizmetler .planish-how-carousel__nav-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.35rem;
  padding-right: clamp(1.35rem, 5.25vw, 3rem);
}
body.planish-site-body #hizmetler .planish-how-carousel--marquee-bleed .planish-how-carousel__nav-row {
  padding-left: clamp(1.15rem, 5vw, 5rem);
  padding-right: clamp(1.15rem, 5vw, 5rem);
}
body.planish-site-body #hizmetler .planish-how-carousel__btn {
  position: static;
  transform: none;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 9999px;
  background: #ffffff;
  color: var(--planish-ink-strong, #0f172a);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}
body.planish-site-body #hizmetler .planish-how-carousel__btn:hover:not(:disabled) {
  border-color: rgba(109, 40, 217, 0.35);
  color: #6d28d9;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}
body.planish-site-body #hizmetler .planish-how-carousel__btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(109, 40, 217, 0.35);
}
body.planish-site-body #hizmetler .planish-how-carousel__btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 767.98px) {
  body.planish-site-body #hizmetler.planish-section-services.planish-home-section {
    overflow-x: visible;
    overflow-y: visible;
    position: relative;
    z-index: 2;
  }
  body.planish-site-body #hizmetler .planish-how-carousel__slide {
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #hizmetler .planish-how-card:hover {
    transform: none !important;
  }
}


body.planish-site-body #fiyatlandirma.planish-pricing-section--spectrum {
  overflow-x: visible !important;
  overflow-y: visible !important;
  border-left: 0 !important;
  border-right: 0 !important;
  background:
    radial-gradient(115% 80% at 82% 12%, rgb(var(--bs-primary-rgb) / 0.09), transparent 58%),
    radial-gradient(90% 70% at 16% 36%, rgb(6 182 212 / 0.06), transparent 55%),
    radial-gradient(72% 52% at 88% 92%, rgb(192 38 211 / 0.045), transparent 52%),
    linear-gradient(185deg, #fafaf9 0%, #f8fafc 38%, #f4f4f5 100%) !important;
}
body.planish-site-body #fiyatlandirma.planish-pricing-section--spectrum::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(4.75rem, 11vw, 9.25rem);
  bottom: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 1 !important;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgb(255 255 255 / 0.78) 28%,
    rgb(250 250 249 / 0.38) 58%,
    transparent 100%
  ) !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    rgb(255 255 255 / 0.78) 28%,
    rgb(250 250 249 / 0.38) 58%,
    transparent 100%
  ) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}

body.planish-site-body #fiyatlandirma .planish-laszlo-pricing-grid--paid::before {
  display: none !important;
}


body.planish-site-body #fiyatlandirma .planish-pricing-triple.planish-pricing-dual {
  position: relative;
  z-index: 1;
  padding-top: clamp(0.35rem, 1.5vw, 1.1rem);
}
@media (min-width: 1024px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-triple.planish-pricing-dual {
    gap: 1rem;
  }
  body.planish-site-body #fiyatlandirma .planish-pricing-triple .planish-pricing-dual__card--featured {
    transform: translateY(-0.15rem);
    z-index: 2;
  }
}
@media (min-width: 1280px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-triple.planish-pricing-dual {
    gap: 1.15rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #fiyatlandirma .planish-pricing-triple .planish-pricing-dual__card--featured {
    transform: none;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--placeholder {
  border-style: dashed;
  border-color: rgb(203 213 225 / 0.95);
  box-shadow: none;
}
body.planish-site-body #fiyatlandirma .planish-pricing-placeholder-copy {
  margin-top: 0.25rem;
}


body.planish-site-body #fiyatlandirma {
  --planish-pricing-chrome-top: #166b1f;
  --planish-pricing-chrome-mid: #166b1f;
  --planish-pricing-chrome-bottom: #166b1f;
  --planish-pricing-chrome-rgb: 22, 107, 31;
  --planish-pricing-cta-green: #166b1f;
  --planish-pricing-cta-green-hover: #12541a;
  --planish-pricing-cta-green-rgb: 22, 107, 31;
  --planish-pricing-on-chrome: #ffffff;
  --planish-pricing-on-chrome-soft: #f4f4f5;
  --planish-pricing-on-chrome-muted: #e4e4e7;
  --planish-pricing-on-chrome-faint: #d4d4d8;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual {
  position: relative;
  z-index: 1;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card {
  position: relative;
  border-radius: 1.35rem;
  padding: 1.3rem 1.4rem 1.2rem;
  min-height: 100%;
  box-shadow: none;
}
@media (min-width: 640px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-dual__card {
    padding: 1.45rem 1.55rem 1.3rem;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--light {
  background: #ffffff;
  border: 1px solid rgb(226 232 240 / 0.95);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--light.planish-pricing-dual__card--featured {
  border-color: rgb(var(--planish-pricing-cta-green-rgb) / 0.55);
  box-shadow:
    0 0 0 1px rgb(var(--planish-pricing-cta-green-rgb) / 0.2),
    0 16px 44px rgb(var(--planish-pricing-cta-green-rgb) / 0.14);
  padding-top: 1.35rem;
}
@media (min-width: 640px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--light.planish-pricing-dual__card--featured {
    padding-top: 1.45rem;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__pick-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 1.5rem);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background-color: var(--planish-pricing-cta-green);
  background-image: none;
  border: 1px solid rgb(255 255 255 / 0.35);
  box-shadow: 0 8px 24px rgb(var(--planish-pricing-cta-green-rgb) / 0.35);
  pointer-events: none;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__pick-badge-text {
  font-size: clamp(0.56rem, 2.2vw, 0.65rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark {
  background: var(--planish-pricing-cta-green) !important;
  background-image: none !important;
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow:
    0 16px 48px rgb(var(--planish-pricing-chrome-rgb) / 0.22),
    0 1px 0 rgb(255 255 255 / 0.08) inset;
  padding-top: 1.85rem;
}

body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark.planish-pricing-dual__card--featured {
  padding-top: 1.3rem;
}
@media (min-width: 640px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark.planish-pricing-dual__card--featured {
    padding-top: 1.45rem;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark-muted {
  background: linear-gradient(165deg, #334155 0%, #1e293b 100%);
  border-color: rgb(71 85 105 / 0.45);
  padding-top: 1.65rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__save-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #36b842 0%, #22c55e 100%);
  border: 1px solid rgb(255 255 255 / 0.35);
  box-shadow: none;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__save-badge-text {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
  line-height: 1.2;
  white-space: nowrap;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__head {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgb(241 245 249 / 0.95);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__head--dark {
  border-bottom-color: rgb(255 255 255 / 0.1);
  margin-bottom: 0.8rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__kicker--on-dark {
  color: var(--planish-pricing-on-chrome-muted);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__plan-name {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__plan-name--on-dark {
  color: var(--planish-pricing-on-chrome);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__title-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  width: 100%;
  margin-bottom: 0.4rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__title-row .planish-pricing-dual__plan-name {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__title-row .planish-pricing-head-discount {
  flex: 0 0 auto;
  margin-left: auto;
}

body.planish-site-body #fiyatlandirma[data-pricing-period="monthly"] .planish-pricing-view--yillik:not(.planish-pricing-head-discount),
body.planish-site-body #fiyatlandirma[data-pricing-period="monthly"] .planish-pricing-head-discount,
body.planish-site-body #fiyatlandirma[data-pricing-period="yillik"] .planish-pricing-view--monthly {
  display: none !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-period-toolbar .planish-pricing-period-toggle {
  min-width: 0;
}
@media (max-width: 1023.98px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-period-toolbar .planish-pricing-period-toggle {
    flex: 1 1 auto;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-period-switch {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
body.planish-site-body #fiyatlandirma .planish-pricing-period-thumb {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  /* p-1 yatay toplam 0.5rem; iki eşit sütun — translateX(100%) tam yarım genişlik kadar kayar */
  width: calc((100% - 0.5rem) / 2);
  border-radius: 9999px;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  box-shadow: none;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(0, 0, 0);
}
body.planish-site-body #fiyatlandirma[data-pricing-period="yillik"] .planish-pricing-period-thumb {
  transform: translate3d(100%, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #fiyatlandirma .planish-pricing-period-thumb {
    transition-duration: 0.01ms;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-period-toggle .planish-pricing-period-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  color: #64748b;
}
body.planish-site-body #fiyatlandirma[data-pricing-period="monthly"] .planish-pricing-period-btn[data-period="monthly"],
body.planish-site-body #fiyatlandirma[data-pricing-period="yillik"] .planish-pricing-period-btn[data-period="yillik"] {
  color: #f8fafc;
  box-shadow: none;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.4rem;
  margin: 0;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__amount {
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0f172a;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__amount--on-dark {
  color: var(--planish-pricing-on-chrome);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__period {
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__period--on-dark {
  color: var(--planish-pricing-on-chrome-soft);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__bill-note {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__bill-note--on-dark {
  color: var(--planish-pricing-on-chrome-muted);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__amount--wasline {
  text-decoration: line-through;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  color: #94a3b8;
  opacity: 0.95;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark .planish-pricing-dual__amount--wasline.planish-pricing-dual__amount--on-dark {
  color: var(--planish-pricing-on-chrome-faint);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__promo-note {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__promo-note--on-dark {
  color: var(--planish-pricing-on-chrome-muted);
}
body.planish-site-body #fiyatlandirma .planish-pricing-head-discount__pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: none;
}
body.planish-site-body #fiyatlandirma .planish-pricing-head-discount__pill--on-dark {
  background: linear-gradient(145deg, #4ade80 0%, #22c55e 100%);
  color: #052e16;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__title-row {
  position: relative;
  margin-bottom: 0.15rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__title-row .planish-pricing-head-discount {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__name--with-head-discount {
  padding-right: 5rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__amount--wasline {
  text-decoration: line-through;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 600;
  color: #94a3b8;
  margin-right: 0.25rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__yearly-placeholder {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #cbd5e1;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__features {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 auto;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__feature {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.9375rem;
  line-height: 1.38;
  color: #334155;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, #36b842 0%, #22c55e 100%);
  box-shadow: none;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__feature::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.52rem;
  width: 0.32rem;
  height: 0.55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

body.planish-site-body #fiyatlandirma .planish-pricing-dual__feature:has(.planish-plan-feature-row)::before,
body.planish-site-body #fiyatlandirma .planish-pricing-dual__feature:has(.planish-plan-feature-row)::after {
  content: none !important;
  display: none !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__feature:has(.planish-plan-feature-row) {
  padding-left: 0;
}
body.planish-site-body #fiyatlandirma .planish-plan-feature-row {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  max-width: min(100%, 22rem);
  line-height: 1.38;
  text-align: left;
}
body.planish-site-body #fiyatlandirma .planish-plan-feature-row--quota {
  display: block;
  max-width: min(100%, 22rem);
}
body.planish-site-body #fiyatlandirma .planish-plan-mark {
  flex: 0 0 auto;
  width: 1.15rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.875em;
  line-height: inherit;
  margin-top: 0.06rem;
}
body.planish-site-body #fiyatlandirma .planish-plan-mark--ok {
  color: #16a34a;
}
body.planish-site-body #fiyatlandirma .planish-plan-mark--no {
  color: #94a3b8;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__features--dark .planish-plan-mark--ok {
  color: #4ade80;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__features--dark .planish-plan-mark--no {
  color: var(--planish-pricing-on-chrome-faint);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__features--dark .planish-plan-feature-row__txt {
  color: var(--planish-pricing-on-chrome-soft);
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__feature-item .planish-plan-feature-row {
  justify-content: center;
  text-align: left;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__feature-item .planish-plan-feature-row--quota {
  text-align: center;
  width: 100%;
  max-width: min(100%, 21rem);
  margin-left: auto;
  margin-right: auto;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__feature-item .planish-plan-mark--ok {
  color: #15803d;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__feature-item .planish-plan-mark--no {
  color: #94a3b8;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__features--dark .planish-pricing-dual__feature {
  color: var(--planish-pricing-on-chrome-soft);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__features--dark .planish-pricing-dual__feature strong,
body.planish-site-body #fiyatlandirma .planish-pricing-dual__features--dark .text-ink {
  color: var(--planish-pricing-on-chrome) !important;
  font-weight: 700;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__cta {
  min-height: 2.65rem !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__cta--outline:hover,
body.planish-site-body #fiyatlandirma .planish-pricing-dual__cta--outline:focus-visible {
  border-color: rgb(var(--planish-pricing-cta-green-rgb) / 0.55) !important;
  color: var(--planish-pricing-cta-green) !important;
  background-color: #ffffff !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__cta--outline:active {
  border-color: var(--planish-pricing-cta-green-hover) !important;
  color: var(--planish-pricing-cta-green-hover) !important;
  background-color: rgb(248 250 252) !important;
}

body.planish-site-body
  #fiyatlandirma
  .planish-pricing-dual__card--light.planish-pricing-dual__card--featured
  .planish-pricing-dual__cta--outline {
  filter: none;
  border-color: var(--planish-pricing-cta-green) !important;
  background-color: var(--planish-pricing-cta-green) !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: 0 6px 22px rgb(var(--planish-pricing-cta-green-rgb) / 0.38);
}
body.planish-site-body
  #fiyatlandirma
  .planish-pricing-dual__card--light.planish-pricing-dual__card--featured
  .planish-pricing-dual__cta--outline:hover {
  border-color: var(--planish-pricing-cta-green-hover) !important;
  background-color: var(--planish-pricing-cta-green-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 26px rgb(var(--planish-pricing-cta-green-rgb) / 0.42);
}
body.planish-site-body
  #fiyatlandirma
  .planish-pricing-dual__card--light.planish-pricing-dual__card--featured
  .planish-pricing-dual__cta--outline:focus-visible {
  border-color: var(--planish-pricing-cta-green-hover) !important;
  background-color: var(--planish-pricing-cta-green-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 3px rgb(var(--planish-pricing-cta-green-rgb) / 0.45);
  outline: none;
}
body.planish-site-body
  #fiyatlandirma
  .planish-pricing-dual__card--light.planish-pricing-dual__card--featured
  .planish-pricing-dual__cta--outline:active {
  border-color: var(--planish-pricing-cta-green-hover) !important;
  background-color: var(--planish-pricing-cta-green-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgb(var(--planish-pricing-cta-green-rgb) / 0.45);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__cta--solid {
  background: linear-gradient(135deg, #36b842 0%, #22c55e 100%);
  color: #0f172a;
  border: 1px solid rgb(255 255 255 / 0.2);
  box-shadow: 0 4px 18px rgb(54 184 66 / 0.35);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__cta--solid:hover {
  filter: brightness(1.05);
  color: #0f172a;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark-muted .planish-pricing-dual__cta--solid {
  background: #ffffff;
  color: #0f172a;
  border-color: rgb(255 255 255 / 0.25);
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.15);
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #fiyatlandirma .planish-pricing-dual__cta--solid:hover {
    filter: none;
  }
}


body.planish-site-body #fiyatlandirma .planish-pricing-starter {
  position: relative;
  overflow: hidden;
  margin-block: clamp(0.45rem, 1.6vw, 1rem);
  border-radius: 1.35rem;
  border: 1px solid rgb(226 232 240 / 0.95);
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: none;
  color: #334155;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter::before {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter:hover {
    transform: none;
    box-shadow: none;
    border-color: rgb(203 213 225 / 0.95);
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  padding: 1.35rem 1.35rem 1.35rem 1.45rem;
}
@media (min-width: 768px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem 1.75rem;
    padding: 1.2rem 1.6rem 1.2rem 1.55rem;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
@media (min-width: 768px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter__left {
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem 1.15rem;
    max-width: min(100%, 26rem);
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__titles {
  text-align: center;
}
@media (min-width: 768px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter__titles {
    text-align: left;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__titles .planish-pricing-tier__label {
  margin-bottom: 0.2rem;
  color: #64748b !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__name {
  margin: 0;
  line-height: 1.25;
  color: #0f172a !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter.planish-pricing-tier--accent-0 .planish-pricing-tier__amount {
  color: #0f172a !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  text-shadow: none;
  background: linear-gradient(135deg, #36b842 0%, #22c55e 100%);
  background-image: linear-gradient(135deg, #36b842 0%, #22c55e 100%);
  border: 1px solid rgb(255 255 255 / 0.35);
  box-shadow: none;
  flex-shrink: 0;
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__price-row {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0.45rem;
}
@media (min-width: 768px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter__price-row {
    justify-content: flex-start;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__price-row .planish-pricing-tier__amount {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1;
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__price-row .planish-pricing-tier__period {
  font-size: 0.8125rem;
  color: #64748b !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__kart-note {
  margin: 0;
  color: #64748b !important;
}
@media (min-width: 768px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter__kart-note {
    padding-left: 0.9rem;
    margin-left: 0.15rem;
    border-left: 1px solid rgb(226 232 240 / 0.95);
    white-space: nowrap;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__desc {
  margin: 0;
  max-width: 42rem;
  color: #475569 !important;
}
@media (min-width: 768px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter__desc {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-starter__cta {
  width: 100%;
  max-width: 17rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  body.planish-site-body #fiyatlandirma .planish-pricing-starter__cta {
    flex: 0 0 auto;
    width: auto;
    min-width: 13.5rem;
    max-width: 17rem;
    margin-left: 0;
    margin-right: 0;
  }
}

body.planish-site-body #fiyatlandirma .planish-pricing-tier {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgb(226 232 240 / 0.96);
  background: #ffffff;
  box-shadow:
    0 6px 32px rgb(15 23 42 / 0.075),
    0 1px 0 rgb(255 255 255 / 0.88) inset;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}
@media (prefers-reduced-motion: no-preference) {
  body.planish-site-body #fiyatlandirma .planish-pricing-tier:hover:not(.planish-pricing-tier--placeholder) {
    transform: translateY(-5px);
    box-shadow:
      0 18px 46px rgb(15 23 42 / 0.11),
      0 1px 0 rgb(255 255 255 / 0.92) inset;
    border-color: rgb(203 213 225 / 0.95);
  }
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--placeholder {
  border-style: dashed;
  border-color: rgb(203 213 225 / 0.95);
  background: rgb(255 255 255 / 0.88);
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  padding: 0.48rem 2.35rem 0.52rem 1rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8fafc;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
  box-shadow: 2px 4px 12px rgb(0 0 0 / 0.14);
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__ribbon-text {
  display: inline-block;
  max-width: 11rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-0 .planish-pricing-tier__ribbon {
  
  background: #36b842;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-1 .planish-pricing-tier__ribbon {
  
  background: #36b842;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-2 .planish-pricing-tier__ribbon {
  
  background: #e53935;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-3 .planish-pricing-tier__ribbon {
  
  background: #24a2c1;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__ribbon--muted {
  background: linear-gradient(135deg, #94a3b8, #64748b) !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(var(--bs-primary-rgb));
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__price-row--inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.25rem 0.45rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__amount {
  font-family: var(--app-font-hero);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-0 .planish-pricing-tier__amount {
  color: #36b842;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-1 .planish-pricing-tier__amount {
  color: #36b842;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-2 .planish-pricing-tier__amount {
  color: #e53935;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier--accent-3 .planish-pricing-tier__amount {
  color: #24a2c1;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__period {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__kart {
  margin-top: 0.65rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__hint {
  margin-top: 0.45rem;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__cta:not(.planish-pricing-tier__cta--ghost) {
  border: none;
  color: #fff !important;
  background: rgb(var(--bs-primary-rgb));
  box-shadow:
    0 8px 24px rgb(var(--bs-primary-rgb) / 0.32),
    0 1px 0 rgb(255 255 255 / 0.22) inset;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__cta:not(.planish-pricing-tier__cta--ghost):hover {
  background: #067a97;
  filter: none;
}
body.planish-site-body #fiyatlandirma .planish-pricing-tier__feature-item {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.52rem 0.15rem;
  border-top: 1px solid rgb(241 245 249 / 0.95);
}

body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-summary--split {
  font-size: inherit;
  font-weight: 600;
  padding: 0.95rem 0;
}
@media (min-width: 640px) {
  body.planish-site-body #sss.planish-faq-section--laszlo-split .planish-faq-summary--split {
    padding: 1.45rem 0;
  }
}

body.planish-site-body #sss #sss-list.planish-faq-grid--laszlo {
  gap: 0;
}

body.planish-site-body #blog .planish-blog-section-wrap.planish-laszlo-container {
  max-width: min(84rem, 100%);
}

body.planish-site-body #blog .planish-blog-section-wrap--carousel {
  padding-top: 0.35rem;
}
@media (min-width: 640px) {
  body.planish-site-body #blog .planish-blog-section-wrap--carousel {
    padding-top: 0.5rem;
  }
}


body.planish-site-body #blog .planish-blog-section-cta .planish-blog-more-btn {
  transition: transform 0.22s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.22s ease;
}
body.planish-site-body #blog .planish-blog-section-cta .planish-blog-more-btn:hover {
  transform: scale(1.045);
  color: var(--planish-accent-ink) !important;
  border-color: rgb(var(--planish-accent-ink-rgb) / 0.35) !important;
  font-weight: 700 !important;
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.07),
    0 12px 32px rgba(15, 23, 42, 0.11);
}
body.planish-site-body #blog .planish-blog-section-cta .planish-blog-more-btn:active {
  transform: scale(0.98);
}
@media (prefers-reduced-motion: reduce) {
  body.planish-site-body #blog .planish-blog-section-cta .planish-blog-more-btn {
    transition: color 0.15s ease, box-shadow 0.15s ease;
  }
  body.planish-site-body #blog .planish-blog-section-cta .planish-blog-more-btn:hover,
  body.planish-site-body #blog .planish-blog-section-cta .planish-blog-more-btn:active {
    transform: none;
  }
}

body.planish-site-body .planish-laszlo-text-link {
  text-decoration: none;
}

body.planish-site-body #sss .planish-faq-item:hover {
  transform: none !important;
}

/* #headerFixedMount: başlangıç padding; site-footer.js applyHeaderOffset ile satır içi de güncellenir */
#headerFixedMount.planish-header-fixed-mount {
  padding-top: 12px;
}

/* Masaüstü: üst şerit/marquee kaybolunca header kabuğu genişler; en üste dönünce daralır */
@media (min-width: 992px) {
  #headerFixedMount.planish-header-fixed-mount .planish-header-mount-inner {
    transition:
      max-width 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      padding-left 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      padding-right 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }
  #headerFixedMount.planish-header-fixed-mount--dock-expanded .planish-header-mount-inner {
    max-width: min(96rem, calc(100vw - 1.5rem));
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  #headerFixedMount.planish-header-fixed-mount,
  #headerFixedMount.planish-header-fixed-mount .planish-header-mount-inner {
    transition: none;
  }
}

/* Ücretli abonelik: masaüstü 3 sütun grid; dar ekranda yatay kaydırma (parmak) */
#fiyatlandirma .planish-paid-packages-carousel,
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 1023.98px) {
  #fiyatlandirma .planish-paid-packages-carousel__viewport,
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__viewport {
    overflow-x: auto;
    /* Dikeyde hidden gölgeyi keser; padding ile (.planish-pricing-dual__card--dark ~48px blur) içerde nefes payı */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    /* Kart gölgesi için kısa nefes; ücretsiz bant üstünde gereksiz boşluk bırakmaz */
    padding-left: max(1.5rem, calc(env(safe-area-inset-left, 0px) + 0.875rem));
    padding-right: max(1.5rem, calc(env(safe-area-inset-right, 0px) + 0.875rem));
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #fiyatlandirma .planish-paid-packages-carousel__viewport::-webkit-scrollbar,
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__viewport::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-pricing-triple.planish-pricing-dual.planish-paid-packages-carousel__track,
  body.planish-site-body
    #fiyatlandirma
    .planish-pricing-triple.planish-pricing-dual.planish-paid-packages-carousel__track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: max-content;
    min-width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    gap: 2rem !important;
  }
  #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-paid-packages-carousel__track
    > .planish-pricing-dual__card,
  body.planish-site-body
    #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-paid-packages-carousel__track
    > .planish-pricing-dual__card {
    flex: 0 0 auto;
    width: min(21.5rem, calc(100vw - 4.5rem));
    min-width: 0;
    min-height: 0;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }
  #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-paid-packages-carousel__track
    > .planish-pricing-dual__card.planish-paid-packages-carousel__card--snap-active,
  body.planish-site-body
    #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-paid-packages-carousel__track
    > .planish-pricing-dual__card.planish-paid-packages-carousel__card--snap-active {
    z-index: 4;
  }
  body.planish-site-body
    #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-pricing-dual__card--light.planish-pricing-dual__card--featured {
    box-shadow:
      0 0 0 1px rgb(var(--planish-pricing-cta-green-rgb) / 0.22),
      0 12px 32px rgb(var(--planish-pricing-cta-green-rgb) / 0.18);
  }
}
@media (min-width: 1024px) {
  #fiyatlandirma .planish-paid-packages-carousel__viewport,
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__viewport {
    overflow: visible;
    scroll-snap-type: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-pricing-triple.planish-pricing-dual.planish-paid-packages-carousel__track,
  body.planish-site-body
    #fiyatlandirma
    .planish-pricing-triple.planish-pricing-dual.planish-paid-packages-carousel__track {
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 80rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-paid-packages-carousel__track
    > .planish-pricing-dual__card,
  body.planish-site-body
    #fiyatlandirma
    .planish-paid-packages-carousel
    .planish-paid-packages-carousel__track
    > .planish-pricing-dual__card {
    width: auto !important;
    flex: initial !important;
    scroll-snap-align: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  #fiyatlandirma .planish-paid-packages-carousel__viewport,
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__viewport {
    scroll-behavior: auto;
  }
}

/* Ücretli paket carousel: üst oklar ve toolbar sol/sağ düzeni yalnızca mobil/tablet (1024px altı); masaüstünde ortalı */
@media (min-width: 1024px) {
  #fiyatlandirma .planish-paid-packages-carousel__mobile-nav,
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__mobile-nav {
    display: none !important;
  }
  #fiyatlandirma .planish-paid-packages-carousel__arrows-inline,
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__arrows-inline {
    display: none !important;
  }
  body.planish-site-body #fiyatlandirma .planish-pricing-period-toolbar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  /* justify-between + tek görünür çocuk (oklar gizli) solda kalmasın */
  body.planish-site-body #fiyatlandirma .planish-pricing-period-toolbar > div:first-of-type {
    justify-content: center !important;
    width: 100%;
  }
  body.planish-site-body #fiyatlandirma .planish-pricing-period-toolbar .planish-pricing-period-toggle {
    justify-content: center;
    width: auto;
    flex: 0 1 auto;
  }
}

/* Ücretli paket carousel: tek pakette çizgi göstergesi yok (mobile-nav artık header’da) */
#fiyatlandirma.planish-paid-packages-carousel--single-pack .planish-paid-packages-carousel__mobile-nav,
body.planish-site-body
  #fiyatlandirma.planish-paid-packages-carousel--single-pack
  .planish-paid-packages-carousel__mobile-nav {
  display: none !important;
}
#fiyatlandirma .planish-paid-packages-carousel__btn,
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--planish-ink-strong, #0f172a);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}
#fiyatlandirma .planish-paid-packages-carousel__btn:hover:not(:disabled),
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__btn:hover:not(:disabled) {
  border-color: rgba(7, 150, 186, 0.35);
  color: var(--bs-primary, #0796ba);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
}
#fiyatlandirma .planish-paid-packages-carousel__btn:focus-visible,
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(7, 150, 186, 0.45);
}
#fiyatlandirma .planish-paid-packages-carousel__btn:disabled,
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
#fiyatlandirma .planish-paid-packages-carousel__dot,
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__dot {
  width: 1.625rem;
  height: 0.2rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgb(203 213 225);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}
#fiyatlandirma .planish-paid-packages-carousel__dot--active,
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__dot--active {
  width: 2.25rem;
  background: var(--bs-primary, #0796ba);
}
#fiyatlandirma .planish-paid-packages-carousel__dot:focus-visible,
body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__dot:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(7, 150, 186, 0.4);
}

/* Mobil: paket çizgileri tam genişlik; üstte dar boşluk, altta header mb / viewport padding ile sıkı */
@media (max-width: 1023.98px) {
  body.planish-site-body #fiyatlandirma .planish-laszlo-section-head--pricing-carousel {
    margin-bottom: clamp(0.375rem, 2vw, 0.625rem) !important;
  }
  body.planish-site-body #fiyatlandirma .planish-pricing-period-toolbar .planish-paid-packages-carousel__mobile-nav {
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    max-width: none;
    align-items: stretch;
  }
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__mobile-nav .planish-paid-packages-carousel__dots {
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    max-width: none;
    padding: 0;
  }
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__dot {
    flex: 1 1 0;
    width: auto !important;
    min-width: 0;
    height: 0.22rem;
  }
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__dot--active {
    width: auto !important;
    height: 0.28rem;
    opacity: 1;
  }
  body.planish-site-body #fiyatlandirma .planish-paid-packages-carousel__dot:not(.planish-paid-packages-carousel__dot--active) {
    opacity: 0.55;
  }
  /* Ücretli carousel → ücretsiz bant: Tailwind space-y-8 + viewport padding fazla boşluk veriyordu */
  body.planish-site-body #fiyatlandirma .planish-laszlo-pricing-stack > .planish-pricing-starter {
    margin-top: 0.75rem !important;
  }
  body.planish-site-body #fiyatlandirma .planish-pricing-starter {
    margin-top: 0;
  }
}

/* Yıllık açıklamada hediye aylı: toplam erişim ay sayısı vurgu */
#fiyatlandirma .planish-pricing-bill-note-em,
body.planish-site-body #fiyatlandirma .planish-pricing-bill-note-em {
  font-weight: 800;
  color: #0f172a;
}
#fiyatlandirma .planish-pricing-dual__bill-note--on-dark .planish-pricing-bill-note-em,
body.planish-site-body
  #fiyatlandirma
  .planish-pricing-dual__bill-note--on-dark
  .planish-pricing-bill-note-em {
  color: var(--planish-pricing-on-chrome);
}

/* Koyu kartlar: Tailwind slate/primary sınıflarını nötr açık tona çek */
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark {
  color: var(--planish-pricing-on-chrome-soft);
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark .text-slate-400,
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark .text-slate-500,
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark .text-slate-600,
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark .text-slate-700 {
  color: var(--planish-pricing-on-chrome-muted) !important;
}
body.planish-site-body #fiyatlandirma .planish-pricing-dual__card--dark .text-primary {
  color: var(--planish-pricing-on-chrome) !important;
}
#fiyatlandirma .planish-pricing-tier__hint .planish-pricing-bill-note-em,
body.planish-site-body #fiyatlandirma .planish-pricing-tier__hint .planish-pricing-bill-note-em {
  color: #0f172a;
}

@media (max-width: 767.98px) {
  #siteHeader.site-header-chrome {
    --tw-ring-shadow: 0 0 #0000 !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 12px 40px rgba(30, 34, 40, 0.12) !important;
  }
  .planish-header-mobile-tab {
    width: 72%;
    max-width: 18rem;
    min-width: 0;
    margin: -0.3rem auto 0;
    padding: 0 0.25rem 0.25rem;
    box-sizing: border-box;
    border-radius: 0 0 1.0625rem 1.0625rem;
    background: rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(18px) saturate(1.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: none;
    box-shadow: none;
    position: relative;
    z-index: 101;
    pointer-events: auto;
    overflow: visible;
  }
  .planish-header-mobile-tab__tongue {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    border-radius: 0 0 0.875rem 0.875rem;
    background: rgba(255, 255, 255, 0.48);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    backdrop-filter: blur(24px) saturate(1.15);
    border: 1px solid rgba(226, 232, 240, 0.55);
    border-top: none;
    box-shadow: none;
    overflow: hidden;
    position: relative;
  }
  .planish-header-mobile-tab__link {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.35rem 0.5rem;
    font-size: clamp(0.72rem, 2.8vw, 0.875rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    background: transparent !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    transition: color 0s;
  }
  .planish-header-mobile-tab__link::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 0.18rem;
    height: 2px;
    border-radius: 9999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .planish-header-mobile-tab__link + .planish-header-mobile-tab__link {
    border-left: 1px solid rgba(239, 242, 247, 0.5);
  }
  .planish-header-mobile-tab__link:hover,
  .planish-header-mobile-tab__link:focus-visible,
  .planish-header-mobile-tab__link:active {
    background: transparent !important;
  }
  .planish-header-mobile-tab__link:hover::after,
  .planish-header-mobile-tab__link:focus-visible::after {
    transform: scaleX(0);
  }
  .planish-header-mobile-tab__link--active::after {
    transform: scaleX(1);
  }
  .planish-header-mobile-tab__link--login,
  .planish-header-mobile-tab__link--login:hover,
  .planish-header-mobile-tab__link--login:focus-visible,
  .planish-header-mobile-tab__link--login:active,
  .planish-header-mobile-tab__link--login.planish-header-mobile-tab__link--active {
    color: #0f172a !important;
  }
  .planish-header-mobile-tab__link--login::after {
    background: var(--planish-site-nav-underline);
  }
  .planish-header-mobile-tab__link--signup,
  .planish-header-mobile-tab__link--signup:hover,
  .planish-header-mobile-tab__link--signup:focus-visible,
  .planish-header-mobile-tab__link--signup:active,
  .planish-header-mobile-tab__link--signup.planish-header-mobile-tab__link--active {
    color: #16a34a !important;
  }
  .planish-header-mobile-tab__link--signup::after {
    background: linear-gradient(90deg, #15803d 0%, #4ade80 100%);
  }
  body.planish-site-body {
    scroll-padding-top: 8.5rem;
  }
  body.planish-site-body .hero-stack > section,
  body.planish-site-body .planish-blog-main > section:first-of-type {
    padding-top: 8.5rem !important;
  }
  body.planish-site-body .planish-blog-main > section.planish-blog-article-nav-section {
    padding-top: 0.5rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.planish-site-body .planish-blog-main > section.planish-blog-other-posts-section {
    padding-top: 0.5rem !important;
    padding-bottom: 2rem !important;
  }
  body.planish-marketing-auth-body {
    scroll-padding-top: 8.5rem;
  }
  body.planish-marketing-auth-body .hero-stack > section {
    padding-top: 8.5rem !important;
  }
  #mobileNav .planish-mobile-nav-sectors__chevron {
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #mobileNav .planish-mobile-nav-sectors__trigger[aria-expanded="true"] .planish-mobile-nav-sectors__chevron {
    transform: rotate(180deg);
  }
  #mobileNav .planish-mobile-nav-sectors__wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #mobileNav .planish-mobile-nav-sectors__wrap.is-open {
    grid-template-rows: 1fr;
  }
  #mobileNav .planish-mobile-nav-sectors__inner {
    overflow: hidden;
    min-height: 0;
  }
  #mobileNav.planish-mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #mobileNav.planish-mobile-nav-panel:not(.is-open) {
    max-height: 0 !important;
    opacity: 0 !important;
    transform: translateY(-0.45rem);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0;
    overflow: hidden;
    pointer-events: none !important;
    border-top-width: 0;
    border-top-color: transparent;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-top-width 0.2s ease;
  }
  #mobileNav.planish-mobile-nav-panel.is-open {
    position: relative;
    z-index: 1;
    max-height: min(85vh, 28rem) !important;
    max-height: min(85dvh, 28rem) !important;
    opacity: 1 !important;
    transform: translateY(0);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    pointer-events: auto !important;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top-width: 1px;
    border-top-color: rgba(226, 232, 240, 0.5);
    border-bottom-left-radius: 0.875rem;
    border-bottom-right-radius: 0.875rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-top-width 0.2s ease;
  }
  @media (prefers-reduced-motion: reduce) {
    #mobileNav.planish-mobile-nav-panel:not(.is-open),
    #mobileNav.planish-mobile-nav-panel.is-open {
      transition-duration: 0.01ms;
    }
    .planish-mobile-nav-overlay {
      transition-duration: 0.01ms;
    }
  }
  .planish-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.32s ease;
    visibility: hidden;
  }
  .planish-mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .planish-mobile-nav-overlay:focus {
    outline: none;
  }
  #headerFixedMount .planish-header-mount-inner {
    position: relative;
    z-index: 2;
  }
  #headerFixedMount.planish-mobile-nav-menu-open #siteHeader {
    position: relative;
    z-index: 5;
  }
  #headerFixedMount.planish-mobile-nav-menu-open .planish-header-mobile-tab {
    z-index: 0;
  }
  #headerFixedMount.planish-mobile-nav-menu-open #siteHeader.site-header-chrome {
    border-bottom: 0 !important;
  }
  #headerFixedMount.planish-mobile-nav-menu-open .planish-header-chrome-surface {
    border-bottom: 0;
    overflow: hidden;
  }
  #headerFixedMount.planish-mobile-nav-menu-open .planish-header-mobile-tab__tongue {
    padding-top: 0.4rem;
  }
  #mobileNav .planish-mobile-nav-sectors__trigger {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  #mobileNav .planish-mobile-nav-sectors__chevron {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    min-height: 1.125rem;
    max-width: 1.125rem;
    max-height: 1.125rem;
    flex-shrink: 0;
    color: currentColor;
    opacity: 0.72;
  }
}
