/* =============================================================================
 * Easy Life — site-specific overrides (üstünde Rovix temasının main.css çalışır)
 *
 * Bu dosya, tema CSS'ini ezen kuralları tutar. Tema dosyalarına asla dokunma —
 * gerekli düzeltmeler burada toplanır.
 * ============================================================================= */


/* -----------------------------------------------------------------------------
 * Design tokens — section spacing scale (4-tier responsive)
 * Modern, kompakt boşluklar. Tüm section padding'leri buradan referans alır.
 * --------------------------------------------------------------------------- */
:root {
  --sp-xs: clamp(32px, 4vw, 48px);
  /* sıkı geçiş (CTA bandı, alt bölüm) */
  --sp-sm: clamp(48px, 6vw, 72px);
  /* kompakt section */
  --sp-md: clamp(64px, 8vw, 96px);
  /* default — çoğu section */
  --sp-lg: clamp(80px, 10vw, 120px);
  /* ferah section (istisnai) */
  --sp-x: clamp(24px, 5vw, 64px);
  /* container yatay padding */
}


/* -----------------------------------------------------------------------------
 * Tema scroll animasyonlarını devre dışı bırak — modern, sade görünüm için.
 * GSAP main.js içeriği inline style ile gizliyor; CSS !important ile her zaman
 * görünür ve transformsuz tutuyoruz. ScrollSmoother (sayfa kaydırma) etkilenmez.
 * --------------------------------------------------------------------------- */
.pxn-fade,
.pxn-zoom,
.pxn-zoom-in,
.pxn-chars-up,
.pxn-chars-reveal,
.pxn-split-text,
.pxn-bounce-y,
.pxn-bounce-x,
.pxn-img-reveal,
.pxn-img-reveal img,
.pxn-fade>*,
.pxn-chars-up>*,
.pxn-chars-reveal>*,
.pxn-split-text>* {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  clip-path: none !important;
  filter: none !important;
}

/* SplitText eklentisi metni karakterlere böler — onları da göster */
.pxn-split-text [data-split-char],
.pxn-chars-up [data-split-char],
.pxn-chars-reveal [data-split-char],
.pxn-split-text [class*="split-"],
.pxn-chars-up [class*="split-"],
.pxn-chars-reveal [class*="split-"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}


/* ------------------------------------------------------------------------
 * Blog görsel oranı — listing, detay ve anasayfa kart bölümlerinde tutarlı
 * görünüm için tüm blog görselleri 16:9 oranında.
 * ------------------------------------------------------------------------ */

/* Blog listing + blog detay (büyük thumbnail) */
.pxn_post_thumbnail {
  display: block;
  width: 100%;
}

.pxn_post_thumbnail>a {
  display: block;
  width: 100%;
}

.pxn_post_thumbnail>a>img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}


/* ----------------------------------------------------------------------------
   Branches — premium zigzag layout (pages/branches.php)
   --------------------------------------------------------------------------- */
.pxn-branches {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
}

.pxn-branch-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.pxn-branch-card:last-child {
  margin-bottom: 0;
}

.pxn-branch-card.is-reverse {
  grid-template-columns: 1fr 1.05fr;
}

.pxn-branch-card.is-reverse .pxn-branch-card__info {
  order: -1;
}

.pxn-branch-card__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(6, 61, 47, 0.18), 0 6px 16px rgba(6, 61, 47, 0.06);
  background: linear-gradient(135deg, #0a4a3a 0%, #063d2f 100%);
}

.pxn-branch-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.pxn-branch-card:hover .pxn-branch-card__visual img {
  transform: scale(1.06);
}

.pxn-branch-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 61, 47, 0) 35%, rgba(6, 61, 47, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px 32px;
  z-index: 1;
}

.pxn-branch-card__index {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pxn-color-theme-primary, #fbd819);
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 12px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.pxn-branch-card__label {
  font-size: clamp(72px, 9vw, 130px);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.9;
  letter-spacing: -2px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.pxn-branch-card__info {
  padding: 8px 0;
}

.pxn-branch-card__country {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--pxn-color-theme-secondary, #063d2f);
  background: var(--pxn-color-theme-primary, #fbd819);
  padding: 7px 16px;
  border-radius: 30px;
  letter-spacing: .4px;
  margin-bottom: 18px;
}

.pxn-branch-card__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--pxn-color-heading, #0c0c0c);
  line-height: 1.15;
  margin: 0 0 18px;
}

.pxn-branch-card__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px dashed #d6dcd9;
}

.pxn-branch-card__address i {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 18px;
  color: var(--pxn-color-theme-secondary, #063d2f);
}

.pxn-branch-card__meta {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pxn-branch-card__meta li {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.pxn-branch-card__meta-label {
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pxn-branch-card__meta a {
  color: var(--pxn-color-heading, #0c0c0c);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s;
}

.pxn-branch-card__meta a:hover {
  color: var(--pxn-color-theme-secondary, #063d2f);
}

.pxn-branch-card__cta {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 991px) {

  .pxn-branch-card,
  .pxn-branch-card.is-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 70px;
  }

  .pxn-branch-card.is-reverse .pxn-branch-card__info {
    order: 0;
  }
}

@media (max-width: 575px) {
  .pxn-branch-card__meta li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .pxn-branch-card__overlay {
    padding: 18px 22px;
  }

  .pxn-branch-card__index {
    top: 14px;
    left: 18px;
  }
}

/* Clients section — simetrik üst/alt nefes payı (about'un padding-bottom'u 0'a alındı) */
.pxn-clients-section .pxn-h1_client_wrapper {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

/* Brands marquee — sürekli yatay kayan logo bandı (CSS infinite scroll) */
.brands-marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 56px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brands-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  will-change: transform;
}

.brands-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(56px, 6vw, 88px);
}

.brands-marquee__item .pxn_client_logo_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.brands-marquee__item img {
  max-height: 100%;
  width: auto;
  max-width: clamp(120px, 14vw, 200px);
  object-fit: contain;
  display: block;
}

/* Features kartları 992-1199px aralığında (small desktop) 2 sütuna düşür —
   3 sütun bu genişlikte sıkışık görünüyor. 1200+ tema'nın 3 sütun default'u. */
@media (min-width: 992px) and (max-width: 1199px) {
  .pxn-h3_feature_wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Beyaz logolar beyaz zeminde görünsün diye griye çevir (statik, hover yok) */
.pxn-clients-section .pxn_client_logo_inner img {
  filter: brightness(0);
  opacity: 0.45;
}


/* Breadcrumb linkleri — tema sarı vurgu rengiyle (current item beyaz kalır) */
.pxn_breadcrumb a {
  color: var(--pxn-color-theme-primary, #fbd819);
  transition: opacity .15s ease;
}

.pxn_breadcrumb a:hover {
  opacity: .85;
}

/* Page header — toplam yükseklik aynı (tema default 200/200 = 400px),
   sadece içerik bloğunu biraz aşağı kaydırmak için padding dağılımını ayarla. */
.pxn-page-header {
  padding-top: 260px;
  padding-bottom: 140px;
}

/* Why Choose section — tema sadece padding-top veriyor, alta da nefes payı ver */
.pxn-h1-why-choose-section {
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .pxn-h1-why-choose-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .pxn-h1-why-choose-section {
    padding-bottom: 60px;
  }
}

/* Footer — kendinden önceki yeşil section'lara yapışmasın diye üstte nefes payı. */
.pxn-footer {
  margin-top: 120px;
}

@media (max-width: 991px) {
  .pxn-footer {
    margin-top: 90px;
  }
}

@media (max-width: 575px) {
  .pxn-footer {
    margin-top: 60px;
  }
}

/* CTA section — Why Choose veya başka yeşil bölümle arasına beyaz boşluk yarat.
   margin-top section'ı body bg üzerinde aşağı iter; aralarda beyaz şerit oluşur. */
.pxn-h3-cta-section {
  margin-top: 120px;
  margin-bottom: 120px;
}

@media (max-width: 991px) {
  .pxn-h3-cta-section {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

@media (max-width: 575px) {
  .pxn-h3-cta-section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

/* Rich-content tipografisi — service detail ve blog detay sayfalarında
   DB'den gelen HTML içerik için tutarlı boşluk ve hiyerarşi. */
.pxn_service_long_content,
.pxn_post_content,
.pxn-rich-content {
  font-size: 16px;
  line-height: 1.75;
  color: #3b3b3b;
}

.pxn_service_long_content>*:first-child,
.pxn_post_content>*:first-child,
.pxn-rich-content>*:first-child {
  margin-top: 0;
}

.pxn_service_long_content p,
.pxn_post_content p,
.pxn-rich-content p {
  margin-top: 0;
  margin-bottom: 1.1em;
}

.pxn_service_long_content h2,
.pxn_post_content h2,
.pxn-rich-content h2 {
  margin-top: 1.8em;
  margin-bottom: 0.7em;
  font-weight: 700;
  line-height: 1.25;
}

.pxn_service_long_content h3,
.pxn_post_content h3,
.pxn-rich-content h3 {
  margin-top: 1.7em;
  margin-bottom: 0.7em;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pxn-color-heading, #0c0c0c);
}

.pxn_service_long_content h4,
.pxn_post_content h4,
.pxn-rich-content h4 {
  margin-top: 1.4em;
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: 600;
  color: var(--pxn-color-heading, #0c0c0c);
}

.pxn_service_long_content ul,
.pxn_service_long_content ol,
.pxn_post_content ul,
.pxn_post_content ol,
.pxn-rich-content ul,
.pxn-rich-content ol {
  margin: 0.8em 0 1.4em;
  padding-left: 1.5em;
}

.pxn_service_long_content li,
.pxn_post_content li,
.pxn-rich-content li {
  margin-bottom: 0.55em;
  line-height: 1.65;
}

.pxn_service_long_content li>strong:first-child,
.pxn_post_content li>strong:first-child,
.pxn-rich-content li>strong:first-child {
  color: var(--pxn-color-heading, #0c0c0c);
}

.pxn_service_long_content blockquote,
.pxn_post_content blockquote,
.pxn-rich-content blockquote {
  margin: 1.5em 0;
  padding: 1em 1.25em;
  border-left: 4px solid var(--pxn-color-theme-primary, #063d2f);
  background: #f6f8f7;
  font-style: italic;
  color: #4a4a4a;
}

.pxn_service_long_content a,
.pxn_post_content a,
.pxn-rich-content a {
  color: var(--pxn-color-theme-secondary, #063d2f);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.pxn_service_long_content a:hover,
.pxn_post_content a:hover,
.pxn-rich-content a:hover {
  opacity: 0.85;
}

/* Flash toast — modern kart tasarımı: sol accent bar, ikon, başlık + mesaj. */
.flash-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 320px;
  max-width: 420px;
  padding: 16px 48px 16px 18px;
  background: #ffffff;
  border-left: 4px solid #6b7280;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.05);
  animation: flashSlideIn .35s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
}

.flash-toast.success {
  border-left-color: #1f7a3a;
}

.flash-toast.error {
  border-left-color: #dc2626;
}

.flash-toast__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.flash-toast.success .flash-toast__icon {
  background: #e8f5ed;
  color: #1f7a3a;
}

.flash-toast.error .flash-toast__icon {
  background: #fee2e2;
  color: #c81e1e;
}

.flash-toast__body {
  flex: 1;
  min-width: 0;
}

.flash-toast__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0c0c0c;
  margin-bottom: 3px;
  line-height: 1.3;
}

.flash-toast__message {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.55;
  word-wrap: break-word;
}

.flash-toast__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}

.flash-toast__close:hover {
  color: #1f2937;
  background: #f3f4f6;
}

@keyframes flashSlideIn {
  from {
    transform: translateX(50px) scale(.96);
    opacity: 0;
  }

  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .flash-toast {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    min-width: 0;
  }
}

/* Empty state — partials/empty-state.php */
.pxn-empty-state {
  text-align: center;
  padding: 56px 24px;
  border: 1px dashed #d8dde3;
  border-radius: 14px;
  background: #fafbfc;
}

.pxn-empty-state__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--pxn-color-theme-primary, #0c5f4e);
  box-shadow: 0 4px 18px rgba(12, 95, 78, 0.08);
}

.pxn-empty-state__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--pxn-color-heading, #0c0c0c);
}

.pxn-empty-state__message {
  font-size: 15px;
  color: #6b7280;
  margin: 0 auto 22px;
  max-width: 460px;
  line-height: 1.6;
}

.pxn-empty-state__cta {
  display: inline-flex;
  align-items: center;
}

/* Blog detay meta — ikon ve yazı dikeyde tam ortalı dursun */
.pxn_post_meta .meta {
  align-items: center;
  line-height: 1;
}

.pxn_post_meta .meta i,
.pxn_post_meta .meta svg {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.pxn_post_meta .meta .meta_text,
.pxn_post_meta .meta .meta_text a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Anasayfa / about kart bölümü (partials/blog-section.php) */
.pxn_blog_post_3 .blog_image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.pxn_blog_post_3 .blog_image>a {
  display: block;
  width: 100%;
}

.pxn_blog_post_3 .blog_image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}


/* ============================================================================
   Services — Cinematic horizontal sticky scroll (partials/services-section.php)
   ============================================================================ */
.svc-stage {
  --svc-bg: #0f3a2e;
  --svc-bg-soft: #134736;
  --svc-fg: #ffffff;
  --svc-muted: rgba(255, 255, 255, 0.65);
  --svc-accent: #f7d046;
  --svc-line: rgba(255, 255, 255, 0.12);

  position: relative;
  background: radial-gradient(120% 80% at 0% 0%, var(--svc-bg-soft) 0%, var(--svc-bg) 60%);
  color: var(--svc-fg);
  overflow: hidden;
}

.svc-stage__pin {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(24px, 3vh, 40px) 0 clamp(20px, 3vh, 32px);
}

.svc-stage__header {
  padding: 0 clamp(24px, 6vw, 96px);
  max-width: 1280px;
}

.svc-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.svc-stage__eyebrow>span:first-child {
  color: var(--svc-accent);
  font-weight: 800;
}

.svc-stage__eyebrow-line {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.svc-stage__title {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0;
  max-width: 24ch;
  color: var(--svc-fg);
}

.svc-stage__viewport {
  position: relative;
  overflow: hidden;
  margin-top: clamp(40px, 5vh, 72px);
}

.svc-stage__track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 clamp(24px, 6vw, 96px);
  will-change: transform;
}

.svc-card {
  flex: 0 0 auto;
  width: min(46vw, 580px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--svc-line);
  border-radius: 22px;
  padding: clamp(22px, 2.2vw, 32px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.5s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 208, 70, 0.45);
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.45);
}

.svc-card__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 28px);
  height: 100%;
}

.svc-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  order: 2;
}

.svc-card__meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--svc-muted);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.svc-card__index {
  color: var(--svc-accent);
  font-weight: 800;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.svc-card__divider {
  height: 1px;
  background: var(--svc-line);
  width: 28px;
  align-self: center;
}

.svc-card__count {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--svc-muted);
}

.svc-card__title {
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--svc-fg);
}

.svc-card__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  transition: background-size 0.4s ease;
}

.svc-card__title a:hover {
  background-size: 100% 1.5px;
}

.svc-card__excerpt {
  color: var(--svc-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-card__tags {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.svc-card__tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
  border: 0;
  border-radius: 0;
  position: relative;
}

.svc-card__tags li+li {
  padding-left: 14px;
}

.svc-card__tags li+li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--svc-accent);
  font-weight: 700;
}

.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  width: fit-content;
  background: var(--svc-accent);
  color: var(--svc-bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 8px;
}

.svc-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(247, 208, 70, 0.45);
  color: var(--svc-bg);
}

.svc-card__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--svc-bg);
  color: var(--svc-accent);
  transition: transform 0.3s ease;
}

.svc-card__cta-arrow svg {
  width: 14px;
  height: 14px;
}

.svc-card__cta:hover .svc-card__cta-arrow {
  transform: translateX(3px);
}

.svc-card__media {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: clamp(220px, 32vh, 320px);
  background: var(--svc-bg-soft);
  order: 1;
}

.svc-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.06);
}

.svc-card__media-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--svc-accent);
  color: var(--svc-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}

.svc-stage__footer {
  margin-top: clamp(16px, 2.5vh, 32px);
  padding: 0 clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.svc-stage__progress {
  position: relative;
  flex: 1 1 auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.svc-stage__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--svc-accent) 0%, #fce17a 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(247, 208, 70, 0.4);
}

.svc-stage__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--svc-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.svc-stage__hint svg {
  width: 14px;
  height: 14px;
  color: var(--svc-accent);
  animation: svcHintNudge 1.8s ease-in-out infinite;
}

@keyframes svcHintNudge {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

/* Mobile fallback — dikey yığın, pin yok */
@media (max-width: 991px) {
  .svc-stage__pin {
    min-height: 0;
    grid-template-rows: auto auto auto;
    padding: 64px 0 48px;
  }

  .svc-stage__viewport {
    overflow: visible;
  }

  .svc-stage__track {
    flex-direction: column;
    gap: 20px;
    transform: none !important;
  }

  .svc-card {
    width: 100%;
  }

  .svc-card__inner {
    display: flex;
    flex-direction: column;
  }

  .svc-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .svc-stage__footer {
    display: none;
  }
}


/* ============================================================================
   About (Minimal) — Compact: image + dark card (lead+feats+cta) + clients strip
   (pages/home.php)
   ============================================================================ */
.about-min {
  --am-ink: #0f3a2e;
  --am-muted: #4a5d56;
  --am-accent: #f7d046;
  --am-bg: #faf7f0;
  --am-line: rgba(15, 58, 46, 0.12);

  position: relative;
  background: var(--am-bg);
  color: var(--am-ink);
  padding: var(--sp-md) 0;
}

.about-min__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}

/* ---- Header ---- */
.about-min__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
}

.about-min__eye {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--am-muted);
}

.about-min__eye>span:first-child {
  color: var(--am-ink);
  font-feature-settings: "tnum" 1;
}

.about-min__eye-line {
  width: 36px;
  height: 1px;
  background: var(--am-ink);
  opacity: 0.4;
}

.about-min__title {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--am-ink);
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}

.about-min__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, transparent 0 0, var(--am-accent) 0 100%);
  background-size: 100% 14%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 4px;
}

/* ---- Row: image + copy card ---- */
.about-min__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(10px, 1vw, 16px);
  align-items: stretch;
}

.about-min__media {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--am-ink);
}

.about-min__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-min__copy {
  position: relative;
  background: var(--am-ink);
  color: #ffffff;
  border-radius: 18px;
  padding: clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, 2vw, 28px);
  overflow: hidden;
  isolation: isolate;
}

/* Decoration — sağ üst köşede yarım partial ring (subtle accent) */
.about-min__copy::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(247, 208, 70, 0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-min__copy::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(247, 208, 70, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-min__copy>* {
  position: relative;
  z-index: 1;
}

/* Brand icon — sağ kart başında kompakt sarı badge */
.about-min__brand-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(247, 208, 70, 0.14);
  color: var(--am-accent);
  flex-shrink: 0;
}

.about-min__brand-icon svg {
  width: 22px;
  height: 22px;
}

/* Manifesto lead — tek vurgulu paragraf, premium editorial tipografi */
.about-min__lead {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: #ffffff;
  text-wrap: balance;
  max-width: 30ch;
}

.about-min__lead em {
  font-style: italic;
  font-weight: 500;
  color: var(--am-accent);
}

/* Yatay timeline çizgisi — kesikli sarı, dot'ların ortasından geçer */
.about-min__process::before {
  content: "";
  position: absolute;
  top: 44px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1.5px;
  background-image: linear-gradient(90deg, rgba(247, 208, 70, 0.45) 50%, transparent 50%);
  background-size: 10px 1.5px;
  background-repeat: repeat-x;
  z-index: 0;
}

.about-min__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  min-width: 0;
  padding: 0 8px;
}

/* Numbered dot — line'ı keser, koyu yeşil halka ile line'dan ayrılır */
.about-min__step-num {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--am-ink);
  color: var(--am-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-feature-settings: "tnum" 1;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 1.5px var(--am-accent),
    0 0 0 6px var(--am-ink),
    0 0 0 7px rgba(247, 208, 70, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.about-min__step:hover .about-min__step-num {
  background: var(--am-accent);
  color: var(--am-ink);
  box-shadow:
    inset 0 0 0 1.5px var(--am-accent),
    0 0 0 6px var(--am-ink),
    0 0 0 7px rgba(247, 208, 70, 0.35),
    0 0 24px rgba(247, 208, 70, 0.4);
  transform: scale(1.08);
}

/* İlk step otomatik aktif görünüm — sürekli pulse */
.about-min__step:first-child .about-min__step-num::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 208, 70, 0.6);
  animation: stepPulse 2.4s ease-out infinite;
}

@keyframes stepPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.about-min__step-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.2;
  min-width: 0;
}

.about-min__step-name {
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.about-min__step-dur {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--am-accent);
  opacity: 0.75;
}

@media (max-width: 767px) {
  .about-min__process {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .about-min__process::before {
    display: none;
  }

  .about-min__step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
  }

  .about-min__step-num {
    box-shadow:
      inset 0 0 0 1.5px var(--am-accent),
      0 0 0 0 var(--am-ink);
  }

  .about-min__step:first-child .about-min__step-num::after {
    display: none;
  }
}

/* Features (2x2 grid) — kutusuz typography listesi */
.about-min__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px clamp(20px, 2.5vw, 36px);
}

.about-min__feat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  transition: transform 0.3s ease;
}

.about-min__feat:hover {
  transform: translateX(2px);
}

.about-min__feat-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--am-accent);
  font-feature-settings: "tnum" 1;
  padding-top: 6px;
}

.about-min__feat-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--am-accent);
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-min__feat-icon svg {
  width: 18px;
  height: 18px;
}

.about-min__feat-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.about-min__feat-title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.about-min__feat-desc {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0;
}

/* Clients marquee — sağ kartın altına yapışık, label inline solda */
.about-min__clients-inline {
  margin: 0 calc(clamp(24px, 2.4vw, 36px) * -1) calc(clamp(24px, 2.4vw, 36px) * -1);
  padding: 22px clamp(24px, 2.4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 32px);
  overflow: hidden;
}

.about-min__clients-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: clamp(14px, 1.5vw, 22px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
  white-space: nowrap;
}

.about-min__clients-label svg {
  width: 14px;
  height: 14px;
  color: var(--am-accent);
  flex-shrink: 0;
}

.about-min__clients-inline .brands-marquee {
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.about-min__clients-inline .brands-marquee__track {
  align-items: center;
  gap: clamp(40px, 5vw, 72px) !important;
}

.about-min__clients-inline .brands-marquee__item {
  height: 60px;
  display: flex;
  align-items: center;
}

.about-min__clients-inline .pxn_client_logo_inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.about-min__clients-inline .pxn_client_logo_inner img {
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.3s ease;
  max-height: 60px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}

.about-min__clients-inline .pxn_client_logo_inner:hover img {
  opacity: 1;
}

@media (max-width: 575px) {
  .about-min__clients-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .about-min__clients-label {
    padding-right: 0;
    border-right: 0;
  }

  .about-min__clients-inline .brands-marquee {
    width: 100%;
  }
}

/* ---- Mobile ---- */
@media (max-width: 991px) {
  .about-min__row {
    grid-template-columns: 1fr;
  }

  .about-min__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .about-min__feats {
    grid-template-columns: 1fr;
  }

  .about-min__feat:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
  }

  .about-min__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================================
   Hero (v2) — Compositional dark hero with rotating word + photo deck
   (pages/home.php)
   ============================================================================ */
.hero-x {
  --hx-ink: #ffffff;
  --hx-muted: rgba(255, 255, 255, 0.75);
  --hx-soft: rgba(255, 255, 255, 0.55);
  --hx-line: rgba(255, 255, 255, 0.14);
  --hx-accent: #f7d046;
  --hx-bg-1: #0a2d23;
  --hx-bg-2: #0f3a2e;

  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: clamp(96px, 12vh, 140px);
  padding-bottom: clamp(28px, 4vh, 56px);
  overflow: hidden;
  color: var(--hx-ink);
  background: var(--hx-bg-1);
}

/* ---- BG layer ---- */
.hero-x__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 70% 30%, rgba(247, 208, 70, 0.06) 0%, rgba(247, 208, 70, 0) 60%),
    linear-gradient(155deg, var(--hx-bg-2) 0%, var(--hx-bg-1) 60%, #06241c 100%);
}

.hero-x__grain {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 90%);
  opacity: 0.7;
}

.hero-x__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-x__glow--accent {
  top: -10%;
  right: -8%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(247, 208, 70, 0.28) 0%, rgba(247, 208, 70, 0) 70%);
  animation: hxGlowFloat 9s ease-in-out infinite alternate;
}

.hero-x__glow--deep {
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(circle, rgba(15, 58, 46, 0.6) 0%, rgba(15, 58, 46, 0) 70%);
  animation: hxGlowFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes hxGlowFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -30px) scale(1.1);
  }
}

/* ---- Layout ---- */
.hero-x__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 4vh, 48px);
}

.hero-x__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-x__eyebrow,
.hero-x__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hx-ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hx-line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-x__live {
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 13px;
  color: var(--hx-soft);
}

.hero-x__dot,
.hero-x__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hx-accent);
  box-shadow: 0 0 0 4px rgba(247, 208, 70, 0.22);
  animation: hxPulse 2.2s ease-in-out infinite;
}

.hero-x__live-dot {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.22);
}

@keyframes hxPulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(247, 208, 70, 0.22);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(247, 208, 70, 0);
  }
}

/* ---- Main split ---- */
.hero-x__main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  flex: 1 1 auto;
}

/* ---- Copy (left) ---- */
.hero-x__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.6vh, 30px);
}

.hero-x__title {
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  color: var(--hx-ink);
  text-wrap: balance;
}

.hero-x__title-line {
  display: block;
}

.hero-x__rotate {
  position: relative;
  display: inline-block;
  height: 1.03em;
  line-height: 1.03;
  vertical-align: baseline;
  overflow: visible;
  margin-right: 0.25em;
}

.hero-x__word {
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  line-height: 1.03;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30%);
  color: var(--hx-accent);
  font-style: italic;
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding-right: 0.1em;
}

.hero-x__word.is-active {
  opacity: 1;
  transform: translateY(0.08em);
  position: relative;
}

.hero-x__lead {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--hx-muted);
  margin: 0;
  max-width: 52ch;
}

.hero-x__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero-x__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--hx-accent);
  color: #0f3a2e;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-x__cta:hover {
  transform: translateY(-2px);
  color: #0f3a2e;
  box-shadow: 0 18px 40px -12px rgba(247, 208, 70, 0.55);
}

.hero-x__cta svg {
  transition: transform 0.3s ease;
}

.hero-x__cta:hover svg {
  transform: translateX(3px);
}

.hero-x__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--hx-ink);
  transition: opacity 0.3s ease;
}

.hero-x__phone:hover {
  opacity: 0.85;
  color: var(--hx-ink);
}

.hero-x__phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--hx-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hx-accent);
}

.hero-x__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-x__phone-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hx-soft);
}

.hero-x__phone-no {
  font-size: 16px;
  font-weight: 600;
  margin-top: 3px;
}

.hero-x__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.hero-x__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hx-muted);
}

.hero-x__trust svg {
  color: var(--hx-accent);
  flex: 0 0 auto;
}

/* ---- Visual (right) — showcase carousel ---- */
.hero-x__visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  align-self: center;
}

.hero-x__showcase {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Stage (büyük görsel alanı) */
.hero-x__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 56vh;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}

.hero-x__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-x__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-x__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-x__stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-x__stage-meta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.hero-x__stage-count {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.hero-x__stage-count [data-stage-current] {
  color: #ffffff;
  font-size: 14px;
}

.hero-x__stage-sep {
  opacity: 0.5;
  margin: 0 2px;
}

.hero-x__stage-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f3a2e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-x__stage-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.hero-x__stage-progress-bar {
  display: block;
  height: 100%;
  background: #f7d046;
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* Chips (sektör navigation) — 5'li tek sıra */
.hero-x__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.hero-x__chips>li {
  flex: 1 1 0;
  min-width: 0;
}

.hero-x__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-x__chip-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-x__chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-x__chip.is-active {
  background: #f7d046;
  border-color: #f7d046;
  color: #0f3a2e;
}

.hero-x__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
}

.hero-x__chip:hover .hero-x__chip-dot {
  background: #ffffff;
}

.hero-x__chip.is-active .hero-x__chip-dot {
  background: #0f3a2e;
}

/* ---- Scroll hint ---- */
.hero-x__scroll {
  position: absolute;
  bottom: clamp(20px, 4vh, 40px);
  right: clamp(24px, 6vw, 96px);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--hx-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-x__scroll:hover {
  color: var(--hx-ink);
}

.hero-x__scroll-line {
  position: relative;
  width: 1px;
  height: 56px;
  background: var(--hx-line);
  overflow: hidden;
}

.hero-x__scroll-line span {
  position: absolute;
  top: -56px;
  left: 0;
  width: 1px;
  height: 56px;
  background: var(--hx-accent);
  animation: hxScroll 2.2s ease-in-out infinite;
}

@keyframes hxScroll {
  0% {
    top: -56px;
  }

  60% {
    top: 56px;
  }

  100% {
    top: 56px;
  }
}

/* ---- Tablet/Mobile ---- */
@media (max-width: 991px) {
  .hero-x {
    padding-top: clamp(90px, 12vh, 130px);
    padding-bottom: clamp(24px, 4vh, 48px);
  }

  .hero-x__main {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vh, 40px);
  }

  .hero-x__visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-x__stage {
    aspect-ratio: 16 / 10;
    max-height: 32vh;
    border-radius: 20px;
  }

  .hero-x__chips {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-x__topbar {
    justify-content: flex-start;
  }

  .hero-x__live {
    display: none;
  }

  .hero-x__scroll {
    display: none;
  }

  .hero-x__trust {
    gap: 10px 18px;
    font-size: 12px;
  }

  .hero-x__lead {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-x {
    min-height: auto;
  }

  .hero-x__inner {
    justify-content: flex-start;
    gap: clamp(20px, 3vh, 32px);
  }

  .hero-x__visual {
    max-width: 100%;
  }

  .hero-x__stage {
    aspect-ratio: 16 / 11;
    max-height: 36vh;
  }

  .hero-x__title {
    font-size: clamp(30px, 8.5vw, 44px);
  }

  .hero-x__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-x__cta {
    justify-content: center;
  }
}

/* Kısa landscape ekranlar (örn. mobil yatay) — içerik taşmasın */
@media (max-height: 700px) and (min-width: 992px) {
  .hero-x__title {
    font-size: clamp(32px, 4vw, 56px);
  }

  .hero-x__copy {
    gap: 16px;
  }

  .hero-x__stage {
    max-height: 60vh;
    aspect-ratio: 16 / 11;
  }

  .hero-x__inner {
    gap: 20px;
  }

  .hero-x {
    padding-top: clamp(80px, 10vh, 110px);
  }
}


/* ============================================================================
   Features — Connected timeline (partials/features-section.php)
   ============================================================================ */
.features-timeline {
  --ft-ink: #0f3a2e;
  --ft-muted: #3a4d47;
  --ft-accent: #f7d046;
  --ft-line: rgba(15, 58, 46, 0.12);
  --ft-soft: #f7f9f7;
  --ft-bg: #ffffff;

  position: relative;
  background: var(--ft-bg);
  color: var(--ft-ink);
  padding: var(--sp-lg) 0;
}

.features-timeline__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
}

.features-timeline__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.features-timeline__eyebrow {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ft-ink);
  background: var(--ft-accent);
  padding: 7px 14px;
  border-radius: 999px;
}

.features-timeline__title {
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ft-ink);
  margin: 0;
  max-width: 22ch;
}

/* ---- Track + line ---- */
.features-timeline__track {
  position: relative;
}

.features-timeline__line {
  position: absolute;
  top: 27px;
  /* matches node center (node 56px → 28px center; -1 for 2px line) */
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0,
      var(--ft-line) 8%,
      var(--ft-accent) 18%,
      var(--ft-accent) 82%,
      var(--ft-line) 92%,
      transparent 100%);
  z-index: 1;
  border-radius: 2px;
}

.features-timeline__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  position: relative;
  z-index: 2;
}

/* ---- Step ---- */
.ft-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 clamp(8px, 1.5vw, 20px);
}

.ft-step__node {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ft-bg);
  border: 2px solid var(--ft-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ft-step:hover .ft-step__node {
  transform: scale(1.08);
  box-shadow: 0 12px 28px -8px rgba(247, 208, 70, 0.5);
}

.ft-step__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ft-accent);
  box-shadow: 0 0 0 4px rgba(247, 208, 70, 0.22);
}

.ft-step__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ft-ink);
  font-variant-numeric: tabular-nums;
  margin: 0;
}

.ft-step__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--ft-ink);
  color: var(--ft-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 4px 0 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ft-step:hover .ft-step__icon {
  background: var(--ft-accent);
  color: var(--ft-ink);
  transform: rotate(-6deg);
}

.ft-step__title {
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--ft-ink);
  margin: 12px 0 0;
  letter-spacing: -0.005em;
}

.ft-step__desc {
  color: var(--ft-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 34ch;
}

.ft-step__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ft-ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.ft-step__cta:hover {
  color: var(--ft-ink);
  border-bottom-color: var(--ft-accent);
  gap: 12px;
}

.ft-step__cta svg {
  transition: transform 0.3s ease;
}

.ft-step__cta:hover svg {
  transform: translateX(2px);
}

/* ---- Tablet/Mobile ---- */
@media (max-width: 991px) {
  .features-timeline {
    padding: 64px 0;
  }

  .features-timeline__steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Vertical line on left */
  .features-timeline__line {
    top: 28px;
    bottom: 28px;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg,
        transparent 0,
        var(--ft-accent) 8%,
        var(--ft-accent) 92%,
        transparent 100%);
  }

  .ft-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto auto auto auto;
    column-gap: 20px;
    row-gap: 8px;
  }

  .ft-step__node {
    grid-column: 1;
    grid-row: 1;
  }

  .ft-step__num {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin: 0;
    align-self: center;
  }

  .ft-step__icon {
    grid-column: 2;
    grid-row: 2;
    margin: 6px 0 0;
  }

  .ft-step__title {
    grid-column: 2;
    grid-row: 3;
    margin: 0;
  }

  .ft-step__desc {
    grid-column: 2;
    grid-row: 4;
    max-width: none;
  }

  .ft-step__cta {
    grid-column: 2;
    grid-row: 5;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .features-timeline__header {
    margin-bottom: 40px;
  }
}


/* ============================================================================
   Flow v2 — Alternating photo+content phases with SVG connectors
   (pages/home.php)
   ============================================================================ */
.flow-v2 {
  --fv-ink: #0f3a2e;
  --fv-muted: #4a5d56;
  --fv-accent: #f7d046;
  --fv-cream: #f7f4ee;
  --fv-bg: #f5f4ef;
  --fv-line: rgba(15, 58, 46, 0.1);

  position: relative;
  background: var(--fv-bg);
  color: var(--fv-ink);
  padding: var(--sp-md) 0;
  overflow: hidden;
  isolation: isolate;
}

.flow-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(247, 208, 70, 0.08), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(15, 58, 46, 0.04), transparent 70%);
  pointer-events: none;
}

.flow-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
}

/* ---- Header ---- */
.flow-v2__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.flow-v2__eye {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fv-muted);
}

.flow-v2__eye>span:first-child {
  color: var(--fv-ink);
  font-feature-settings: "tnum" 1;
}

.flow-v2__eye-line {
  width: 36px;
  height: 1px;
  background: var(--fv-ink);
  opacity: 0.35;
}

.flow-v2__title {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--fv-ink);
  margin: 0;
  text-wrap: balance;
}

.flow-v2__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, transparent 0 0, var(--fv-accent) 0 100%);
  background-size: 100% 14%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 4px;
}


.flow-v2__lead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--fv-muted);
  margin: 0;
}

/* ---- Phases ---- */
.flow-v2__phases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: phase;
}

.flow-v2__phase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  min-height: 380px;
}

.flow-v2__phase:first-child {
  padding-top: 0;
}

.flow-v2__phase:last-child {
  padding-bottom: 0;
}

/* Alternating: photo right, body left */
.flow-v2__phase.is-alt {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.flow-v2__phase.is-alt .flow-v2__photo {
  order: 2;
}

.flow-v2__phase.is-alt .flow-v2__body {
  order: 1;
}

/* Phase head — number badge + title inline */
.flow-v2__phase-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

/* Solid green number badge */
.flow-v2__phase-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fv-ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
  flex-shrink: 0;
}

/* ---- Photo ---- */
.flow-v2__photo {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--fv-ink);
  box-shadow: 0 30px 60px -25px rgba(15, 58, 46, 0.4);
  z-index: 2;
}

.flow-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-v2__photo:hover img {
  transform: scale(1.05);
}

.flow-v2__photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--fv-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.flow-v2__photo-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fv-accent);
  box-shadow: 0 0 0 3px rgba(247, 208, 70, 0.3);
}

.flow-v2__photo-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 58, 46, 0.7);
  color: var(--fv-accent);
  border: 1px solid rgba(247, 208, 70, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

/* ---- Body ---- */
.flow-v2__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0;
}

.flow-v2__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fv-muted);
}

.flow-v2__meta-step {
  color: var(--fv-ink);
  padding: 5px 10px;
  background: rgba(15, 58, 46, 0.07);
  border-radius: 999px;
}

.flow-v2__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fv-muted);
  opacity: 0.5;
}

.flow-v2__meta-dur {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.08em;
}

.flow-v2__meta-dur svg {
  color: var(--fv-accent);
}

.flow-v2__phase-title {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--fv-ink);
  margin: 0;
  text-wrap: balance;
}

.flow-v2__phase-desc {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--fv-muted);
  margin: 0;
  max-width: 52ch;
}

.flow-v2__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Pill bullet — açık bg rounded, icon + text inline */
.flow-v2__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--fv-cream);
  border: 1px solid rgba(15, 58, 46, 0.06);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--fv-ink);
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.25s ease, transform 0.25s ease;
}

.flow-v2__bullets li:hover {
  background: #ffffff;
  transform: translateX(4px);
}

.flow-v2__bullet-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fv-ink);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flow-v2__bullet-icon svg {
  width: 16px;
  height: 16px;
}

/* ---- Connector (SVG curve between phases) ---- */
.flow-v2__connector {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 120px;
  color: var(--fv-ink);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.flow-v2__connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ---- Bottom feature row (4 col) ---- */
.flow-v2__features {
  list-style: none;
  padding: clamp(20px, 2.5vw, 32px) 0 0;
  margin: clamp(8px, 1.5vw, 20px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  border-top: 1px solid var(--fv-line);
}

.flow-v2__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.flow-v2__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fv-ink);
  color: var(--fv-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-v2__feature-icon svg {
  width: 18px;
  height: 18px;
}

.flow-v2__feature-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.flow-v2__feature-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--fv-ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.flow-v2__feature-desc {
  font-size: 12.5px;
  color: var(--fv-muted);
  line-height: 1.5;
}

/* ---- Mobile ---- */
@media (max-width: 991px) {

  .flow-v2__phase,
  .flow-v2__phase.is-alt {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 36px 0;
  }

  .flow-v2__phase.is-alt .flow-v2__photo,
  .flow-v2__phase.is-alt .flow-v2__body {
    order: initial;
  }

  .flow-v2__connector {
    display: none;
  }

  .flow-v2__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .flow-v2__features {
    grid-template-columns: 1fr;
  }
}


/* ============================================================================
   Header (x) — Corporate glassmorphism (partials/header.php)
   Eski theme .pxn-header-3 stillerini ezer.
   ============================================================================ */
/* Tek header — position fixed her zaman tepede.
   Scroll'a göre `.is-scrolled` class'ı eklenir ve solid stile geçer. */
.head-x,
.head-x.pxn-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #0a2d23 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #ffffff;
  padding: 0;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

/* Hide header on horizontal-scroll services stage */
.head-x.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Scroll past 60px → solid beyaz stil */
.head-x.is-scrolled {
  background: #ffffff !important;
  border-bottom-color: rgba(15, 58, 46, 0.08);
  color: #0f3a2e;
  box-shadow: 0 10px 30px -18px rgba(15, 58, 46, 0.15);
}

/* ---- Bar (full-width) — 1fr auto 1fr ile nav viewport center'da ---- */
.head-x__bar {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  padding: 14px clamp(20px, 4vw, 48px);
  background: transparent;
  border: none;
  border-radius: 0;
}

.head-x__logo {
  justify-self: start;
}

.head-x__nav {
  justify-self: center;
}

.head-x__cluster {
  justify-self: end;
}

/* ---- Logo ---- */
.head-x__logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

.head-x__logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.head-x__logo-img--dark { display: none; }

.head-x.is-scrolled .head-x__logo-img--light { display: none; }
.head-x.is-scrolled .head-x__logo-img--dark  { display: block; }

/* ---- Nav ---- */
.head-x__nav {
  display: flex;
  justify-content: center;
}

.head-x__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.4vw, 8px);
}

.head-x__nav li>a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  letter-spacing: 0.005em;
  transition: background 0.3s ease, color 0.3s ease;
}

.head-x__nav li>a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #f7d046;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.head-x__nav li.is-active>a {
  color: #f7d046;
  font-weight: 600;
}

.head-x__nav li.is-active>a::after {
  transform: translateX(-50%) scaleX(1);
}

.head-x__nav li>a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.head-x.is-scrolled .head-x__nav li>a {
  color: #0f3a2e;
}

.head-x.is-scrolled .head-x__nav li.is-active>a {
  color: #0f3a2e;
  background: rgba(247, 208, 70, 0.18);
}

.head-x.is-scrolled .head-x__nav li>a:hover {
  background: rgba(15, 58, 46, 0.06);
}

/* ---- Cluster (right) ---- */
.head-x__cluster {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Social icons */
.head-x__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.head-x__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.head-x__icon:hover {
  color: #0f3a2e;
  background: #f7d046;
  border-color: #f7d046;
  transform: translateY(-1px);
}

.head-x.is-scrolled .head-x__icon {
  color: #0f3a2e;
  background: rgba(15, 58, 46, 0.04);
  border-color: rgba(15, 58, 46, 0.08);
}

.head-x.is-scrolled .head-x__icon:hover {
  color: #0f3a2e;
  background: #f7d046;
  border-color: #f7d046;
}

.head-x__sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.16);
  margin: 0 4px;
}

.head-x.is-scrolled .head-x__sep {
  background: rgba(15, 58, 46, 0.12);
}

/* ---- Language switcher ---- */
.head-x__lang {
  position: relative;
}

.head-x__lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.head-x__lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.head-x.is-scrolled .head-x__lang-toggle {
  color: #0f3a2e;
  background: rgba(15, 58, 46, 0.04);
  border-color: rgba(15, 58, 46, 0.1);
}

.head-x.is-scrolled .head-x__lang-toggle:hover {
  background: rgba(15, 58, 46, 0.08);
}

.head-x__lang-flag {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 3px;
  overflow: hidden;
}

.head-x__lang-code {
  font-feature-settings: "tnum" 1;
}

.head-x__lang-toggle>svg {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.head-x__lang.is-open .head-x__lang-toggle>svg {
  transform: rotate(180deg);
}

.head-x__lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  list-style: none;
  padding: 6px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(15, 58, 46, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.head-x.is-scrolled .head-x__lang-menu {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 58, 46, 0.08);
  box-shadow: 0 24px 60px -24px rgba(15, 58, 46, 0.3);
}

.head-x__lang.is-open .head-x__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.head-x__lang-menu a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.2s ease;
}

.head-x.is-scrolled .head-x__lang-menu a {
  color: #0f3a2e;
}

.head-x__lang-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.head-x.is-scrolled .head-x__lang-menu a:hover {
  background: rgba(15, 58, 46, 0.06);
}

.head-x__lang-menu a.is-active {
  background: rgba(247, 208, 70, 0.18);
  color: #f7d046;
}

.head-x.is-scrolled .head-x__lang-menu a.is-active {
  background: linear-gradient(135deg, rgba(247, 208, 70, 0.28) 0%, rgba(247, 208, 70, 0.12) 100%);
  color: #0f3a2e;
}

/* ---- CTA ---- */
.head-x__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: #f7d046;
  color: #0f3a2e;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-left: 4px;
}

.head-x__cta:hover {
  transform: translateY(-1px);
  color: #0f3a2e;
  box-shadow: 0 12px 28px -10px rgba(247, 208, 70, 0.6);
}

.head-x__cta svg {
  transition: transform 0.25s ease;
}

.head-x__cta:hover svg {
  transform: translate(2px, -2px);
}

/* ---- Mobile toggle ---- */
.head-x__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.head-x.is-scrolled .head-x__toggle {
  border-color: rgba(15, 58, 46, 0.1);
  background: rgba(15, 58, 46, 0.04);
  color: #0f3a2e;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .head-x__nav li>a {
    padding: 9px 12px;
    font-size: 13.5px;
  }

  .head-x__social {
    display: none;
  }

  .head-x__sep {
    display: none;
  }
}

@media (max-width: 991px) {
  .head-x__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    grid-template-columns: none;
  }

  .head-x__logo,
  .head-x__cluster {
    justify-self: auto;
  }

  .head-x__logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    line-height: 0;
  }

  .head-x__nav {
    display: none;
  }

  .head-x__cluster {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .head-x__toggle {
    display: inline-flex;
  }

  .head-x__cta {
    margin-left: 0;
  }

  .head-x__logo-img {
    height: 32px;
  }

  .head-x__logo-img--light {
    display: block;
  }

  .head-x__logo-img--dark {
    display: none;
  }

  .head-x.is-scrolled .head-x__logo-img--light {
    display: none;
  }

  .head-x.is-scrolled .head-x__logo-img--dark {
    display: block;
  }

  /* Mobilde dil seçici — kompakt buton (sadece 2 harf kod) */
  .head-x__lang {
    display: inline-block;
    position: relative;
  }

  .head-x__lang-toggle {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    gap: 0;
    justify-content: center;
  }

  .head-x__lang-flag,
  .head-x__lang-toggle > svg {
    display: none;
  }

  .head-x__lang-code {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: inherit;
  }

  .head-x__lang-menu {
    right: 0;
    min-width: 160px;
  }
}

@media (max-width: 575px) {
  .head-x__bar {
    padding: 8px 14px;
    gap: 10px;
  }

  .head-x__cta span {
    display: none;
  }

  .head-x__cta {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    flex-shrink: 0;
  }

  .head-x__cta svg {
    width: 16px;
    height: 16px;
  }

  .head-x__toggle,
  .head-x__lang-toggle {
    width: 40px;
    height: 40px;
  }

  .head-x__logo-img {
    height: 30px;
  }

  .head-x__cluster {
    gap: 6px;
  }
}

@media (max-width: 374px) {
  .head-x__bar {
    padding: 8px 12px;
  }

  .head-x__logo-img {
    height: 26px;
  }

  .head-x__cta,
  .head-x__toggle,
  .head-x__lang-toggle {
    width: 36px;
    height: 36px;
  }

  .head-x__lang-code {
    font-size: 11px;
  }

  .head-x__cluster {
    gap: 5px;
  }
}


/* ============================================================================
   CTA (x) — Modern action card with multiple contact paths (pages/home.php)
   ============================================================================ */
.cta-x {
  --cx-ink: #0f3a2e;
  --cx-deep: #0a2d23;
  --cx-accent: #f7d046;
  --cx-cream: #f7f4ee;
  --cx-bg: #ffffff;

  position: relative;
  background: var(--cx-bg);
  padding: var(--sp-sm) 0;
  border-top: 1px solid rgba(15, 58, 46, 0.08);
}

.cta-x__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Card ---- */
.cta-x__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 44px);
  padding: clamp(36px, 4.5vw, 64px);
  background: #faf7f0;
  color: var(--cx-ink);
  border-radius: 26px;
  border: 1px solid rgba(15, 58, 46, 0.08);
  box-shadow: 0 30px 80px -40px rgba(15, 58, 46, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.cta-x__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.cta-x__halo,
.cta-x__halo::before,
.cta-x__halo::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(15, 58, 46, 0.08);
  pointer-events: none;
}

.cta-x__halo {
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: transparent;
  z-index: 0;
}

.cta-x__halo::before {
  content: "";
  inset: 40px;
  border-color: rgba(15, 58, 46, 0.06);
}

.cta-x__halo::after {
  content: "";
  inset: 80px;
  border-color: rgba(15, 58, 46, 0.04);
}

.cta-x__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-x__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 14px 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* CTA eyebrow — diğer section'lar ile tutarlı format (/04 — LABEL) */
.cta-x__eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cx-ink);
}

.cta-x__eye>span:first-child {
  color: var(--cx-ink);
  font-weight: 800;
}

.cta-x__eye-line {
  width: 28px;
  height: 1px;
  background: rgba(15, 58, 46, 0.35);
}

.cta-x__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.22);
  animation: ctaXPulse 2.2s ease-in-out infinite;
}

@keyframes ctaXPulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.22);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
}

.cta-x__title {
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--cx-ink);
  margin: 0;
  text-wrap: balance;
}

.cta-x__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, transparent 0 0, var(--cx-accent) 0 100%);
  background-size: 100% 14%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 4px;
}

.cta-x__lead em {
  font-style: normal;
  font-weight: 700;
  color: var(--cx-accent);
}

.cta-x__lead {
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.6;
  color: rgba(15, 58, 46, 0.68);
  margin: 0;
  max-width: 46ch;
}

/* ---- Trust strip — avatars + 500+ şirket ---- */
.cta-x__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(18px, 2vw, 28px);
}

.cta-x__avatars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.cta-x__avatars li {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(15, 58, 46, 0.08);
  margin-left: -10px;
  background: rgba(15, 58, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-x__avatars li:first-child {
  margin-left: 0;
}

.cta-x__avatars li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-x__avatars-more {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: var(--cx-ink);
  letter-spacing: 0.02em;
}

.cta-x__trust-text {
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(15, 58, 46, 0.65);
  margin: 0;
}

.cta-x__trust-text strong {
  color: var(--cx-ink);
  font-weight: 700;
}

/* ---- Actions stack ---- */
.cta-x__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-x__action {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 58, 46, 0.08);
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.cta-x__action:hover {
  background: #ffffff;
  border-color: rgba(15, 58, 46, 0.18);
  transform: translateY(-2px);
}

.cta-x__action--primary {
  background:
    radial-gradient(120% 100% at 100% 100%, rgba(247, 208, 70, 0.12) 0%, rgba(247, 208, 70, 0) 60%),
    var(--cx-ink);
  border-color: var(--cx-ink);
}

.cta-x__action--primary:hover {
  background:
    radial-gradient(120% 100% at 100% 100%, rgba(247, 208, 70, 0.18) 0%, rgba(247, 208, 70, 0) 60%),
    var(--cx-deep);
  border-color: var(--cx-deep);
  box-shadow: 0 18px 40px -16px rgba(15, 58, 46, 0.5);
}

.cta-x__action-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e9ebe2;
  color: var(--cx-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-x__action-icon svg {
  width: 26px;
  height: 26px;
}

.cta-x__action--primary .cta-x__action-icon {
  background: rgba(247, 208, 70, 0.22);
  color: var(--cx-accent);
  box-shadow: 0 0 0 1px rgba(247, 208, 70, 0.25);
}

.cta-x__action-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(15, 58, 46, 0.12);
}

.cta-x__action--primary .cta-x__action-text {
  border-left-color: rgba(255, 255, 255, 0.18);
}

.cta-x__action-label {
  font-size: 19px;
  font-weight: 700;
  color: var(--cx-ink);
  letter-spacing: -0.005em;
}

.cta-x__action-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(15, 58, 46, 0.6);
  max-width: 32ch;
}

.cta-x__action--primary .cta-x__action-label {
  color: #ffffff;
}

.cta-x__action--primary .cta-x__action-desc {
  color: rgba(255, 255, 255, 0.7);
}

.cta-x__action-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e9ebe2;
  border: 0;
  color: var(--cx-ink);
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-x__action-arrow svg {
  width: 16px;
  height: 16px;
}

.cta-x__action:hover .cta-x__action-arrow {
  background: var(--cx-ink);
  color: #ffffff;
  border-color: var(--cx-ink);
  transform: translate(2px, -2px);
}

.cta-x__action--primary .cta-x__action-arrow {
  background: var(--cx-accent);
  color: var(--cx-ink);
  border-color: var(--cx-accent);
  box-shadow: 0 8px 20px -8px rgba(247, 208, 70, 0.55);
}

.cta-x__action--primary:hover .cta-x__action-arrow {
  background: var(--cx-accent);
  color: var(--cx-ink);
  transform: translate(3px, -3px);
}

/* ---- Footer trust strip — 3 col grid, card içinde, üst border ile ayrı ---- */
.cta-x__footer {
  --footer-gap: clamp(20px, 3vw, 48px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--footer-gap);
  color: var(--cx-ink);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(15, 58, 46, 0.1);
}

.cta-x__footer-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.cta-x__footer-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cx-ink);
  color: var(--cx-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-x__footer-icon svg {
  width: 20px;
  height: 20px;
}

.cta-x__footer-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cta-x__footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cx-ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.cta-x__footer-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(15, 58, 46, 0.65);
  max-width: 34ch;
}

/* ---- Mobile ---- */
@media (max-width: 991px) {
  .cta-x__card {
    padding: clamp(28px, 6vw, 40px);
    gap: clamp(24px, 4vw, 36px);
  }

  .cta-x__top {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 36px);
  }

  .cta-x__title {
    font-size: clamp(28px, 6vw, 44px);
  }

  .cta-x__lead {
    font-size: 14.5px;
  }

  .cta-x__action {
    gap: 16px;
    padding: 18px 18px;
    border-radius: 18px;
  }

  .cta-x__action-icon {
    width: 48px;
    height: 48px;
  }

  .cta-x__action-icon svg {
    width: 22px;
    height: 22px;
  }

  .cta-x__action-text {
    padding-left: 16px;
    border-left-width: 1px;
    min-width: 0;
    overflow: hidden;
  }

  .cta-x__action-label {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cta-x__action-desc {
    font-size: 13px;
    line-height: 1.45;
    max-width: 100%;
  }

  .cta-x__action-arrow {
    width: 36px;
    height: 36px;
  }

  .cta-x__action-arrow svg {
    width: 14px;
    height: 14px;
  }

  .cta-x__footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-x__footer-item {
    gap: 14px;
  }

  .cta-x__footer-icon {
    width: 42px;
    height: 42px;
  }

  .cta-x__footer-icon svg {
    width: 18px;
    height: 18px;
  }

  .cta-x__footer-title {
    font-size: 15px;
  }

  .cta-x__footer-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .cta-x__trust {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .cta-x__card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .cta-x__action {
    padding: 16px 14px;
    gap: 12px;
  }

  .cta-x__action-icon {
    width: 42px;
    height: 42px;
  }

  .cta-x__action-icon svg {
    width: 20px;
    height: 20px;
  }

  .cta-x__action-text {
    padding-left: 12px;
  }

  .cta-x__action-label {
    font-size: 15px;
  }

  .cta-x__action-desc {
    font-size: 12.5px;
  }

  .cta-x__action-arrow {
    width: 32px;
    height: 32px;
  }

  .cta-x__action-arrow svg {
    width: 13px;
    height: 13px;
  }
}


/* ============================================================================
   Footer — Modern brand footer with animated signature (partials/footer.php)
   ============================================================================ */
footer.ft {
  --ft-ink: #ffffff;
  --ft-muted: rgba(255, 255, 255, 0.62);
  --ft-soft: rgba(255, 255, 255, 0.78);
  --ft-line: rgba(255, 255, 255, 0.1);
  --ft-accent: #f7d046;
  --ft-bg: #0a2d23;
  --ft-bg-soft: #0f3a2e;

  position: relative;
  background: radial-gradient(80% 60% at 50% 0%, var(--ft-bg-soft) 0%, var(--ft-bg) 60%) !important;
  color: var(--ft-ink);
  overflow: hidden;
  isolation: isolate;
}

.ft::before {
  /* animasyonlu sarı glow arkada */
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(247, 208, 70, 0.08) 0%, rgba(247, 208, 70, 0) 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: ftGlow 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes ftGlow {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-40px, 30px) scale(1.1);
  }
}

.ft__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 64px) 32px;
}

/* ---- Main grid ---- */
.ft__main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

/* Brand column */
.ft__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 380px;
}

.ft__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 0;
}

.ft__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.ft__brand-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ft-muted);
}

/* Subscribe form */
.ft__subscribe {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ft-line);
  border-radius: 999px;
  max-width: 360px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ft__subscribe:focus-within {
  border-color: var(--ft-accent);
  background: rgba(255, 255, 255, 0.08);
}

.ft__subscribe input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ft-ink);
  font-size: 14px;
  padding: 10px 0;
}

.ft__subscribe input::placeholder {
  color: var(--ft-muted);
}

.ft__subscribe button {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--ft-accent);
  color: var(--ft-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ft__subscribe button:hover {
  transform: translateX(2px);
}

/* Columns */
.ft__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ft-soft);
  margin: 0 0 4px;
}

.ft__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft__col li>a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 14px;
  color: var(--ft-muted);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.ft__col li>a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--ft-accent);
  transition: width 0.3s ease;
}

.ft__col li>a:hover {
  color: var(--ft-ink);
  gap: 8px;
}

.ft__col li>a:hover::before {
  width: 14px;
}

/* Contact column */
.ft__col--contact {
  gap: 14px;
}

.ft__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ft-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ft__contact svg {
  color: var(--ft-accent);
  flex: 0 0 auto;
}

.ft__contact:hover {
  color: var(--ft-ink);
}

.ft__contact--phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--ft-ink);
}

.ft__address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ft-muted);
}

.ft__address svg {
  color: var(--ft-accent);
  flex: 0 0 auto;
  margin-top: 2px;
}

/* ---- Signature: massive brand text ---- */
.ft__signature {
  position: relative;
  margin: 0 calc(clamp(20px, 5vw, 64px) * -1);
  overflow: hidden;
  padding: 8px 0;
  user-select: none;
}

.ft__sig-text {
  display: block;
  text-align: center;
  font-size: clamp(56px, 18vw, 240px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(180deg, rgba(247, 208, 70, 0.18) 0%, rgba(247, 208, 70, 0) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* ---- Bottom strip ---- */
.ft__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ft-line);
}

.ft__credit {
  justify-self: center;
}

.ft__legal {
  justify-self: end;
}

.ft__copyright {
  font-size: 14px;
  color: var(--ft-muted);
}

.ft__credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--ft-muted);
}

.ft__credit-label {
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.ft__credit a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.ft__credit a:hover {
  opacity: 0.7;
}

.ft__credit-logo {
  display: block;
  height: 22px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.ft__credit a:hover .ft__credit-logo {
  opacity: 1;
}

.ft__socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}

.ft__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ft-line);
  color: var(--ft-soft);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.ft__social:hover {
  background: var(--ft-accent);
  border-color: var(--ft-accent);
  color: var(--ft-bg);
  transform: translateY(-2px);
}

.ft__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ft__legal a {
  font-size: 14px;
  color: var(--ft-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ft__legal a:hover {
  color: var(--ft-accent);
}

/* ---- Mobile ---- */
@media (max-width: 991px) {
  .ft__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .ft__brand {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .ft__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .ft__credit,
  .ft__legal {
    justify-self: center;
  }
}

@media (max-width: 575px) {
  .ft__main {
    grid-template-columns: 1fr;
  }

  .ft__brand {
    grid-column: span 1;
  }

  .ft__bottom {
    justify-content: flex-start;
  }
}


/* ============================================================================
   About page — Story, Pillars, Manifesto (pages/about.php)
   Home ile aynı tasarım dili (ab-* prefix).
   ============================================================================ */

/* ---- Story ---- */
.ab-story {
  --ab-ink: #0f3a2e;
  --ab-muted: #4a5d56;
  --ab-accent: #f7d046;
  --ab-bg: #ffffff;
  --ab-line: rgba(15, 58, 46, 0.12);

  background: var(--ab-bg);
  color: var(--ab-ink);
  padding: var(--sp-md) 0;
}

.ab-story__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}

.ab-story__media {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 480px;
  background: var(--ab-ink);
}

.ab-story__media>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.ab-story__media:hover img {
  transform: scale(1.03);
}

.ab-story__media-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  background: var(--ab-ink);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(15, 58, 46, 0.4);
}

.ab-story__media-tag svg {
  color: var(--ab-accent);
}

/* Floating badge — image'in sağ-altından taşan, 12+ Yıl deneyim */
.ab-story__media-badge {
  position: absolute;
  right: -16px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px -16px rgba(15, 58, 46, 0.28), 0 0 0 1px rgba(15, 58, 46, 0.05);
  max-width: 260px;
}

.ab-story__media-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ab-ink);
  color: var(--ab-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-story__media-badge-icon svg {
  width: 22px;
  height: 22px;
}

.ab-story__media-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}

.ab-story__media-badge-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ab-ink);
}

.ab-story__media-badge-desc {
  font-size: 12px;
  color: var(--ab-muted);
}

.ab-story__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  max-width: 72ch;
}

.ab-story__eye {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ab-muted);
}

.ab-story__eye>span:first-child {
  color: var(--ab-ink);
  font-feature-settings: "tnum" 1;
}

.ab-story__eye-line {
  width: 32px;
  height: 1px;
  background: var(--ab-ink);
  opacity: 0.4;
}

.ab-story__title {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ab-ink);
  margin: 0;
  text-wrap: balance;
  max-width: 20ch;
}

.ab-story__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, transparent 0 0, var(--ab-accent) 0 100%);
  background-size: 100% 14%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 4px;
}

.ab-story__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-story__text p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ab-muted);
}

.ab-story__text h2,
.ab-story__text h3 {
  margin: 14px 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ab-ink);
  letter-spacing: -0.005em;
}

.ab-story__text h2:first-child,
.ab-story__text h3:first-child {
  margin-top: 0;
}

.ab-story__text strong {
  color: var(--ab-ink);
  font-weight: 600;
}

/* Lead paragraf — başlık altı açıklama */
.ab-story__lead {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ab-muted);
}

/* Rosette — küçük güven kartı (sarı icon + metin) */
.ab-story__rosette {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  padding: 14px 18px;
  background: rgba(247, 208, 70, 0.1);
  border: 1px solid rgba(247, 208, 70, 0.25);
  border-radius: 14px;
}

.ab-story__rosette-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247, 208, 70, 0.25);
  color: var(--ab-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-story__rosette-icon svg {
  width: 22px;
  height: 22px;
}

.ab-story__rosette p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ab-ink);
}

.ab-story__rosette strong {
  font-weight: 700;
}

/* Pillars — 3 col grid (Misyon / Vizyon / Neden Biz?) */
.ab-story__pillars {
  list-style: none;
  margin: clamp(20px, 2.5vw, 32px) 0 0;
  padding: clamp(24px, 3vw, 32px);
  background: #f6f4ef;
  border: 1px solid var(--ab-line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.ab-story__pillars>li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.ab-story__pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ab-ink);
  color: var(--ab-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ab-story__pillar-icon svg {
  width: 22px;
  height: 22px;
}

.ab-story__pillar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ab-ink);
  margin: 6px 0 0;
}

.ab-story__pillar-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ab-muted);
  margin: 0;
}

.ab-story__pillar-desc strong {
  color: var(--ab-ink);
  font-weight: 700;
}

/* Bottom CTA pill */
.ab-story__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(16px, 2vw, 24px);
  padding: 14px 18px 14px 14px;
  background: var(--ab-ink);
  color: #ffffff;
  border-radius: 18px;
  text-decoration: none;
}

.ab-story__cta:hover {
  color: #ffffff;
}

.ab-story__cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ab-accent);
  color: var(--ab-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-story__cta-icon svg {
  width: 22px;
  height: 22px;
}

.ab-story__cta-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ab-story__cta-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.ab-story__cta-text span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.ab-story__cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  color: var(--ab-ink);
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ab-story__cta-btn:hover {
  background: var(--ab-accent);
  border-color: var(--ab-accent);
  color: var(--ab-ink);
}

@media (max-width: 991px) {
  .ab-story__pillars {
    grid-template-columns: 1fr;
  }

  .ab-story__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .ab-story__cta-btn {
    justify-content: center;
  }
}

.ab-story__quote {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 0;
  padding: 12px 18px;
  background: var(--ab-ink);
  color: #ffffff;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}

.ab-story__quote svg {
  color: var(--ab-accent);
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.ab-story__quote p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 500;
  font-style: italic;
  color: #ffffff;
}

/* ---- Pillars ---- */
.ab-pillars {
  --ap-ink: #0f3a2e;
  --ap-muted: #4a5d56;
  --ap-accent: #f7d046;
  --ap-cream: #ffffff;
  --ap-bg: #f6f4ef;
  --ap-line: rgba(15, 58, 46, 0.1);

  background: var(--ap-bg);
  color: var(--ap-ink);
  padding: var(--sp-md) 0;
}

.ab-pillars__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}

.ab-pillars__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
}

.ab-pillars__eye {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ap-muted);
}

.ab-pillars__eye>span:first-child {
  color: var(--ap-ink);
}

.ab-pillars__eye-line {
  width: 32px;
  height: 1px;
  background: var(--ap-ink);
  opacity: 0.4;
}

.ab-pillars__title {
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ap-ink);
  margin: 0;
  text-wrap: balance;
}

.ab-pillars__title em {
  font-style: italic;
  background: linear-gradient(90deg, transparent 0 0, var(--ap-accent) 0 100%);
  background-size: 100% 14%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 4px;
}

.ab-pillars__lead {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  color: var(--ap-muted);
  max-width: 52ch;
}

/* Grid: 4 cards, mixed colors */
.ab-pillars__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}

.ab-pillars__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2vw, 28px) clamp(20px, 2vw, 26px);
  border-radius: 20px;
  background: var(--ap-cream);
  color: var(--ap-ink);
  aspect-ratio: 1 / 0.8;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}


/* Variants */
.ab-pillars__cell--cream {
  background: #ffffff;
}

.ab-pillars__cell--accent {
  background: var(--ap-accent);
}

.ab-pillars__cell--dark {
  background: var(--ap-ink);
  color: #ffffff;
}

/* Lead mark — kısa yatay dash (icon altında, title öncesi) */
.ab-pillars__dot {
  position: absolute;
  left: clamp(20px, 2vw, 26px);
  top: clamp(108px, 9vw, 124px);
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: rgba(15, 58, 46, 0.3);
}

.ab-pillars__cell--accent .ab-pillars__dot {
  background: rgba(15, 58, 46, 0.45);
}

.ab-pillars__cell--dark .ab-pillars__dot {
  background: rgba(247, 208, 70, 0.55);
}

/* Icon ring — büyük rounded circle + decoratif outer ring */
.ab-pillars__icon-ring {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ap-ink);
  color: var(--ap-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 14px 30px -12px rgba(15, 58, 46, 0.28);
}

.ab-pillars__cell--accent .ab-pillars__icon-ring {
  background: var(--ap-ink);
  color: var(--ap-accent);
  border-color: #ffffff;
}

.ab-pillars__cell--dark .ab-pillars__icon-ring {
  background: rgba(247, 208, 70, 0.1);
  color: var(--ap-accent);
  border-color: rgba(247, 208, 70, 0.2);
}

.ab-pillars__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ab-pillars__icon svg {
  width: 24px;
  height: 24px;
}

.ab-pillars__cell-title {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
  color: inherit;
}

.ab-pillars__cell-desc {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  color: var(--ap-muted);
}

.ab-pillars__cell--accent .ab-pillars__cell-desc {
  color: rgba(15, 58, 46, 0.75);
}

.ab-pillars__cell--dark .ab-pillars__cell-desc {
  color: rgba(255, 255, 255, 0.72);
}

/* Arrow circle (sağ-altta outline, /contact'a link) */
.ab-pillars__arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15, 58, 46, 0.2);
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ab-pillars__arrow:hover {
  background: var(--ap-ink);
  border-color: var(--ap-ink);
  color: #ffffff;
}

.ab-pillars__cell--dark .ab-pillars__arrow {
  border-color: rgba(255, 255, 255, 0.2);
}

.ab-pillars__cell--dark .ab-pillars__arrow:hover {
  background: var(--ap-accent);
  border-color: var(--ap-accent);
  color: var(--ap-ink);
}

.ab-pillars__cell--accent .ab-pillars__arrow {
  border-color: rgba(15, 58, 46, 0.3);
}

.ab-pillars__cell--accent .ab-pillars__arrow:hover {
  background: var(--ap-ink);
  border-color: var(--ap-ink);
  color: var(--ap-accent);
}

/* Bottom strip — shield + 2 satır motto */
.ab-pillars__strip {
  margin-top: clamp(20px, 2.5vw, 32px);
  padding: clamp(16px, 1.6vw, 22px) clamp(20px, 2.2vw, 28px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--ap-line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ab-pillars__strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 58, 46, 0.08);
  color: var(--ap-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-pillars__strip-icon svg {
  width: 20px;
  height: 20px;
}

.ab-pillars__strip-text {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}

.ab-pillars__strip-text strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ap-ink);
  letter-spacing: -0.005em;
}

.ab-pillars__strip-text span {
  font-size: 13px;
  color: var(--ap-muted);
}

@media (max-width: 991px) {
  .ab-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ab-pillars__grid {
    grid-template-columns: 1fr;
  }

  .ab-pillars__strip {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ---- Manifesto ---- */
.ab-manifesto {
  --am-ink: #0f3a2e;
  --am-muted: rgba(255, 255, 255, 0.72);
  --am-accent: #f7d046;
  --am-bg: #0a2d23;

  background: var(--am-bg);
  color: #ffffff;
  padding: var(--sp-md) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Köşelerdeki sarı glow halkalar */
.ab-manifesto__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 208, 70, 0.12) 0%, rgba(247, 208, 70, 0) 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.ab-manifesto__glow--tr {
  top: -180px;
  right: -180px;
}

.ab-manifesto__glow--br {
  bottom: -200px;
  right: -120px;
  width: 460px;
  height: 460px;
}

.ab-manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4vw, 64px);
}

.ab-manifesto__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.ab-manifesto__eye {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.ab-manifesto__eye>span:first-child {
  color: #ffffff;
}

.ab-manifesto__eye-line {
  width: 32px;
  height: 1px;
  background: var(--am-accent);
}

.ab-manifesto__title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.ab-manifesto__title em {
  font-style: normal;
  color: var(--am-accent);
}

.ab-manifesto__lead {
  margin: 6px 0 0;
  max-width: 64ch;
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* ----- Zigzag flow ----- */
.ab-manifesto__flow {
  position: relative;
  width: 100%;
  min-height: 540px;
}

.ab-manifesto__curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ab-manifesto__steps {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 540px;
}

.ab-manifesto__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  text-align: center;
}

/* Üst sıra (tek index): card üstte, number altta */
.ab-manifesto__step--top {
  justify-content: flex-start;
  padding-top: 20px;
}

.ab-manifesto__step--top .ab-manifesto__step-card {
  order: 1;
}

.ab-manifesto__step--top .ab-manifesto__step-node {
  order: 2;
  margin-top: 28px;
}

/* Alt sıra (çift index): number üstte, card altta */
.ab-manifesto__step--bot {
  justify-content: flex-end;
  padding-bottom: 20px;
}

.ab-manifesto__step--bot .ab-manifesto__step-node {
  order: 1;
  margin-bottom: 28px;
}

.ab-manifesto__step--bot .ab-manifesto__step-card {
  order: 2;
}

.ab-manifesto__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}

.ab-manifesto__step-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--am-accent);
  background: rgba(247, 208, 70, 0.06);
  box-shadow: 0 0 0 1px rgba(247, 208, 70, 0.2),
    0 0 30px -2px rgba(247, 208, 70, 0.18);
}

.ab-manifesto__step-icon svg {
  width: 28px;
  height: 28px;
}

.ab-manifesto__step-title {
  font-size: 16.5px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
  color: #ffffff;
}

.ab-manifesto__step-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--am-muted);
  margin: 0;
}

.ab-manifesto__step-node {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--am-accent);
  color: var(--am-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-feature-settings: "tnum" 1;
  flex: 0 0 auto;
  z-index: 2;
}

.ab-manifesto__step-node-no {
  position: relative;
  z-index: 2;
}

.ab-manifesto__step-node-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 208, 70, 0.55) 0%, rgba(247, 208, 70, 0) 70%);
  z-index: 1;
}

/* Mobile fallback — kart düzeni, icon + sayı tek satırda, başlık+desc altta */
@media (max-width: 991px) {
  .ab-manifesto__flow {
    min-height: 0;
  }

  .ab-manifesto__curve {
    display: none;
  }

  .ab-manifesto__steps {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
  }

  .ab-manifesto__step,
  .ab-manifesto__step--top,
  .ab-manifesto__step--bot {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 0;
    padding: 18px 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(247, 208, 70, 0.12);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
  }

  .ab-manifesto__step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(247, 208, 70, 0.6) 0%, rgba(247, 208, 70, 0) 100%);
    pointer-events: none;
  }

  .ab-manifesto__step--top .ab-manifesto__step-card,
  .ab-manifesto__step--bot .ab-manifesto__step-card,
  .ab-manifesto__step--top .ab-manifesto__step-node,
  .ab-manifesto__step--bot .ab-manifesto__step-node {
    order: initial;
    margin: 0;
  }

  /* Card içeriğini step'e flatlat — icon + title + desc */
  .ab-manifesto__step-card {
    display: contents;
  }

  .ab-manifesto__step-node {
    order: 1;
    width: auto;
    min-width: 44px;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    margin: 0;
    align-self: center;
    box-shadow: 0 0 0 4px rgba(247, 208, 70, 0.12);
  }

  .ab-manifesto__step-icon {
    order: 2;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    margin-left: auto;
    box-shadow: 0 0 0 1px rgba(247, 208, 70, 0.25),
      0 0 20px -4px rgba(247, 208, 70, 0.2);
  }

  .ab-manifesto__step-icon svg {
    width: 20px;
    height: 20px;
  }

  .ab-manifesto__step-node-pulse {
    display: none;
  }

  .ab-manifesto__step-title {
    order: 3;
    flex: 0 0 100%;
    font-size: 17px;
    margin: 14px 0 6px;
    color: #ffffff;
  }

  .ab-manifesto__step-desc {
    order: 4;
    flex: 0 0 100%;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
  }
}

/* ---- Mobile ---- */
@media (max-width: 991px) {
  .ab-story__inner {
    grid-template-columns: 1fr;
  }

  .ab-story__media {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .ab-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ab-pillars__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================================
   Page Head — Minimal breadcrumb + title (partials/page-header.php)
   Tüm iç sayfalar için kompakt başlık alanı.
   ============================================================================ */
.page-head {
  background: #f6f4ef;
  color: #0f3a2e;
  padding: clamp(110px, 13vh, 140px) 0 var(--sp-xs);
  border-bottom: 1px solid rgba(15, 58, 46, 0.08);
}

.page-head__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-head__crumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-head__crumbs a {
  color: rgba(15, 58, 46, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-head__crumbs a:hover {
  color: #0f3a2e;
}

.page-head__sep {
  color: rgba(15, 58, 46, 0.3);
}

.page-head__current {
  color: #0f3a2e;
}

.page-head__title {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 575px) {
  .page-head {
    padding-top: clamp(96px, 14vh, 120px);
  }
}

/* ============================================================================
   GLOBAL — Container 1480px override + modern bölüm __inner hizalama
   Tüm sayfalarda cinematic-wide görünüm için.
   ============================================================================ */
@media (min-width: 1400px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1480px;
  }
}

.page-head__inner,
.hero-x__inner,
.about-min__inner,
.ab-story__inner,
.ab-pillars__inner,
.ab-manifesto__inner,
.flow-v2__inner,
.cta-x__inner {
  max-width: 1480px;
}



/* ============================================================================
   İLETİŞİM — Split layout (form + sticky info) + full-bleed map
   (pages/contact.php)
   ============================================================================ */
.ct-page {
  --ct-ink: #0f3a2e;
  --ct-accent: #f7d046;
  --ct-cream: #f6f4ef;
  --ct-line: rgba(15, 58, 46, 0.1);
  --ct-soft: rgba(15, 58, 46, 0.5);
  background: #fff;
}

.ct-split {
  padding: var(--sp-md) 0;
}

.ct-split__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}

/* form column */
.ct-form {
  background: #fff;
}

.ct-form__head {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.ct-form__eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-ink);
  margin-bottom: 12px;
}

.ct-form__eye>span:first-child {
  color: var(--ct-accent);
}

.ct-form__eye-line {
  width: 28px;
  height: 1px;
  background: rgba(15, 58, 46, 0.4);
}

.ct-form__title {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ct-ink);
  margin: 0 0 12px;
}

.ct-form__title em {
  font-style: normal;
  color: var(--ct-accent);
}

.ct-form__lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(15, 58, 46, 0.65);
  margin: 0;
}

.ct-form__notice {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(247, 208, 70, 0.18);
  border: 1px solid rgba(247, 208, 70, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ct-ink);
}
.ct-form__notice svg {
  width: 18px;
  height: 18px;
  color: var(--ct-ink);
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-form__notice strong { font-weight: 700; }

.ct-form__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
  row-gap: 22px;
}

.ct-form__field {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.ct-form__field--full {
  grid-column: 1 / -1;
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  width: 100%;
  appearance: none;
  background: #fff;
  border: 1px solid var(--ct-line);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ct-ink);
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
}

/* Input wrapper with leading icon */
.ct-form__inputwrap {
  position: relative;
  display: block;
}

.ct-form__inputwrap input,
.ct-form__inputwrap select,
.ct-form__inputwrap textarea {
  padding-left: 46px;
}

.ct-form__inputicon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 58, 46, 0.45);
  pointer-events: none;
  transition: color 0.2s ease;
}

.ct-form__inputicon svg {
  width: 18px;
  height: 18px;
}

.ct-form__inputwrap:focus-within .ct-form__inputicon {
  color: var(--ct-ink);
}

.ct-form__inputicon--top {
  top: 16px;
  transform: none;
}

.ct-form__field textarea {
  min-height: 130px;
  resize: vertical;
}

.ct-form__field select {
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230f3a2e' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--ct-ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 58, 46, 0.08);
}

.ct-form__field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ct-ink);
  padding: 0 4px;
}

.ct-form__field input::placeholder,
.ct-form__field textarea::placeholder {
  color: rgba(15, 58, 46, 0.4);
  font-weight: 400;
}

/* ---- Phone input with country picker ---- */
.ct-phone {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border: 1px solid var(--ct-line);
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ct-phone:focus-within {
  border-color: var(--ct-ink);
  box-shadow: 0 0 0 3px rgba(15, 58, 46, 0.08);
}

.ct-phone .ct-phone__country,
.ct-phone .ct-phone__country:hover,
.ct-phone .ct-phone__country:focus {
  appearance: none;
  border: 1px solid rgba(15, 58, 46, 0.08);
  padding: 6px 10px;
  margin: 8px 0 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ct-ink);
  cursor: pointer;
  border-radius: 8px;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  outline: none;
}

.ct-phone .ct-phone__country {
  background: rgba(15, 58, 46, 0.06);
}

.ct-phone .ct-phone__country:hover {
  background: rgba(15, 58, 46, 0.1);
  border-color: rgba(15, 58, 46, 0.15);
}

.ct-phone__iso {
  letter-spacing: 0.04em;
  line-height: 1;
}

.ct-phone__code {
  display: inline-flex;
  align-items: center;
  padding: 0 12px 0 10px;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  color: var(--ct-ink);
  flex-shrink: 0;
  border-right: 1px solid var(--ct-line);
}

.ct-phone__chev {
  width: 12px;
  height: 12px;
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.ct-phone[data-open="true"] .ct-phone__chev {
  transform: rotate(180deg);
}

.ct-phone__input {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  border-radius: 0 14px 14px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 14px 18px !important;
}

.ct-phone__input:focus {
  box-shadow: none !important;
  background: transparent !important;
}

/* List */
.ct-phone__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--ct-line);
  border-radius: 14px;
  box-shadow: 0 24px 50px -20px rgba(15, 58, 46, 0.22);
  min-width: 280px;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

.ct-phone[data-open="true"] .ct-phone__list {
  display: block;
}

.ct-phone__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ct-ink);
  transition: background 0.15s ease;
}

.ct-phone__list li:hover,
.ct-phone__list li[aria-selected="true"] {
  background: rgba(15, 58, 46, 0.06);
}

.ct-phone__list li>.ct-phone__iso--list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 24px;
  padding: 0 7px;
  background: rgba(15, 58, 46, 0.08);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.ct-phone__list li[aria-selected="true"] {
  background: rgba(15, 58, 46, 0.06);
}

.ct-phone__list li>.ct-phone__name {
  flex: 1;
  font-weight: 500;
}

.ct-phone__list li>.ct-phone__dial {
  color: rgba(15, 58, 46, 0.55);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}

.ct-form__error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #c0392b;
  padding-left: 4px;
}

.ct-form__submit-wrap {
  grid-column: 1 / -1;
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 1.6vw, 22px);
}

.ct-form__privacy {
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(15, 58, 46, 0.6);
}

.ct-form__privacy svg {
  width: 16px;
  height: 16px;
  color: rgba(15, 58, 46, 0.45);
  flex-shrink: 0;
}

.ct-form__submit {
  appearance: none;
  border: 0;
  background: var(--ct-ink);
  color: #fff;
  padding: 17px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.25s ease, color 0.25s ease;
}

.ct-form__submit:hover {
  background: var(--ct-accent);
  color: var(--ct-ink);
}

.ct-form__submit svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 575px) {
  .ct-form__form {
    grid-template-columns: 1fr;
  }
}

/* sticky info column */
.ct-info {
  background: var(--ct-cream);
  border-radius: 24px;
  padding: clamp(26px, 2.4vw, 32px);
  border: 1px solid var(--ct-line);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.4vw, 30px);
  height: 100%;
}

.ct-info__eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-ink);
}

.ct-info__eye>span:first-child {
  color: var(--ct-accent);
}

.ct-info__eye-line {
  width: 28px;
  height: 1px;
  background: rgba(15, 58, 46, 0.4);
}

/* ---- Channel group ---- */
.ct-info__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-info__channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--ct-line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ct-ink);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.ct-info__channel:hover {
  border-color: var(--ct-ink);
}

.ct-info__channel--wa:hover {
  border-color: #25d366;
}

.ct-info__channel-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 58, 46, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-ink);
  transition: background 0.25s ease, color 0.25s ease;
}

.ct-info__channel:hover .ct-info__channel-icon {
  background: var(--ct-ink);
  color: var(--ct-accent);
}

.ct-info__channel--wa:hover .ct-info__channel-icon {
  background: #25d366;
  color: #fff;
}

.ct-info__channel-icon svg {
  width: 18px;
  height: 18px;
}

.ct-info__channel-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-info__channel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 58, 46, 0.55);
}

.ct-info__channel-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ct-ink);
  word-break: break-word;
}

.ct-info__channel-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 58, 46, 0.35);
  transition: color 0.25s ease;
}

.ct-info__channel-arrow svg {
  width: 14px;
  height: 14px;
}

.ct-info__channel:hover .ct-info__channel-arrow {
  color: var(--ct-ink);
}

/* ---- WhatsApp chat mockup ---- */
.ct-wa {
  background: #fff;
  border: 1px solid var(--ct-line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ct-wa__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #075e54;
  color: #fff;
}

.ct-wa__avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7d046;
  color: #075e54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ct-wa__avatar-dot {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #075e54;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ct-wa__avatar-dot svg {
  width: 10px;
  height: 10px;
}

.ct-wa__avatar-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  z-index: -1;
  animation: ct-wa-pulse 1.8s ease-out infinite;
}

@keyframes ct-wa-pulse {
  0%   { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.ct-wa__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ct-wa__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}

.ct-wa__status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  letter-spacing: 0.005em;
}

.ct-wa__call,
.ct-wa__call:hover,
.ct-wa__call:focus {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.ct-wa__call:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ct-wa__call svg {
  width: 14px;
  height: 14px;
}

.ct-wa__chat {
  position: relative;
  padding: 14px 14px 10px;
  background: #e5ddd5;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 14px 14px, 14px 14px;
  background-position: 0 0, 7px 7px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 130px;
}

.ct-wa__bubble {
  position: relative;
  max-width: 86%;
  padding: 8px 10px 16px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #1f2c33;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.ct-wa__bubble--in {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
}

.ct-wa__bubble--out {
  align-self: flex-end;
  background: #dcf8c6;
  border-top-right-radius: 2px;
}

.ct-wa__time {
  position: absolute;
  right: 8px;
  bottom: 4px;
  font-size: 10px;
  color: rgba(31, 44, 51, 0.45);
  font-variant-numeric: tabular-nums;
}

.ct-wa__typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 10px;
  border-top-left-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.ct-wa__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(31, 44, 51, 0.4);
  animation: ct-wa-blink 1.2s infinite ease-in-out;
}

.ct-wa__typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.ct-wa__typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes ct-wa-blink {

  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.ct-wa__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s ease;
}

.ct-wa__cta:hover {
  background: #1ebe5d;
  color: #fff;
}

.ct-wa__cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ct-wa__cta-label svg {
  width: 16px;
  height: 16px;
}

.ct-wa__cta-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---- Section label (Adres, Çalışma saatleri) ---- */
.ct-info__section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ct-ink);
  margin-bottom: 10px;
}

.ct-info__section-label svg {
  width: 14px;
  height: 14px;
  color: var(--ct-accent);
}

/* ---- Address ---- */
.ct-info__address {
  margin-top: auto;
  padding-top: clamp(22px, 2.4vw, 30px);
  border-top: 1px solid var(--ct-line);
}

.ct-info__address-text {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ct-ink);
  font-weight: 500;
}

.ct-info__address-btn {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--ct-line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ct-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.ct-info__address-btn:hover {
  border-color: var(--ct-ink);
  color: var(--ct-ink);
}

.ct-info__address-btn-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-accent);
  flex-shrink: 0;
}

.ct-info__address-btn-icon svg {
  width: 18px;
  height: 18px;
}

.ct-info__address-btn-text {
  flex: 1;
}

.ct-info__address-btn-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 58, 46, 0.45);
  transition: color 0.25s ease;
}

.ct-info__address-btn-arrow svg {
  width: 16px;
  height: 16px;
}

.ct-info__address-btn:hover .ct-info__address-btn-arrow {
  color: var(--ct-ink);
}


@media (max-width: 991px) {
  .ct-split__inner {
    grid-template-columns: 1fr;
  }

  .ct-info {
    position: static;
  }
}

/* ---- Full-bleed map ---- */
.ct-mapwide {
  position: relative;
  width: 100%;
  height: clamp(360px, 50vh, 520px);
  background: var(--ct-cream);
  overflow: hidden;
}

.ct-mapwide .pxn-map,
.ct-mapwide .ct-mapwide__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ct-mapwide__overlay {
  position: absolute;
  top: clamp(16px, 2.4vw, 32px);
  left: clamp(16px, 2.4vw, 32px);
  z-index: 400;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 28px 60px -28px rgba(15, 58, 46, 0.35);
  max-width: 320px;
  border: 1px solid var(--ct-line);
}

.ct-mapwide__overlay-eye {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-accent);
  margin-bottom: 6px;
}

.ct-mapwide__overlay-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ct-ink);
  margin: 0 0 6px;
}

.ct-mapwide__overlay-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(15, 58, 46, 0.65);
  margin: 0 0 10px;
}

.ct-mapwide__overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ct-ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.ct-mapwide__overlay-link:hover {
  color: var(--ct-accent);
}


/* ============================================================================
   HERO v2 — Premium krem + asymmetric image + floating dark card
   (pages/home.php) — OVERRIDES eski hero-x rules
   ============================================================================ */
.hero-x {
  --hx-ink: #0f3a2e;
  --hx-muted: #4a5d56;
  --hx-soft: #6b7a73;
  --hx-line: rgba(15, 58, 46, 0.1);
  --hx-accent: #f7d046;
  --hx-deep: #0a2d23;
  --hx-bg: #ffffff;
  --hx-pill: #efe9d8;
  --hx-italic: #8a6c2a;

  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(96px, 12vh, 140px) 0 clamp(48px, 6vh, 80px);
  overflow: hidden;
  color: var(--hx-ink);
  background: var(--hx-bg);
}

/* Eski BG katmanlarını gizle (HTML'de yok ama eski CSS hala uygulanıyor olabilir) */
.hero-x__bg,
.hero-x__grain,
.hero-x__glow,
.hero-x__scroll,
.hero-x__phone,
.hero-x__trust,
.hero-x__topbar,
.hero-x__live,
.hero-x__eyebrow,
.hero-x__showcase,
.hero-x__chips,
.hero-x__stage {
  display: none !important;
}

/* Rotating word — yeni hero accent (krem bg üzerinde altın italik) */
.hero-x__rotate {
  display: inline-block;
  position: relative;
  height: 1em;
  line-height: 1.05;
  vertical-align: baseline;
  overflow: visible;
  margin-right: 0.15em;
}

.hero-x__word {
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  line-height: 1.05;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(35%);
  font-style: italic;
  font-weight: 600;
  color: var(--hx-italic);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding-right: 0.1em;
}

.hero-x__word.is-active {
  opacity: 1;
  transform: translateY(0.08em);
  position: relative;
}

.hero-x__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(var(--sp-x), calc((100vw - 1480px) / 2 + var(--sp-x)));
  padding-right: 0;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
  justify-content: initial;
}

.hero-x__copy {
  max-width: none;
}

/* Üst içerikler readability için kısıtlı, features daha geniş */
.hero-x__pill,
.hero-x__title,
.hero-x__lead,
.hero-x__actions {
  max-width: 620px;
}

.hero-x__features {
  max-width: 760px;
}

.hero-x__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Pill — yıldızlı eyebrow */
.hero-x__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px 8px 12px;
  background: var(--hx-pill);
  border: 1px solid rgba(15, 58, 46, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hx-ink);
}

.hero-x__pill svg {
  width: 14px;
  height: 14px;
  color: var(--hx-accent);
  flex-shrink: 0;
}

/* Title */
.hero-x__title {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: clamp(20px, 2vw, 30px) 0 clamp(20px, 2vw, 28px);
  color: var(--hx-ink);
  text-wrap: balance;
}

.hero-x__title-line {
  display: block;
}

.hero-x__title-line--accent em {
  font-style: italic;
  font-weight: 600;
  color: var(--hx-italic);
}

/* Lead */
.hero-x__lead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--hx-soft);
  margin: 0 0 clamp(28px, 3vw, 40px);
  max-width: 52ch;
  width: 100%;
  font-weight: 400;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

/* Actions */
.hero-x__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 1.6vw, 24px);
  margin-bottom: clamp(36px, 4vw, 52px);
}

.hero-x__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--hx-deep);
  color: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-x__cta:hover {
  background: var(--hx-ink);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(15, 58, 46, 0.5);
}

.hero-x__cta svg {
  transition: transform 0.3s ease;
}

.hero-x__cta:hover svg {
  transform: translateX(3px);
}

.hero-x__cta-alt {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hx-ink);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-x__cta-alt:hover {
  color: var(--hx-ink);
  opacity: 0.75;
}

.hero-x__cta-alt-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hx-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hx-ink);
  flex-shrink: 0;
}

.hero-x__cta-alt-icon svg {
  width: 18px;
  height: 18px;
}

.hero-x__cta-alt-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-x__cta-alt-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--hx-ink);
}

.hero-x__cta-alt-sub {
  font-size: 13px;
  color: var(--hx-soft);
}

/* Feature row (4 col) */
.hero-x__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 22px);
}

.hero-x__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  min-width: 0;
}

.hero-x__feature-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hx-ink);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-x__feature-icon svg {
  width: 20px;
  height: 20px;
}

.hero-x__feature-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
  min-width: 0;
}

.hero-x__feature-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--hx-ink);
}

.hero-x__feature-desc {
  font-size: 12px;
  color: var(--hx-soft);
}

/* Visual */
.hero-x__visual {
  position: relative;
  width: 100%;
  display: flex;
  align-self: stretch;
  max-width: none;
  margin-left: 0;
}

.hero-x__image {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 40% 0 0 24px;
  overflow: hidden;
  background: var(--hx-deep);
}

.hero-x__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Floating dark card */
.hero-x__floater {
  position: absolute;
  right: clamp(-12px, 0vw, 0px);
  bottom: clamp(-12px, 0vw, 0px);
  width: clamp(220px, 22vw, 280px);
  background: var(--hx-deep);
  color: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -24px rgba(10, 45, 35, 0.55);
  z-index: 2;
}

.hero-x__floater-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(247, 208, 70, 0.12);
  color: var(--hx-accent);
  margin-bottom: 14px;
}

.hero-x__floater-icon svg {
  width: 20px;
  height: 20px;
}

.hero-x__floater-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #ffffff;
  margin: 0 0 6px;
}

.hero-x__floater-text {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 12px;
}

.hero-x__floater-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--hx-accent);
  border-radius: 2px;
}

/* Mobile / Tablet */
@media (max-width: 991px) {
  .hero-x {
    padding: clamp(88px, 11vh, 120px) 0 clamp(40px, 5vh, 64px);
    min-height: 0;
  }

  .hero-x__inner {
    grid-template-columns: 1fr;
    padding-left: var(--sp-x);
    padding-right: var(--sp-x);
    gap: clamp(28px, 4vw, 40px);
  }

  .hero-x__copy {
    max-width: none;
  }

  .hero-x__pill,
  .hero-x__title,
  .hero-x__lead,
  .hero-x__actions,
  .hero-x__features {
    max-width: 100%;
  }

  .hero-x__visual {
    order: -1;
    width: 100%;
    max-width: 100%;
  }

  .hero-x__image {
    min-height: 0;
    max-height: 420px;
    aspect-ratio: 16 / 11;
    border-radius: 28px;
  }

  .hero-x__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .hero-x__floater {
    width: clamp(200px, 50vw, 280px);
  }
}

/* Phone landscape & small tablets */
@media (max-width: 767px) {
  .hero-x {
    padding: clamp(80px, 10vh, 100px) 0 clamp(36px, 5vh, 56px);
  }

  .hero-x__inner {
    gap: 24px;
  }

  .hero-x__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.1;
    margin: 16px 0 18px;
  }

  .hero-x__lead {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-x__actions {
    gap: 14px;
    margin-bottom: 28px;
  }

  .hero-x__cta {
    padding: 14px 22px;
    font-size: 14.5px;
  }

  .hero-x__cta-alt-icon {
    width: 40px;
    height: 40px;
  }

  .hero-x__cta-alt-label {
    font-size: 13.5px;
  }

  .hero-x__cta-alt-sub {
    font-size: 12px;
  }

  .hero-x__image {
    max-height: 340px;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .hero-x__features {
    gap: 12px 16px;
  }

  .hero-x__feature-title {
    font-size: 13px;
  }

  .hero-x__feature-desc {
    font-size: 11.5px;
  }
}

/* Small phones */
@media (max-width: 575px) {
  .hero-x {
    padding: clamp(76px, 10vh, 92px) 0 32px;
  }

  .hero-x__pill {
    font-size: 10px;
    letter-spacing: 0.18em;
    padding: 7px 13px 7px 10px;
  }

  .hero-x__title {
    font-size: clamp(26px, 8.5vw, 36px);
    margin: 14px 0 16px;
  }

  .hero-x__lead {
    font-size: 14.5px;
    margin-bottom: 22px;
  }

  .hero-x__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-x__cta {
    justify-content: center;
    width: 100%;
  }

  .hero-x__cta-alt {
    justify-content: flex-start;
    padding-top: 4px;
  }

  .hero-x__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-x__image {
    max-height: 300px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .hero-x__floater {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }
}

/* Tiny phones (iPhone SE etc.) */
@media (max-width: 374px) {
  .hero-x__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-x__title {
    font-size: 26px;
  }

  .hero-x__cta {
    padding: 13px 18px;
    font-size: 14px;
  }
}


/* ============================================================================
   HİZMETLER — Bento grid + filtre chips + FAQ v2 (pages/services.php)
   ============================================================================ */
.svc-page {
  --svc-ink:    #0f3a2e;
  --svc-accent: #f7d046;
  --svc-cream:  #f6f4ef;
  --svc-line:   rgba(15, 58, 46, 0.08);
  --svc-soft:   rgba(15, 58, 46, 0.6);
  background: linear-gradient(180deg, #fff 0%, var(--svc-cream) 100%);
}

/* ---- Intro ---- */
.svc-intro {
  padding: clamp(60px, 7vw, 90px) 0 clamp(40px, 5vw, 60px);
}

.svc-intro__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.svc-intro__copy { max-width: 720px; }

.svc-intro__eye {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--svc-soft);
  margin-bottom: 16px;
}
.svc-intro__eye > span:first-child { color: var(--svc-ink); }
.svc-intro__eye-line {
  width: 32px;
  height: 1px;
  background: var(--svc-ink);
}

.svc-intro__title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--svc-ink);
  margin: 0 0 14px;
}
.svc-intro__title em {
  font-style: normal;
  color: var(--svc-accent);
}

.svc-intro__lead {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--svc-soft);
}

.svc-intro__filter {
  background: var(--svc-cream);
  border: 1px solid var(--svc-line);
  border-radius: 20px;
  padding: clamp(18px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-intro__filter-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--svc-ink);
}
.svc-intro__filter-label svg {
  width: 14px;
  height: 14px;
  color: var(--svc-accent);
}

.svc-intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-intro__chip {
  appearance: none;
  border: 1px solid var(--svc-line);
  background: #fff;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--svc-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: inherit;
}
.svc-intro__chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 58, 46, 0.08);
  color: var(--svc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.svc-intro__chip-icon svg {
  width: 14px;
  height: 14px;
}
.svc-intro__chip:hover {
  border-color: var(--svc-ink);
}
.svc-intro__chip.is-active {
  background: var(--svc-ink);
  color: #fff;
  border-color: var(--svc-ink);
}
.svc-intro__chip.is-active .svc-intro__chip-icon {
  background: var(--svc-accent);
  color: var(--svc-ink);
}

@media (max-width: 991px) {
  .svc-intro__inner { grid-template-columns: 1fr; }
}

.svc-bento {
  padding: 0 0 clamp(60px, 7vw, 100px);
}

.svc-bento__grid {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: auto auto auto auto;
  gap: 16px;
}

.svc-bento__card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--svc-ink);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.svc-bento__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -22px rgba(15, 58, 46, 0.25);
}

.svc-bento__card.is-filtered-out {
  opacity: 0.2;
  pointer-events: none;
  filter: grayscale(0.8);
}

.svc-bento__no {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(15, 58, 46, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--svc-ink);
  width: fit-content;
}

/* HERO card */
.svc-bento__hero {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 380px;
  background: var(--svc-ink);
  color: #fff;
}

.svc-bento__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-bento__hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.svc-bento__hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 58, 46, 0.15) 0%, rgba(15, 58, 46, 0.55) 45%, rgba(10, 45, 35, 0.92) 100%);
}

.svc-bento__hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}

.svc-bento__hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.svc-bento__hero .svc-bento__no {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.svc-bento__hero-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--svc-accent);
  color: var(--svc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.svc-bento__hero-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-bento__hero-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
}

.svc-bento__hero-excerpt {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
}

.svc-bento__hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--svc-accent);
  color: var(--svc-ink);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.svc-bento__hero-cta svg { width: 14px; height: 14px; }

.svc-bento__hero-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: clamp(12px, 1.8vw, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.svc-bento__hero-feats > li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
}

.svc-bento__hero-feat-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-bento__hero-feat-icon svg { width: 12px; height: 12px; }

/* SIDE cards (Spa, Bakım, Gemi, Konsept) */
.svc-bento__side {
  background: #fff;
  border: 1px solid var(--svc-line);
  min-height: 182px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}

.svc-bento__side--1 { grid-column: 2; grid-row: 1; }
.svc-bento__side--2 { grid-column: 2; grid-row: 2; }
.svc-bento__side--3 { grid-column: 1; grid-row: 3; }
.svc-bento__side--4 { grid-column: 2; grid-row: 3; }

.svc-bento__side-body {
  padding: clamp(22px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.svc-bento__side-title {
  margin: 4px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 700;
  color: var(--svc-ink);
}

.svc-bento__side-excerpt {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--svc-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-bento__side-cta {
  margin-top: auto;
  padding-top: clamp(14px, 1.6vw, 20px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-ink);
}
.svc-bento__side-cta svg { width: 14px; height: 14px; }

.svc-bento__side-media {
  position: relative;
  width: clamp(160px, 22vw, 240px);
  padding: 14px 14px 14px 0;
}
.svc-bento__side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Stats strip + Mini CTA (row 4) */
.svc-bento__stats {
  grid-column: 1;
  grid-row: 5;
  background: var(--svc-cream);
  border-radius: 22px;
  padding: clamp(18px, 1.8vw, 24px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: center;
}

.svc-bento__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.svc-bento__stat-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--svc-ink);
  color: var(--svc-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-bento__stat-icon svg { width: 18px; height: 18px; }

.svc-bento__stat-num {
  display: block;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--svc-ink);
  line-height: 1.1;
}

.svc-bento__stat-label {
  display: block;
  font-size: 12px;
  color: var(--svc-soft);
  margin-top: 2px;
}

.svc-bento__stat-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--svc-ink);
  line-height: 1.3;
}

.svc-bento__mini-cta {
  grid-column: 2;
  grid-row: 5;
  background: var(--svc-ink);
  color: #fff;
  border-radius: 22px;
  padding: clamp(18px, 1.8vw, 22px) clamp(20px, 2vw, 26px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 20px);
}

.svc-bento__mini-cta-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--svc-accent);
  color: var(--svc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-bento__mini-cta-icon svg { width: 18px; height: 18px; }

.svc-bento__mini-cta-text {
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}

.svc-bento__mini-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: var(--svc-accent);
  color: var(--svc-ink);
  border: 1px solid var(--svc-accent);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.svc-bento__mini-cta-btn:hover {
  background: #ffffff;
  color: var(--svc-ink);
  border-color: #ffffff;
}
.svc-bento__mini-cta-btn svg { width: 14px; height: 14px; }

@media (max-width: 991px) {
  .svc-bento__grid { grid-template-columns: 1fr; }
  .svc-bento__hero,
  .svc-bento__side--1,
  .svc-bento__side--2,
  .svc-bento__side--3,
  .svc-bento__side--4,
  .svc-bento__stats,
  .svc-bento__mini-cta { grid-column: 1; grid-row: auto; }
  .svc-bento__hero { min-height: 460px; }
  .svc-bento__hero-feats { grid-template-columns: repeat(2, 1fr); }
  .svc-bento__stats { grid-template-columns: repeat(2, 1fr); }

  /* Side card: media üstte (full width), text altta */
  .svc-bento__side {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
  }
  .svc-bento__side-media {
    order: -1;
    width: 100%;
    padding: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .svc-bento__side-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  .svc-bento__side-body {
    padding: 22px 22px 24px;
  }
}
@media (max-width: 575px) {
  .svc-bento__side-media {
    aspect-ratio: 16 / 9;
  }
  .svc-bento__side-body {
    padding: 18px 18px 20px;
  }
  .svc-bento__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding: 20px 16px;
  }
  .svc-bento__stat { gap: 8px; }
  .svc-bento__stat-icon { width: 40px; height: 40px; }
  .svc-bento__stat-icon svg { width: 18px; height: 18px; }
  .svc-bento__stat-title { font-size: 13px; line-height: 1.3; }
  .svc-bento__mini-cta { flex-direction: column; align-items: flex-start; }
}

/* ---- FAQ v2 ---- */
.svc-faq {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--svc-cream);
}

.svc-faq__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.svc-faq__head {
  position: sticky;
  top: 100px;
}

.svc-faq__eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--svc-soft);
  margin-bottom: 20px;
}
.svc-faq__eye-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--svc-ink);
  color: var(--svc-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.svc-faq__eye-icon svg { width: 16px; height: 16px; }
.svc-faq__eye-key { color: var(--svc-ink); font-weight: 800; }
.svc-faq__eye-sep { color: rgba(15, 58, 46, 0.3); }

.svc-faq__title {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--svc-ink);
  margin: 0 0 18px;
}
.svc-faq__title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, var(--svc-accent) 60%);
  padding: 0 4px;
}

.svc-faq__lead {
  margin: 0 0 26px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--svc-soft);
  max-width: 44ch;
}

.svc-faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 22px 6px 6px;
  border-radius: 999px;
  background: var(--svc-ink);
  border: 1px solid var(--svc-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.svc-faq__cta:hover {
  background: var(--svc-accent);
  color: var(--svc-ink);
  border-color: var(--svc-accent);
}
.svc-faq__cta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--svc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-faq__cta-icon svg { width: 16px; height: 16px; }

.svc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-faq__item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px -4px rgba(15, 58, 46, 0.06);
  transition: box-shadow 0.25s ease;
}
.svc-faq__item:hover {
  box-shadow: 0 12px 28px -14px rgba(15, 58, 46, 0.18);
}

.svc-faq__btn {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--svc-ink);
}

.svc-faq__btn-plus {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--svc-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.svc-faq__btn-plus-bar {
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--svc-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.svc-faq__btn-plus-bar--v { transform: rotate(90deg); }

.svc-faq__btn:not(.collapsed) .svc-faq__btn-plus {
  background: var(--svc-ink);
}
.svc-faq__btn:not(.collapsed) .svc-faq__btn-plus-bar {
  background: var(--svc-accent);
}
.svc-faq__btn:not(.collapsed) .svc-faq__btn-plus-bar--v {
  transform: rotate(90deg) scaleX(0);
}

.svc-faq__btn-text {
  flex: 1;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.35;
  color: var(--svc-ink);
}

.svc-faq__btn-chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: rgba(15, 58, 46, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.25s ease;
}
.svc-faq__btn-chev svg { width: 16px; height: 16px; }
.svc-faq__btn:not(.collapsed) .svc-faq__btn-chev {
  transform: rotate(180deg);
  color: var(--svc-ink);
}

.svc-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-faq__panel > .svc-faq__body {
  overflow: hidden;
  min-height: 0;
}
.svc-faq__item.is-open .svc-faq__panel {
  grid-template-rows: 1fr;
}
.svc-faq__body {
  padding: 0 22px 0 76px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--svc-soft);
}
.svc-faq__item.is-open .svc-faq__body {
  padding-bottom: 22px;
}

@media (max-width: 991px) {
  .svc-faq__inner { grid-template-columns: 1fr; }
  .svc-faq__head { position: static; margin-bottom: 8px; }
  .svc-faq__body { padding-left: 26px; }
}


/* ============================================================================
   HİZMET DETAY (pages/service-detail.php)
   ============================================================================ */
.sd-page {
  --sd-ink:    #0f3a2e;
  --sd-deep:   #0a2d23;
  --sd-accent: #f7d046;
  --sd-cream:  #f6f4ef;
  --sd-line:   rgba(15, 58, 46, 0.08);
  --sd-soft:   rgba(15, 58, 46, 0.6);

  padding: clamp(40px, 5vw, 70px) 0 clamp(60px, 7vw, 100px);
  background: #fff;
}

.sd-page__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ---- Header ---- */
.sd-head { margin-bottom: clamp(20px, 2.4vw, 32px); }
.sd-head__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--sd-ink);
}
.sd-head__lead {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--sd-soft);
  max-width: 64ch;
}

/* ---- Hero image + strip ---- */
.sd-hero {
  position: relative;
  margin: 0 0 clamp(28px, 3vw, 40px);
  border-radius: 22px;
  overflow: hidden;
}
.sd-hero img {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  object-fit: cover;
}

.sd-hero__strip {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: rgba(10, 45, 35, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 16px clamp(14px, 1.6vw, 22px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sd-hero__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
}
.sd-page .sd-hero__feat-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sd-accent);
  color: var(--sd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-page .sd-hero__feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.sd-hero__feat strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.sd-hero__feat span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  line-height: 1.3;
}

/* ---- Body content (HTML from $service['content']) ---- */
.sd-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--sd-soft);
}

.sd-body > * { margin: 0; }
.sd-body > * + * { margin-top: 16px; }

.sd-body h2 {
  margin-top: clamp(36px, 4vw, 56px);
  margin-bottom: 18px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--sd-ink);
}
.sd-body h2:first-child { margin-top: 0; }

.sd-body h3 {
  margin-top: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-weight: 700;
  color: var(--sd-ink);
}

.sd-body p {
  margin: 0;
  margin-bottom: 14px;
}
.sd-body p:last-child { margin-bottom: 0; }

.sd-body strong { color: var(--sd-ink); font-weight: 700; }
.sd-body a { color: var(--sd-ink); font-weight: 600; text-decoration: underline; }
.sd-body a:hover { color: var(--sd-deep); }

.sd-body ul,
.sd-body ol {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-body ul li,
.sd-body ol li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--sd-soft);
}

.sd-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sd-accent);
  box-shadow: 0 0 0 4px rgba(247, 208, 70, 0.18);
}

.sd-body ol {
  counter-reset: sd-li;
}
.sd-body ol li {
  counter-increment: sd-li;
  padding-left: 36px;
}
.sd-body ol li::before {
  content: counter(sd-li, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sd-accent);
  background: var(--sd-ink);
  padding: 4px 8px;
  border-radius: 4px;
}

.sd-body blockquote {
  margin: 20px 0;
  padding: 18px 22px;
  background: var(--sd-cream);
  border-left: 3px solid var(--sd-accent);
  border-radius: 0 12px 12px 0;
  font-style: normal;
  color: var(--sd-ink);
}

.sd-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 18px 0;
}

/* ---- H2 common ---- */
.sd-h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--sd-ink);
}
.sd-h2__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sd-ink);
  color: var(--sd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sd-h2__icon--accent {
  background: var(--sd-accent);
  color: var(--sd-ink);
}
.sd-h2__icon svg { width: 14px; height: 14px; }

/* ---- Positions ---- */
.sd-positions {
  position: relative;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.sd-positions__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sd-positions__list > li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sd-positions__bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sd-ink);
  margin-top: 8px;
  flex-shrink: 0;
}
.sd-positions__list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--sd-ink);
  line-height: 1.35;
}
.sd-positions__list span {
  display: block;
  font-size: 13.5px;
  color: var(--sd-soft);
  line-height: 1.55;
  margin-top: 2px;
}

.sd-positions__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 110px;
  color: rgba(15, 58, 46, 0.18);
  pointer-events: none;
}

/* ---- Why ---- */
.sd-why { margin-bottom: clamp(36px, 4vw, 56px); }
.sd-why__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.sd-why__grid > li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sd-why__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #eaefe9;
  color: var(--sd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.sd-why__icon svg { width: 18px; height: 18px; }
.sd-why__grid strong {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--sd-ink);
  line-height: 1.3;
}
.sd-why__grid span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--sd-soft);
}

/* ---- Facility types ---- */
.sd-types { margin-bottom: clamp(28px, 3vw, 44px); }
.sd-types__text,
.sd-types__cta {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--sd-soft);
}
.sd-types__cta a {
  color: var(--sd-ink);
  font-weight: 700;
  text-decoration: underline;
}

/* ---- Tags ---- */
.sd-tags {
  margin-top: clamp(36px, 4vw, 56px);
  padding: clamp(24px, 2.6vw, 32px);
  background: var(--sd-cream);
  border-radius: 18px;
}

.sd-tags__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.sd-tags__head-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sd-accent);
  color: var(--sd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-tags__head-icon svg { width: 20px; height: 20px; }

.sd-tags__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sd-ink);
  line-height: 1;
}
.sd-tags__lead {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sd-soft);
  line-height: 1.4;
}

.sd-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sd-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border: 1px solid var(--sd-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sd-ink);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.sd-tags li:hover {
  border-color: var(--sd-ink);
}
.sd-tags__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sd-accent);
  color: var(--sd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-tags__check svg { width: 12px; height: 12px; }

/* ================= ASIDE ================= */
.sd-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
  will-change: transform;
}

.sd-aside__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--sd-ink);
}

/* Other services */
.sd-other {
  background: #fff;
  border: 1px solid var(--sd-line);
  border-radius: 18px;
  padding: 20px;
}
.sd-other ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }

.sd-other__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--sd-ink);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
  border: 1px solid transparent;
}
.sd-other__item:hover {
  border-color: var(--sd-line);
  color: var(--sd-ink);
}
.sd-other__item-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(15, 58, 46, 0.06);
  color: var(--sd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.sd-other__item-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.sd-other__item-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(15, 58, 46, 0.06);
  color: var(--sd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.sd-other__item-arrow svg { width: 12px; height: 12px; }

.sd-other__item.is-active {
  background: var(--sd-ink);
  color: #fff;
}
.sd-other__item.is-active .sd-other__item-icon {
  background: rgba(247, 208, 70, 0.18);
  color: var(--sd-accent);
}
.sd-other__item.is-active .sd-other__item-arrow {
  background: var(--sd-accent);
  color: var(--sd-ink);
}

/* Quote form */
.sd-quote {
  background: #fff;
  border: 1px solid var(--sd-line);
  border-radius: 18px;
  padding: 20px;
}
.sd-quote__lead {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sd-soft);
}
.sd-quote__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sd-quote__form input,
.sd-quote__form textarea {
  appearance: none;
  width: 100%;
  border: 1px solid var(--sd-line);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--sd-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.sd-quote__form textarea {
  min-height: 110px;
  resize: vertical;
}
.sd-quote__form input:focus,
.sd-quote__form textarea:focus {
  border-color: var(--sd-ink);
  box-shadow: 0 0 0 3px rgba(15, 58, 46, 0.06);
}
.sd-quote__form input::placeholder,
.sd-quote__form textarea::placeholder {
  color: rgba(15, 58, 46, 0.4);
}

.sd-page .sd-quote__submit,
.sd-page .sd-quote__submit:hover {
  appearance: none;
  border: 0;
  margin-top: 4px;
  background: var(--sd-accent);
  color: var(--sd-ink);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background 0.25s ease;
}
.sd-page .sd-quote__submit:hover {
  background: var(--sd-ink);
  color: var(--sd-accent);
}
.sd-quote__submit svg { width: 16px; height: 16px; }

/* Contact card */
.sd-contact {
  background: var(--sd-ink);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  position: relative;
}
.sd-contact__icon {
  display: inline-flex;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sd-accent);
  color: var(--sd-ink);
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sd-contact__icon svg { width: 18px; height: 18px; }
.sd-contact__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.sd-contact__lead {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.sd-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}
.sd-contact__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.sd-contact__list svg {
  width: 16px;
  height: 16px;
  color: var(--sd-accent);
}
.sd-page .sd-contact__list a,
.sd-page .sd-contact__list a:hover {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.sd-contact__hours {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 10px;
  align-items: center;
}
.sd-page .sd-contact__hours-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sd-accent);
  color: var(--sd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-page .sd-contact__hours-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
}
.sd-contact__hours strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.sd-contact__hours span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .sd-page__inner { grid-template-columns: 1fr; }
  .sd-aside { position: static; }
  .sd-hero__strip { grid-template-columns: repeat(2, 1fr); }
  .sd-why__grid { grid-template-columns: repeat(2, 1fr); }
  .sd-positions__deco { display: none; }
}

@media (max-width: 767px) {
  /* Strip image üstünden çıkıp altına in — image kapanmasın */
  .sd-hero {
    border-radius: 18px;
  }
  .sd-hero img {
    height: clamp(220px, 50vw, 300px);
    border-radius: 18px;
  }
  .sd-hero__strip {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
    border-radius: 18px;
    padding: 16px;
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .sd-hero__strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sd-why__grid { grid-template-columns: 1fr; }
}


/* ============================================================================
   ŞUBELER — Rich branch cards + dotted world map (pages/branches.php)
   ============================================================================ */
.br-page,
.br-hero {
  --br-ink:    #0f3a2e;
  --br-deep:   #0a2d23;
  --br-accent: #f7d046;
  --br-cream:  #f6f4ef;
  --br-line:   rgba(15, 58, 46, 0.08);
  --br-soft:   rgba(15, 58, 46, 0.6);
}

.br-page {
  padding: clamp(60px, 7vw, 100px) 0 clamp(40px, 5vw, 60px);
  background: #fff;
}

/* ---- Full-screen hero map ---- */
.br-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--br-deep);
}

.br-hero__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.br-hero__overlay {
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  bottom: clamp(28px, 5vw, 60px);
  z-index: 400;
  max-width: min(540px, 92vw);
  padding: clamp(24px, 2.4vw, 36px);
  background: rgba(15, 58, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 40px 80px -28px rgba(0, 0, 0, 0.6);
}

.br-hero__eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.br-hero__eye > span:first-child { color: var(--br-accent); }
.br-hero__eye-line {
  width: 28px;
  height: 1px;
  background: var(--br-accent);
}

.br-hero__title {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
}
.br-hero__title em {
  font-style: normal;
  color: var(--br-accent);
}

.br-hero__lead {
  margin: 0 0 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
}

.br-hero__chips {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.br-hero .br-hero__chip,
.br-hero .br-hero__chip:hover {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.br-hero .br-hero__chip:hover {
  background: var(--br-accent);
  color: var(--br-ink);
  border-color: var(--br-accent);
}
.br-hero__chip-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.br-hero__chip-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.br-hero .br-hero__scroll,
.br-hero .br-hero__scroll:hover {
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 60px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease;
}
.br-hero .br-hero__scroll:hover {
  background: var(--br-accent);
  color: var(--br-ink);
  border-color: var(--br-accent);
}
.br-hero__scroll svg {
  width: 14px;
  height: 14px;
  animation: br-hero-bob 1.6s ease-in-out infinite;
}
@keyframes br-hero-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* Hero pin */
.br-hero-pin {
  position: relative;
  width: 22px;
  height: 30px;
}
.br-hero-pin__svg {
  display: block;
  width: 22px;
  height: 30px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.br-hero-pin__shadow {
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 18px;
  height: 6px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

/* Hero popup */
.br-hero .leaflet-popup-content-wrapper {
  background: #0f3a2e;
  color: #fff;
  border-radius: 14px;
  padding: 4px 6px;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.5);
}
.br-hero .leaflet-popup-tip { background: #0f3a2e; }
.br-hero .leaflet-popup-content { margin: 12px 16px; font-size: 13px; }
.br-hero .leaflet-popup-close-button { display: none; }
.br-hero-popup strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.br-hero-popup span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f7d046;
  margin-top: 3px;
}
.br-hero-popup p {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  max-width: 22ch;
}

/* Permanent tooltip styled as branch card */
.br-hero .leaflet-tooltip.br-hero-tooltip {
  background: linear-gradient(135deg, #0f3a2e 0%, #0a2d23 100%);
  color: #fff;
  border: 1px solid rgba(247, 208, 70, 0.18);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 28px 56px -18px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  opacity: 1 !important;
  white-space: normal;
  width: 260px;
  max-width: 260px;
  pointer-events: auto;
  overflow: hidden;
}
/* Center direction — tooltip virtual anchor üzerine ortalı yerleşir */
.br-hero .leaflet-tooltip-center.br-hero-tooltip {
  margin: 0;
}
.br-virtual-anchor { background: transparent; border: 0; }
/* Hide default Leaflet tooltip tip */
.br-hero .leaflet-tooltip.br-hero-tooltip::before {
  display: none;
}

/* Modern branch card */
.br-hero-card {
  position: relative;
  padding: 16px 18px;
}
.br-hero-card__accent {
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, #f7d046 0%, rgba(247, 208, 70, 0) 100%);
  border-radius: 0 3px 3px 0;
}
.br-hero-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.br-hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.br-hero-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f7d046;
  box-shadow: 0 0 0 3px rgba(247, 208, 70, 0.2);
}
.br-hero-card__body strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}
.br-hero-card__body p {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.br-hero-card__body p svg {
  width: 14px;
  height: 14px;
  color: #f7d046;
  stroke: #f7d046 !important;
  fill: none !important;
  flex-shrink: 0;
  margin-top: 2px;
}
.br-hero-card__body p span {
  flex: 1;
  min-width: 0;
}

/* Leaflet controls polish */
.br-hero .leaflet-control-zoom {
  border: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.3) !important;
}
.br-hero .leaflet-control-zoom a {
  background: #fff;
  color: #0f3a2e;
  border-bottom: 1px solid rgba(15, 58, 46, 0.08) !important;
}
.br-hero .leaflet-control-zoom a:hover {
  background: #f6f4ef;
}

@media (max-width: 991px) {
  .br-hero {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: clamp(24px, 4vw, 40px);
  }

  .br-hero__map {
    position: relative;
    inset: auto;
    width: 100%;
    height: 60vh;
    min-height: 420px;
  }

  .br-hero__overlay {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: auto;
    max-width: none;
    margin: clamp(16px, 3vw, 28px) var(--sp-x) 0;
    padding: clamp(20px, 4vw, 28px);
    border-radius: 22px;
  }

  .br-hero__scroll {
    display: none;
  }

  /* Mobilde leader-line tooltipleri ve sanal anchor pinleri gizle —
     ekranda örtüşüp haritayı kapatıyorlar. Alt overlay'deki chip'ler
     navigasyon olarak yeterli. */
  .br-hero .leaflet-tooltip.br-hero-tooltip,
  .br-hero .br-virtual-anchor,
  .br-hero .leaflet-overlay-pane svg path[stroke="#f7d046"] {
    display: none !important;
  }
  .br-hero .leaflet-overlay-pane {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .br-hero__map {
    height: 55vh;
    min-height: 360px;
  }

  .br-hero__overlay {
    margin: 16px 14px 0;
    padding: 22px 18px;
  }

  .br-hero__title {
    font-size: clamp(22px, 6vw, 30px);
  }

  .br-hero__lead {
    font-size: 14px;
  }

  .br-hero__chips {
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .br-hero__map {
    height: 50vh;
    min-height: 320px;
  }

  .br-hero__chips {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .br-hero .br-hero__chip {
    justify-content: flex-start;
    width: 100%;
  }
}

.br-page__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--sp-x);
}

/* ---- 3 branch cards ---- */
.br-grid {
  list-style: none;
  margin: 0 0 clamp(40px, 4vw, 64px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}

.br-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.br-card:hover {
  border-color: var(--br-ink);
  box-shadow: 0 20px 44px -22px rgba(15, 58, 46, 0.2);
}

.br-card__media {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.br-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.br-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a4f44 0%, #0f3a2e 100%);
}

.br-card__flag {
  position: absolute;
  left: 50%;
  top: calc(260px - 24px);
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  overflow: hidden;
  box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.br-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.br-card__body {
  padding: clamp(24px, 2.4vw, 32px);
  padding-top: clamp(28px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.br-card__title {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--br-ink);
}
.br-card__sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--br-accent);
}
.br-card__desc {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--br-soft);
}

.br-card__svc-label {
  margin: 16px 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--br-ink);
  letter-spacing: -0.005em;
}
.br-card__svc {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.br-card__svc > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--br-soft);
}
.br-card__svc-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--br-ink);
  color: var(--br-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.br-card__svc-check svg { width: 10px; height: 10px; }

.br-page .br-card__cta,
.br-page .br-card__cta:hover {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #fff;
  color: var(--br-ink);
  border: 1px solid var(--br-line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.br-page .br-card__cta:hover {
  background: var(--br-ink);
  color: #fff;
  border-color: var(--br-ink);
}

@media (max-width: 1199px) {
  .br-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .br-grid { grid-template-columns: 1fr; }
}


/* ---- Branch modal ---- */
html.br-modal-lock,
html.br-modal-lock body { overflow: hidden; }

.br-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
}
.br-modal.is-open {
  display: flex;
  animation: br-modal-fade 0.25s ease;
}
@keyframes br-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.br-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 45, 35, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  cursor: pointer;
  padding: 0;
}

.br-modal__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.4);
  transform: scale(0.96) translateY(8px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.br-modal.is-open .br-modal__panel {
  transform: scale(1) translateY(0);
}

.br-modal .br-modal__close,
.br-modal .br-modal__close:hover,
.br-modal .br-modal__close:focus {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 58, 46, 0.1);
  color: #0f3a2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.br-modal .br-modal__close:hover {
  background: #0f3a2e;
  color: #f7d046;
}
.br-modal__close svg { width: 16px; height: 16px; }

.br-modal__media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.br-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.br-modal__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a4f44 0%, #0f3a2e 100%);
}

.br-modal__flag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  overflow: hidden;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.br-modal__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.br-modal__body {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.br-modal__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f7d046;
}

.br-modal .br-modal__title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0f3a2e;
}

.br-modal .br-modal__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(15, 58, 46, 0.65);
}

.br-modal__info {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(15, 58, 46, 0.08);
  padding-top: 20px;
}
.br-modal__info > li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.br-modal__info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eaefe9;
  color: #0f3a2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.br-modal__info-icon svg { width: 16px; height: 16px; }
.br-modal__info > li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.br-modal__info strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 58, 46, 0.55);
}
.br-modal__info span,
.br-modal .br-modal__info a {
  font-size: 14px;
  font-weight: 600;
  color: #0f3a2e;
  text-decoration: none;
  line-height: 1.4;
}
.br-modal .br-modal__info a:hover { color: #0a2d23; }

.br-modal__actions {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.br-modal .br-modal__cta,
.br-modal .br-modal__cta:hover {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #0f3a2e;
  color: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.br-modal .br-modal__cta:hover {
  background: #f7d046;
  color: #0f3a2e;
}
.br-modal__cta svg { width: 14px; height: 14px; }

.br-modal .br-modal__alt,
.br-modal .br-modal__alt:hover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(15, 58, 46, 0.1);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0f3a2e;
  text-decoration: none;
  transition: border-color 0.25s ease;
}
.br-modal .br-modal__alt:hover { border-color: #0f3a2e; }
.br-modal__alt svg { width: 14px; height: 14px; color: #f7d046; }

@media (max-width: 767px) {
  .br-modal__panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
  .br-modal__media { min-height: 220px; }
  .br-modal__body { overflow-y: visible; }
}


/* ============================================================================
   OFFCANVAS — Mobile slide-in menu (partials/offcanvas.php)
   Marka dili: koyu yeşil + sarı accent, modern tipografi
   ============================================================================ */
.oc-overlay {
  position: fixed !important;
  inset: 0;
  background: rgba(10, 45, 35, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.oc-overlay.opened {
  opacity: 1;
  pointer-events: auto;
}

.oc {
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  max-width: 100%;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.oc.opened {
  transform: translateX(0);
}

.oc__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(247, 208, 70, 0.08) 0%, rgba(247, 208, 70, 0) 60%),
    linear-gradient(160deg, #0f3a2e 0%, #0a2d23 60%, #06241c 100%);
  z-index: 0;
}

.oc__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 90%);
  opacity: 0.6;
  pointer-events: none;
}

.oc__inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(22px, 5vw, 32px) 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #ffffff;
}

/* ---- Top: logo + close ---- */
.oc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.oc__logo {
  display: inline-flex;
  align-items: center;
}

.oc__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.pxn_offcanvas .oc__close,
.oc .oc__close {
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pxn_offcanvas .oc__close .oc__close-icon,
.oc .oc__close .oc__close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-size: 0;
  line-height: 0;
  color: inherit;
}

.pxn_offcanvas .oc__close .oc__close-icon svg,
.oc .oc__close .oc__close-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  max-width: none;
  color: inherit;
  stroke: currentColor;
}

.pxn_offcanvas .oc__close:hover,
.oc .oc__close:hover {
  background: rgba(247, 208, 70, 0.16);
  border-color: rgba(247, 208, 70, 0.4);
  transform: rotate(90deg);
  color: #f7d046;
}

/* ---- Nav ---- */
.oc__nav {
  padding: 28px 0 24px;
}

.oc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.oc__item {
  position: relative;
}

.oc__item + .oc__item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.oc__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.oc__num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
  width: 28px;
  transition: color 0.3s ease;
}

.oc__label {
  flex: 1 1 auto;
  min-width: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc__arrow {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}

.oc__link:hover {
  color: #f7d046;
  padding-left: 4px;
}

.oc__link:hover .oc__num {
  color: rgba(247, 208, 70, 0.6);
}

.oc__link:hover .oc__arrow {
  opacity: 1;
  transform: translateX(0);
  background: #f7d046;
  color: #0f3a2e;
  border-color: #f7d046;
}

.oc__item.is-active .oc__link {
  color: #f7d046;
}

.oc__item.is-active .oc__num {
  color: #f7d046;
}

.oc__item.is-active .oc__arrow {
  opacity: 1;
  transform: translateX(0);
  background: rgba(247, 208, 70, 0.16);
  color: #f7d046;
  border-color: rgba(247, 208, 70, 0.35);
}

/* ---- CTA block ---- */
.oc__cta-block {
  padding: 4px 0 20px;
}

.oc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 22px;
  background: #f7d046;
  color: #0f3a2e;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oc__cta:hover {
  transform: translateY(-2px);
  color: #0f3a2e;
  box-shadow: 0 14px 32px -10px rgba(247, 208, 70, 0.5);
}

.oc__cta svg {
  transition: transform 0.25s ease;
}

.oc__cta:hover svg {
  transform: translate(3px, -3px);
}

/* ---- Contact section ---- */
.oc__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.oc__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.oc__contact-row--link {
  cursor: pointer;
}

.oc__contact-row--link:hover {
  color: #f7d046;
}

.oc__contact-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(247, 208, 70, 0.12);
  border: 1px solid rgba(247, 208, 70, 0.18);
  color: #f7d046;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oc__contact-text {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
}

.oc__contact-row--link:hover .oc__contact-icon {
  background: rgba(247, 208, 70, 0.2);
  border-color: rgba(247, 208, 70, 0.3);
}

/* ---- Footer ---- */
.oc__foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oc__social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.oc__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.oc__social-btn:hover {
  background: #f7d046;
  border-color: #f7d046;
  color: #0f3a2e;
  transform: translateY(-2px);
}

.oc__copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Tablet & desktop hide ScrollSmoother conflict — z-index over header */
@media (min-width: 992px) {
  .oc,
  .oc-overlay {
    display: none !important;
  }
}

@media (max-width: 374px) {
  .oc__inner {
    padding: 20px 20px 24px;
  }

  .oc__link {
    font-size: 19px;
    padding: 14px 0;
  }

  .oc__cta {
    padding: 13px 20px;
    font-size: 14px;
  }
}


/* ============================================================================
   RTL — Arabic and other RTL locales support
   ============================================================================ */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] body {
  direction: rtl;
}

/* Flip margins/paddings selectively */
html[dir="rtl"] .oc {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}
html[dir="rtl"] .oc.opened {
  transform: translateX(0);
}

/* Lang menu dropdown — anchor to left on RTL */
html[dir="rtl"] .head-x__lang-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

/* Reverse hover slide direction */
html[dir="rtl"] .head-x__lang-menu a:hover {
  padding-left: 14px;
  padding-right: 12px;
}

/* Numeric / latin sections keep ltr inside RTL flow */
html[dir="rtl"] .about-min__eye > span:first-child,
html[dir="rtl"] .svc-intro__eye > span:first-child,
html[dir="rtl"] .ab-story__eye > span:first-child,
html[dir="rtl"] .ab-pillars__eye > span:first-child,
html[dir="rtl"] .ab-manifesto__eye > span:first-child,
html[dir="rtl"] .ct-form__eye > span:first-child,
html[dir="rtl"] .ct-info__eye > span:first-child,
html[dir="rtl"] .br-hero__eye > span:first-child,
html[dir="rtl"] .flow-v2__eye > span:first-child,
html[dir="rtl"] .cta-x__eye > span:first-child,
html[dir="rtl"] .svc-stage__eyebrow > span:first-child,
html[dir="rtl"] .hero-x__pill,
html[dir="rtl"] .hero-x__feature-meta,
html[dir="rtl"] .svc-card__meta,
html[dir="rtl"] .flow-v2__phase-num,
html[dir="rtl"] .ab-manifesto__step-node {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Form inputs keep latin direction for email/phone/numeric */
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="number"],
html[dir="rtl"] input[type="url"],
html[dir="rtl"] .ct-phone__input {
  direction: ltr;
  text-align: right;
}

/* Reverse arrow icons inside CTAs (visual direction matches reading) */
html[dir="rtl"] .hero-x__cta svg,
html[dir="rtl"] .head-x__cta svg,
html[dir="rtl"] .oc__cta svg,
html[dir="rtl"] .ab-story__cta-btn svg,
html[dir="rtl"] .ab-pillars__arrow svg,
html[dir="rtl"] .svc-card__cta-arrow,
html[dir="rtl"] .svc-bento__hero-cta svg,
html[dir="rtl"] .svc-bento__side-cta svg,
html[dir="rtl"] .cta-x__action-arrow svg,
html[dir="rtl"] .ct-wa__cta-arrow,
html[dir="rtl"] .br-modal__cta svg,
html[dir="rtl"] .br-card__cta svg,
html[dir="rtl"] .sd-quote__submit svg,
html[dir="rtl"] .ft__subscribe svg,
html[dir="rtl"] .oc__link .oc__arrow,
html[dir="rtl"] .head-x__nav li > a::after {
  transform: scaleX(-1);
}

/* Marquee — keep natural ltr direction for logos to scroll left */
html[dir="rtl"] .pxn-marquee,
html[dir="rtl"] .about-min__clients-marquee {
  direction: ltr;
}

/* Footer subscribe arrow icon flip */
html[dir="rtl"] .ft__subscribe button svg {
  transform: scaleX(-1);
}

/* Toggle button align */
html[dir="rtl"] .oc__close {
  margin-left: auto;
  margin-right: 0;
}

/* Disable header asymmetric padding on RTL (image flush-right design) */
html[dir="rtl"] .hero-x__inner {
  padding-left: 0;
  padding-right: max(var(--sp-x), calc((100vw - 1480px) / 2 + var(--sp-x)));
}
html[dir="rtl"] .hero-x__image {
  border-radius: 0 40% 24px 0;
}
@media (max-width: 991px) {
  html[dir="rtl"] .hero-x__inner {
    padding-left: var(--sp-x);
    padding-right: var(--sp-x);
  }
}

/* Lang switcher dropdown reversed gap */
html[dir="rtl"] .head-x__lang-menu a {
  padding: 10px 10px 10px 14px;
}



/* ============================================================================
   Accessibility — visible focus baseline
   ============================================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #f7d046;
  outline-offset: 2px;
  border-radius: 4px;
}



/* ============================================================================
   COOKIE CONSENT — KVKK / GDPR banner + customize modal
   ============================================================================ */
.cc {
  position: fixed;
  z-index: 9998;
  inset: auto;
}

.cc__banner {
  position: fixed;
  left: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 28px);
  max-width: 1080px;
  margin-inline: auto;
  background: #ffffff;
  color: #0f3a2e;
  border: 1px solid rgba(15, 58, 46, 0.08);
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  box-shadow: 0 24px 60px -16px rgba(15, 58, 46, 0.18),
              0 0 0 1px rgba(15, 58, 46, 0.02) inset;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 2.4vw, 32px);
  align-items: center;
}

.cc__body { min-width: 0; }

.cc__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #0f3a2e;
}

.cc__lead {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(15, 58, 46, 0.7);
}

.cc__policy-link {
  color: #0f3a2e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.cc__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cc__btn {
  appearance: none;
  border: 0;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cc__btn--ghost {
  background: #f6f4ef;
  color: rgba(15, 58, 46, 0.75);
  border: 1px solid rgba(15, 58, 46, 0.08);
}
.cc__btn--ghost:hover {
  background: #efe9d8;
  color: #0f3a2e;
  border-color: rgba(15, 58, 46, 0.18);
}

.cc__btn--outline {
  background: transparent;
  color: #0f3a2e;
  border: 1px solid rgba(15, 58, 46, 0.18);
}
.cc__btn--outline:hover {
  background: rgba(15, 58, 46, 0.05);
  border-color: rgba(15, 58, 46, 0.32);
}

.cc__btn--primary {
  background: #0f3a2e;
  color: #ffffff;
}
.cc__btn--primary:hover {
  background: #0a2d23;
}

/* ---- Modal ---- */
.cc__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
}

.cc__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 45, 35, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cc__modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  background: #ffffff;
  color: #0f3a2e;
  border-radius: 20px;
  box-shadow: 0 32px 80px -16px rgba(15, 58, 46, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cc__modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(15, 58, 46, 0.08);
}

.cc__modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f3a2e;
}

.cc__modal-close {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(15, 58, 46, 0.55);
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.cc__modal-close:hover {
  background: rgba(15, 58, 46, 0.06);
  color: #0f3a2e;
}

.cc__modal-body {
  padding: 8px 24px 20px;
  overflow-y: auto;
}

.cc__cat {
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 58, 46, 0.06);
}
.cc__cat:last-child { border-bottom: 0; }

.cc__cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}

.cc__cat-title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #0f3a2e;
}

.cc__cat-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(15, 58, 46, 0.62);
}

/* ---- Toggle switch ---- */
.cc__switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
  flex: 0 0 auto;
}
.cc__switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cc__switch-track {
  position: absolute;
  inset: 0;
  background: rgba(15, 58, 46, 0.18);
  border-radius: 999px;
  transition: background 0.25s ease;
}
.cc__switch-track::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc__switch input:checked + .cc__switch-track {
  background: #0f3a2e;
}
.cc__switch input:checked + .cc__switch-track::before {
  transform: translateX(18px);
}
.cc__switch input:focus-visible + .cc__switch-track {
  outline: 2px solid #f7d046;
  outline-offset: 2px;
}

/* Always-on indicator */
.cc__cat-toggle--locked {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f3a2e;
  background: rgba(247, 208, 70, 0.22);
  padding: 5px 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.cc__modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  background: #faf7f0;
  border-top: 1px solid rgba(15, 58, 46, 0.08);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .cc__banner {
    grid-template-columns: 1fr;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 18px;
  }
  .cc__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .cc__btn--primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 374px) {
  .cc__actions {
    grid-template-columns: 1fr;
  }
  .cc__btn--primary { grid-column: auto; }
}

/* RTL: same layout works fine (no directional positioning) */
html[dir="rtl"] .cc__policy-link {
  text-underline-offset: 3px;
}


/* ============================================================================
   SVC BENTO — extras row (services beyond bento 5)
   ============================================================================ */
.svc-bento__extras {
  grid-column: 1 / -1;
  grid-row: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Adapt column count to item count when there are 1 or 2 extras */
.svc-bento__extras[data-extras-count="1"] {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}
.svc-bento__extras[data-extras-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.svc-bento__extra {
  display: grid;
  grid-template-columns: 1fr clamp(180px, 22vw, 240px);
  background: #ffffff;
  border: 1px solid var(--svc-line);
  border-radius: 22px;
  overflow: hidden;
  min-height: 200px;
  align-items: stretch;
}

.svc-bento__extra-media {
  position: relative;
  order: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 14px 14px 14px 0;
}
.svc-bento__extra-media img {
  border-radius: 14px;
}
.svc-bento__extra-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-bento__extra:hover .svc-bento__extra-media img {
  transform: scale(1.05);
}

.svc-bento__extra-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  flex: 1;
}

.svc-bento__extra-title {
  margin: 6px 0 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--svc-ink);
}

.svc-bento__extra-excerpt {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--svc-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-bento__extra-cta {
  margin-top: auto;
  padding-top: clamp(14px, 1.6vw, 20px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-ink);
}
.svc-bento__extra-cta svg { width: 14px; height: 14px; }

@media (max-width: 991px) {
  .svc-bento__extras {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svc-bento__extra {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .svc-bento__extra-media {
    order: -1;
    aspect-ratio: 16 / 10;
    padding: 0;
  }
  .svc-bento__extra-media img {
    border-radius: 0;
  }
}

@media (max-width: 575px) {
  .svc-bento__extras {
    grid-template-columns: 1fr;
  }
}
