/* =====================================================================
   PH Mekanik — Premium Design System  v3.0
   Industrial / Corporate Engineering Theme
   ===================================================================== */

/* ─── 1. Custom Properties ──────────────────────────────────────────── */
:root {
  /* Brand */
  --color-primary:       #1F4B8F;
  --color-primary-dark:  #163870;
  --color-primary-light: rgba(31,75,143,.08);
  --color-primary-mid:   rgba(31,75,143,.16);
  --color-accent:        #3B82F6;

  /* Neutrals */
  --color-dark:    #0F172A;
  --color-heading: #0F172A;
  --color-body:    rgba(15,23,42,.78);
  --color-muted:   #6B7280;
  --color-subtle:  #9CA3AF;
  --color-border:  rgba(15,23,42,.08);
  --color-border-s:rgba(15,23,42,.13);
  --color-light:   #F3F4F6;
  --color-light-2: #EEF2F7;
  --color-white:   #FFFFFF;

  /* Footer */
  --color-footer-bg:  #0B1929;
  --color-footer-mid: #102035;

  /* Typography */
  --font: "Poppins", system-ui, sans-serif;

  /* Spacing */
  --section-space:    clamp(72px, 9vw, 120px);
  --section-space-sm: clamp(48px, 6vw, 72px);

  /* Layout */
  --container-width: 1300px;
  --content-width:   780px;
  --header-h:        88px;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --sh-xs:  0 1px 4px  rgba(15,23,42,.05);
  --sh-sm:  0 4px 16px rgba(15,23,42,.07);
  --sh-md:  0 8px 32px rgba(15,23,42,.10);
  --sh-lg:  0 16px 56px rgba(15,23,42,.14);
  --sh-primary: 0 8px 32px rgba(31,75,143,.30);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --fast: 180ms;
  --base: 240ms;
  --slow: 360ms;

  /* H2 typography tokens */
  --h2-xl:        clamp(1.75rem, 3.5vw, 2.35rem);
  --h2-lg:        clamp(1.5rem, 3vw, 2.1rem);
  --h2-md:        clamp(1.375rem, 2.8vw, 1.95rem);
  --h2-sm:        1.375rem;
  --h2-prose:     clamp(1.2rem, 1.8vw, 1.5rem);
  --fw-h2:        700;
  --fw-h2-strong: 800;
  --lh-h2:        1.15;
  --ls-h2:        -.03em;
}

/* ─── 2. Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, video { display: block; max-width: 100%; height: auto; }
a   { color: var(--color-primary); text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
table  { border-collapse: collapse; width: 100%; }
p      { max-width: 70ch; }

/* ─── 3. Accessibility ───────────────────────────────────────────────── */
.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; z-index: 9999;
  background: var(--color-primary); color: #fff;
  padding: .75rem 1.25rem; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 600;
}
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
:focus:not(:focus-visible) { outline: none; }

/* ─── 4. Layout ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: clamp(1rem,4vw,2rem);
}
.container--narrow { max-width: var(--content-width); }
.site-content { flex: 1; }

/* ─── 5. Typography ──────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-heading);
}
h1 { font-size: clamp(2rem,   5vw, 3.5rem); letter-spacing: -.03em; }
h2 {
  font-size: var(--h2-xl);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.0625rem; font-weight: 600; }

/* ── H2 grouped typography — central token system ───────────────────── */

/* XL — section başlıkları */
.section-heading__title,
.services-preview__title,
.home-modular-water__title,
.home-certificates__title,
.about-intro__title,
.blog-intro__title {
  font-size: var(--h2-xl);
  font-weight: var(--fw-h2-strong);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

/* MD — özet / panel başlıkları */
.product-summary__title,
.service-summary__title,
.principles-split__intro h2 {
  font-size: var(--h2-md);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

/* MD — CTA başlıkları */
.home-cta__title,
.bottom-cta__title {
  font-size: var(--h2-md);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

/* LG — bölüm alt başlıkları */
.service-section-title {
  font-size: var(--h2-lg);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

/* PROSE — editör / sekme içi H2'ler */
.entry-content h2,
.home-seo-content__text h2,
.service-tab-content h2,
.service-readmore__content h2,
#product-tab-desc h2 {
  font-size: var(--h2-prose);
  font-weight: var(--fw-h2);
  line-height: 1.25;
  letter-spacing: -.025em;
}

/* SM — band / form / ilgili başlıkları */
.related-section__title,
.related-posts__title,
.contact-form-card__title,
.quote-form-card__title {
  font-size: var(--h2-sm);
  font-weight: var(--fw-h2);
  line-height: 1.25;
  letter-spacing: -.025em;
}

/* ─── 6. Buttons ─────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 44px;
  padding: 0 1.5rem;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color var(--base) var(--ease),
    border-color     var(--base) var(--ease),
    color            var(--base) var(--ease),
    box-shadow       var(--base) var(--ease),
    transform        var(--fast) var(--ease);
}
.button:active { transform: scale(.97); }

.button--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a5ead 100%);
  color: #fff; border-color: transparent;
}
.button--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff; box-shadow: var(--sh-primary);
  transform: translateY(-1px);
}

.button--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.button--outline:hover {
  background: var(--color-primary);
  color: #fff; transform: translateY(-1px);
}

.button--white {
  background: #fff; color: var(--color-primary); border-color: #fff;
}
.button--white:hover { background: var(--color-light-2); }

.button--outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.button--outline-white:hover {
  background: rgba(255,255,255,.12); border-color: #fff;
}

.button--lg { height: 52px; padding: 0 2rem; font-size: 1rem; }
.button--sm { height: 36px; padding: 0 1.125rem; font-size: .8125rem; }
.button--block { width: 100%; }

/* ─── 7. Section Heading ─────────────────────────────────────────────── */
.section-heading { margin-bottom: clamp(2rem,4vw,3rem); }
.section-heading--center { text-align: center; }
.section-heading--center .section-heading__text { margin-inline: auto; }

.section-heading__eyebrow {
  display: inline-block;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary-mid);
  padding: .25rem .875rem; border-radius: 999px;
  margin-bottom: .875rem;
}
.section-heading__title { color: var(--color-heading); }
.section-heading__text  { margin-top: .875rem; color: var(--color-muted); max-width: 56ch; line-height: 1.75; }

/* ─── 8. Cards — unified system ─────────────────────────────────────── */
.card {
  background: var(--color-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition:
    transform var(--base) var(--ease),
    box-shadow var(--base) var(--ease),
    border-color var(--base) var(--ease);
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--color-border-s);
}

/* Card media */
.card__media {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-light-2);
  position: relative;
  flex-shrink: 0;
}
.card__media-link { display: block; height: 100%; }
.card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.card:hover .card__img { transform: scale(1.06); }

/* Hover overlay */
.card__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.12) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--base) var(--ease);
  pointer-events: none;
}
.card:hover .card__media-overlay { opacity: 1; }

/* Placeholder */
.card__media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-subtle);
  background: linear-gradient(135deg, var(--color-light-2) 0%, #dde2ec 100%);
}

/* Badge */
.card__badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  background: var(--color-primary); color: #fff;
  font-size: .6875rem; font-weight: 700;
  padding: .25rem .65rem; border-radius: var(--r-xs);
  letter-spacing: .05em; text-transform: uppercase;
}

/* Body */
.card__body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column; gap: .5rem;
}
.card__title {
  font-size: 1.0625rem; font-weight: 700; line-height: 1.35;
  color: var(--color-heading);
}
.card__title a {
  color: inherit;
  transition: color var(--fast) var(--ease);
}
.card__title a:hover { color: var(--color-primary); }
.card__excerpt {
  color: var(--color-muted); font-size: .875rem; line-height: 1.65;
}
.card__link {
  display: inline-flex; align-items: center; gap: .375rem;
  color: var(--color-primary); font-size: .875rem; font-weight: 600;
  margin-top: auto; padding-top: .375rem;
  transition: gap var(--fast) var(--ease);
}
.card:hover .card__link { gap: .65rem; }

/* ─── 9. Archive Grid ────────────────────────────────────────────────── */
.archive-grid-section {
  background: var(--color-white);
  padding-block: var(--section-space);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.75rem;
}
.home-section__more { text-align: center; margin-top: 3rem; }

/* ─── 10. Pagination ─────────────────────────────────────────────────── */
.pagination {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-top: 3rem;
}
.pagination a,
.pagination span {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 600;
  border: 1.5px solid var(--color-border);
  background: var(--color-white); color: var(--color-dark);
  transition:
    background-color var(--fast) var(--ease),
    color var(--fast) var(--ease),
    border-color var(--fast) var(--ease);
}
.pagination a:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination .current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ─── 11. Empty State ────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--color-muted); }
.empty-state p { margin: 0 auto 1.5rem; }

/* ─── 12. Top Header ─────────────────────────────────────────────────── */
.top-header {
  position: relative;
  z-index: 1000;
  background: linear-gradient(135deg, #071A3D 0%, #0E2D66 55%, #1F4B8F 100%);
  color: rgba(255, 255, 255, .86);
  font-size: .8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.top-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .35;
  pointer-events: none;
}
.top-header__inner {
  position: relative;
  z-index: 1;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-header__left,
.top-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-header__item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .2s ease, transform .2s ease;
}
.top-header__item:hover {
  color: #fff;
  transform: translateY(-1px);
}
.top-header__item svg {
  flex-shrink: 0;
  stroke: currentColor;
  opacity: .78;
}

/* ─── 13. Header ─────────────────────────────────────────────────────── */
.site-header {
  position: relative; z-index: 1001;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition:
    box-shadow var(--base) var(--ease),
    background-color var(--base) var(--ease),
    transform var(--slow) var(--ease);
}
.site-header[data-sticky="1"] { position: sticky; top: 0; }

.site-header.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 28px rgba(15,23,42,.11);
  border-bottom-color: var(--color-border-s);
}
.site-header.is-hidden { transform: translateY(-100%); }

.site-header__inner {
  display: flex; align-items: center;
  height: var(--header-h); gap: 1.5rem;
}

/* Logo */
.site-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-logo__image { max-height: 50px; width: auto; }
.site-logo--text {
  font-family: var(--font); font-weight: 800; font-size: 1.1875rem;
  color: var(--color-primary); letter-spacing: -.03em;
}

/* Desktop nav */
.site-header__nav { flex: 1; display: flex; justify-content: center; }
.site-header__menu {
  display: flex; align-items: center; gap: .125rem; list-style: none;
}
.site-header__menu li a {
  display: block; padding: .5rem .9rem;
  font-family: var(--font); font-size: .875rem; font-weight: 600;
  color: var(--color-dark); position: relative;
  transition: color var(--fast) var(--ease);
}
.site-header__menu li a::after {
  content: ''; position: absolute; bottom: 1px;
  left: .9rem; right: .9rem;
  height: 2px; background: var(--color-primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--base) var(--ease);
}
.site-header__menu li a:hover,
.site-header__menu li.current-menu-item > a,
.site-header__menu li.current_page_item > a { color: var(--color-primary); }
.site-header__menu li a:hover::after,
.site-header__menu li.current-menu-item > a::after,
.site-header__menu li.current_page_item > a::after { transform: scaleX(1); }

/* Desktop sub-menus */
.site-header__menu li { position: relative; }
.site-header__menu .sub-menu {
  display: block;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--color-white); border: 1px solid var(--color-border-s);
  border-radius: var(--r-md); box-shadow: var(--sh-md);
  min-width: 220px; padding: .5rem; z-index: 999;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
/* Boşluktaki hover kaybını önleyen şeffaf köprü alan */
.site-header__menu li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 12px;
}
.site-header__menu li:hover > .sub-menu,
.site-header__menu li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.site-header__menu .sub-menu li a { padding: .5rem .875rem; border-radius: var(--r-sm); font-size: .8125rem; }
.site-header__menu .sub-menu li a::after { display: none; }
.site-header__menu .sub-menu li a:hover { background: var(--color-primary-light); color: var(--color-primary); }

/* Desktop sub-menu toggle (hidden on desktop, shown in drawer via 1024px media) */
.submenu-toggle { display: none; }

/* Actions */
.site-header__actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.site-header__cta { height: 40px; font-size: .8125rem; padding: 0 1.25rem; }

/* Hamburger — hidden on desktop, shown on mobile */
.site-header__toggle {
  display: none; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 40px; height: 40px; padding: .5rem;
  border-radius: var(--r-sm);
  transition: background-color var(--fast);
}
.site-header__toggle:hover { background: var(--color-light); }
.toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--color-dark); border-radius: 2px;
  transition: transform var(--base) var(--ease), opacity var(--base);
}
.site-header__toggle[aria-expanded="true"] .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header__toggle[aria-expanded="true"] .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop */
.nav-backdrop { display: none; }

/* ── Mobile dropdown panel (header altından açılır) ── */
.mobile-drawer {
  position: fixed;
  top: var(--mobile-header-offset, 120px);
  left: 16px;
  right: 16px;
  width: auto;
  max-width: none;
  height: auto;
  max-height: calc(100vh - var(--mobile-header-offset, 120px) - 16px);
  z-index: 1001;
  background: var(--color-white);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
  display: flex; flex-direction: column;
  overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch;
  transform: translateY(-12px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition:
    opacity .28s ease,
    transform .28s cubic-bezier(.22, 1, .36, 1),
    visibility .28s ease;
}
.mobile-drawer.is-open,
.nav-open .mobile-drawer {
  transform: translateY(0);
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* Drawer head */
.nav-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.nav-drawer__close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--r-sm);
  color: var(--color-dark);
  transition: background-color var(--fast);
}
.nav-drawer__close:hover { background: var(--color-light); }

/* Drawer body */
.nav-drawer__body { flex: 1; padding: .75rem 1rem; overflow-y: auto; }

/* Drawer footer */
.nav-drawer__foot {
  display: flex; flex-direction: column; gap: .75rem;
  padding: 1.25rem; border-top: 1px solid var(--color-border); flex-shrink: 0;
}
.nav-drawer__cta { width: 100%; height: 48px; }
.nav-drawer__phone {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--color-muted);
  padding: .625rem; border-radius: var(--r-sm);
  transition: color var(--fast), background-color var(--fast);
}
.nav-drawer__phone:hover { background: var(--color-light); color: var(--color-primary); }

/* Drawer head/body/foot — hidden on desktop */
.nav-drawer__head,
.nav-drawer__foot { display: none; }

/* ─── 13. Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  position: relative;
  background:
    radial-gradient(
      ellipse 45% 120% at 100% 50%,
      rgba(31, 75, 143, .06) 0%,
      transparent 62%
    ),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  padding-block: 1.05rem;
  overflow: hidden;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 75, 143, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 75, 143, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .25;
  pointer-events: none;
}
.breadcrumb__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.breadcrumb__title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-heading);
  white-space: nowrap;
  letter-spacing: -.01em;
  margin: 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .2rem;
  list-style: none;
  font-size: .875rem;
  color: rgba(15, 23, 42, .58);
}
.breadcrumb__list li { display: flex; align-items: center; gap: .3rem; }
.breadcrumb__list li + li::before { content: '/'; color: rgba(31, 75, 143, .35); }
.breadcrumb__list a {
  color: rgba(15, 23, 42, .62);
  text-decoration: none;
  transition: color .2s ease;
}
.breadcrumb__list a:hover { color: var(--color-primary); }
.breadcrumb__list [aria-current="page"] span { color: var(--color-primary); font-weight: 700; }

/* ─── After-breadcrumb spacing — direct class selectors ─────────────────
 * The ~ sibling combinator with section:first-of-type was broken because
 * .breadcrumb is itself a <section>, making it the first-of-type — the rule
 * never matched the content that follows. Direct class selectors fix this.
 */
.service-detail-page,
.about-intro-section,
.contact-info-section,
.quote-section,
.archive-grid-section,
.page-content,
.single-post {
  padding-top: 50px;
}

/* ─── 14. Hero ───────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #F7F9FC 0%, var(--color-light-2) 100%);
  overflow: hidden; position: relative;
}
/* Subtle top-right ambient glow */
.hero::before {
  content: ''; position: absolute; top: -30%; right: -5%; z-index: 0;
  width: 55%; padding-bottom: 55%; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,75,143,.07) 0%, transparent 65%);
  pointer-events: none;
}
/* Bottom fade into white */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  grid-template-rows: auto auto;
  gap: 4rem; align-items: start;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  position: relative; z-index: 2;
}
/* Desktop grid areas: content top-left, stats bottom-left, visual spans both rows on right */
.hero__content { grid-column: 1; grid-row: 1; }
.hero__visual  { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.hero__stats   { grid-column: 1; grid-row: 2; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .375rem;
  background: var(--color-primary-light); color: var(--color-primary);
  border: 1px solid var(--color-primary-mid);
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1.375rem;
}
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -.04em;
  color: var(--color-heading); margin-bottom: 1.25rem;
}
.hero__title span { color: var(--color-primary); }
.hero__text {
  color: var(--color-muted); font-size: 1.0625rem; line-height: 1.75;
  max-width: 44ch; margin-bottom: 2rem;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 2.75rem;
}

/* Stats */
.hero__stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--color-border-s);
  margin-top: 0;
}
.hero__stat-num {
  display: block;
  font-family: var(--font); font-size: 1.625rem; font-weight: 800;
  color: var(--color-primary); letter-spacing: -.04em; line-height: 1;
  margin-bottom: .3rem;
}
.hero__stat-label { display: block; font-size: .75rem; color: var(--color-muted); font-weight: 500; }

/* Right panel */
.hero__visual { position: relative; }
.hero__panel {
  background: linear-gradient(145deg, var(--color-footer-bg) 0%, #163870 55%, #1F4B8F 100%);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  min-height: 460px; display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 28px 72px rgba(9,18,32,.35), 0 4px 16px rgba(9,18,32,.2);
}
/* Grid overlay */
.hero__panel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Animated orb (subtle) */
.hero__panel::after {
  content: ''; position: absolute; z-index: 0;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(97,165,250,.18) 0%, transparent 65%);
  top: -20%; right: -5%;
  animation: heroOrb 7s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroOrb {
  0%   { transform: translate(0,  0) scale(1);   opacity: .5; }
  100% { transform: translate(-16px, 24px) scale(1.2); opacity: .85; }
}

.hero__panel-inner { position: relative; z-index: 1; }
.hero__panel-logo  { margin-bottom: .75rem; }
.hero__panel-logo .site-logo--text    { color: #fff; font-size: 1.125rem; }
.hero__panel-logo .site-logo__image   { filter: brightness(0) invert(1); max-height: 38px; }
.hero__panel-tagline {
  color: rgba(255,255,255,.5); font-size: .8125rem;
  font-weight: 500; letter-spacing: .05em; margin-bottom: 1.625rem;
}
.hero__panel-divider { height: 1px; background: rgba(255,255,255,.12); margin-bottom: 1.625rem; }
.hero__panel-list { display: flex; flex-direction: column; gap: .75rem; }
.hero__panel-list li {
  display: flex; align-items: flex-start; gap: .625rem;
  color: rgba(255,255,255,.75); font-size: .875rem; line-height: 1.5;
}
.hero__panel-list li svg { flex-shrink: 0; margin-top: 3px; color: #61A5FA; }

/* ── Hero: image mode — editorial product showcase ── */
.hero__visual--image {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transform: none;
  overflow: visible;
}
/* Dark decorative backing panel — removed */
.hero__visual--image::before,
.hero__visual--image::after { display: none; }
/* Photo card */
.hero__image-wrap {
  position: relative;
  z-index: 2;
  width: 96%;
  height: 460px;
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 50px rgba(238,242,248,.85);
}
.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: saturate(1) contrast(1.03) brightness(1.04);
  transition:
    transform .9s cubic-bezier(.22,.61,.36,1),
    filter .5s ease;
}
.hero__visual--image:hover .hero__image {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04) brightness(1);
}
/* Grid texture + cinematic overlay — removed */
.hero__image-wrap::before,
.hero__image-wrap::after { display: none; }
/* Badge: 7/24 — on dark panel, top-right */
.hero__visual--image .hero__float--support {
  top: 100px; right: 24px;
  left: auto; bottom: auto;
  z-index: 3;
}
/* Badge: ISO — overlapping photo bottom-left */
.hero__visual--image .hero__float--iso {
  left: 28px; bottom: 40px;
  top: auto; right: auto;
  z-index: 4;
}
/* Badge style — light glass */
.hero__visual--image .hero__float {
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 16px;
  padding: .75rem .95rem;
  transform: none;
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
  color: var(--color-heading);
}
.hero__visual--image .hero__float-title { color: var(--color-heading); font-size: .875rem; }
.hero__visual--image .hero__float-sub   { color: var(--color-muted);   font-size: .6875rem; }
.hero__visual--image .hero__float-icon  {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* Floating badges */
.hero__float {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md); padding: .875rem 1.125rem;
  display: flex; align-items: center; gap: .75rem; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.hero__float--iso     { bottom: 2rem; left: -2rem; }
.hero__float--support { top: 2rem; right: -2rem; }
.hero__float-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: var(--r-sm);
  background: rgba(97,165,250,.18);
  display: flex; align-items: center; justify-content: center;
  color: #61A5FA;
}
.hero__float-title { font-size: .875rem; font-weight: 700; line-height: 1.2; }
.hero__float-sub   { font-size: .6875rem; color: rgba(255,255,255,.6); margin-top: .125rem; }

/* ─── 15. Home Features Strip ────────────────────────────────────────── */
.home-features {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--color-white);
}
.home-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}
/* ── Base card */
.home-feature-card {
  position: relative;
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 28px);
  border: 1px solid rgba(31,75,143,.1);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(31,75,143,.06) 0%, transparent 52%),
    linear-gradient(170deg, #fff 0%, #F7F9FC 100%);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,.9) inset,
    0 12px 32px rgba(15,23,42,.07),
    0 2px 6px rgba(15,23,42,.04);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition:
    transform .22s cubic-bezier(.22,.68,0,1.2),
    box-shadow .22s ease,
    border-color .22s ease;
}
.home-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31,75,143,.22);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,.9) inset,
    0 20px 52px rgba(15,23,42,.12),
    0 4px 12px rgba(15,23,42,.06);
}
.home-feature-card:hover .home-feature-card__icon {
  transform: scale(1.06);
  background: rgba(31,75,143,.13);
}

/* ── Number badge */
.home-feature-card__num {
  position: absolute;
  right: 20px; top: 18px;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(31,75,143,.22);
  line-height: 1;
}

/* ── Icon */
.home-feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-bottom: 1.375rem;
  background: rgba(31,75,143,.08);
  color: var(--color-primary);
  transition: transform .22s ease, background .22s ease;
}
.home-feature-card__icon svg {
  width: 26px; height: 26px;
  stroke-width: 1.6;
}

/* ── Text block */
.home-feature-card h3 {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 .625rem;
  color: var(--color-heading);
  letter-spacing: -.01em;
  transition: color .2s ease;
}
.home-feature-card:hover h3 { color: var(--color-primary); }
.home-feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: .875rem;
  line-height: 1.7;
  flex: 1;
}

/* ── Bottom accent */
.home-feature-card::after {
  content: "";
  display: block;
  width: 36px; height: 2.5px;
  border-radius: 999px;
  background: var(--color-primary);
  margin-top: 1.5rem;
  flex-shrink: 0;
  opacity: .55;
  transition: width .22s ease, opacity .22s ease;
}
.home-feature-card:hover::after { width: 52px; opacity: 1; }

/* ── Dark variant (kart 02 — Üretim) */
.home-feature-card--dark {
  background:
    radial-gradient(ellipse at 92% 8%, rgba(96,165,250,.22) 0%, transparent 42%),
    radial-gradient(ellipse at 8% 92%, rgba(31,75,143,.35) 0%, transparent 46%),
    linear-gradient(148deg, #081524 0%, #0F2756 55%, #1A3E7A 100%);
  border-color: rgba(255,255,255,.09);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,.07) inset,
    0 12px 40px rgba(4,10,24,.35),
    0 2px 6px rgba(4,10,24,.2);
}
.home-feature-card--dark:hover {
  border-color: rgba(96,165,250,.3);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,.07) inset,
    0 22px 60px rgba(4,10,24,.5),
    0 0 0 1px rgba(96,165,250,.12);
  transform: translateY(-5px);
}
.home-feature-card--dark:hover .home-feature-card__icon {
  background: rgba(255,255,255,.18);
}
.home-feature-card--dark .home-feature-card__num  { color: rgba(255,255,255,.18); }
.home-feature-card--dark .home-feature-card__icon {
  background: rgba(255,255,255,.1);
  color: #93C5FD;
}
.home-feature-card--dark h3                { color: #F0F6FF; letter-spacing: -.01em; }
.home-feature-card--dark:hover h3          { color: #fff; }
.home-feature-card--dark p                 { color: rgba(186,213,255,.68); }
.home-feature-card--dark::after            { background: #60A5FA; opacity: .65; }
.home-feature-card--dark:hover::after      { opacity: 1; }

/* ── Soft variant (kart 04 — Teknik Servis) */
.home-feature-card--soft {
  background:
    radial-gradient(ellipse at 88% 10%, rgba(31,75,143,.1) 0%, transparent 44%),
    linear-gradient(170deg, #EDF3FE 0%, #F8FAFF 50%, #fff 100%);
  border-color: rgba(31,75,143,.14);
}
.home-feature-card--soft:hover {
  border-color: rgba(31,75,143,.28);
}
.home-feature-card--soft .home-feature-card__icon {
  background: rgba(31,75,143,.1);
}

/* ─── 15b. Home Sections ──────────────────────────────────────────────── */
.home-section          { padding-block: var(--section-space); }
.home-section--services{ background: var(--color-white); padding-block-start: clamp(40px, 5vw, 64px); }
.home-section--why-us {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 8% 55%, rgba(22,59,122,.7) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 92% 18%, rgba(16,42,99,.75) 0%, transparent 52%),
    linear-gradient(158deg, #07172F 0%, #0A1F50 38%, #0E2A68 72%, #0B2158 100%);
}

/* Subtle grid texture — barely visible */
.home-section--why-us::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Bottom fade removed — clean section boundary */
.home-section--why-us::after { display: none; }

/* Container above pseudo-elements */
.home-section--why-us > .container {
  position: relative;
  z-index: 2;
}

/* Dark section heading overrides */
.home-section--why-us .section-heading__eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  color: #93C5FD;
  letter-spacing: .18em;
}
.home-section--why-us .section-heading__title {
  color: #F0F6FF;
  text-shadow: 0 10px 40px rgba(0,0,0,.18);
}
.home-section--why-us .section-heading__text,
.home-section--why-us .section-heading__description {
  color: rgba(186,213,255,.72);
}

/* Feature grid — floating plane */
.home-section--why-us .features-grid {
  position: relative;
  z-index: 2;
}

/* Glass cards */
.home-section--why-us .feature-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 28px rgba(4,10,28,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-6px);
  transition:
    box-shadow  .24s cubic-bezier(.22,.68,0,1.15),
    transform   .24s cubic-bezier(.22,.68,0,1.15),
    border-color .24s ease,
    background  .24s ease;
}
.home-section--why-us .feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,.07);
  border-color: rgba(96,165,250,.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 20px 60px rgba(0,0,0,.32),
    0 0 0 1px rgba(96,165,250,.12);
}
.home-section--why-us .feature-card__icon {
  background: rgba(255,255,255,.1);
  color: #93C5FD;
  transition: background .22s ease;
}
.home-section--why-us .feature-card:hover .feature-card__icon {
  background: rgba(96,165,250,.2);
}
.home-section--why-us .feature-card__title { color: #EFF6FF; }
.home-section--why-us .feature-card__text  { color: rgba(186,213,255,.7); }
.why-us-extra-content {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  margin: 56px 0 0;
  text-align: justify;
}
.why-us-extra-content p {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: .925rem;
  line-height: 2;
  color: rgba(255,255,255,.78);
  text-align: justify;
}
.home-section--products {
  background: var(--color-white);
}

/* ─── Home: Modüler Su Deposu Section ───────────────────────────────── */
.home-modular-water {
  position: relative;
  padding-top: clamp(48px, 5vw, 40px);
  padding-bottom: clamp(64px, 8vw, 150px);
  background:
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(31,75,143,.05) 0%, transparent 60%),
    var(--color-white);
  bottom: -70px;
}
.home-modular-water::after {
  content: '';
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(248,249,252,.55));
  pointer-events: none;
}

/* Two-column inner layout */
.home-modular-water__inner {  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── Content column */
.home-modular-water__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home-modular-water__content .section-heading__eyebrow {
  margin-bottom: .875rem;
  width: fit-content;
}
.home-modular-water__title {
  color: var(--color-heading);
  margin: 0 0 1.25rem;
}
.home-modular-water__lead {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--color-body);
  max-width: 60ch;
  margin: 0 0 .875rem;
}
.home-modular-water__text {
  font-size: .9375rem;
  line-height: 1.78;
  color: var(--color-muted);
  max-width: 60ch;
  margin: 0 0 2rem;
}

/* Feature list */
.home-modular-water__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.home-modular-water__feature {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.home-modular-water__feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(31,75,143,.12);
  color: #1a5dbf;
  display: grid; place-items: center;
  margin-top: 1px;
}
.home-modular-water__feature-icon svg {
  width: 18px; height: 18px;
  stroke-width: 1.75;
}
.home-modular-water__feature div {
  display: flex;
  flex-direction: column;
  gap: .125rem;
}
.home-modular-water__feature strong {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
}
.home-modular-water__feature span {
  font-size: .8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* CTA row */
.home-modular-water__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.home-modular-water__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap .18s ease, color .18s ease;
}
.home-modular-water__link:hover { gap: .625rem; }
.home-modular-water__link svg { transition: transform .18s ease; }
.home-modular-water__link:hover svg { transform: translateX(3px); }

/* ── Visual column */
.home-modular-water__visual { position: relative; }
.home-modular-water__image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgb(251,251,253);
}
.home-modular-water__image-wrap img {
  width: 100%; height: auto;
  object-fit: unset;
  display: block;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.home-modular-water__image-wrap:hover img { transform: scale(1.02); }

/* Placeholder (before image is set in admin) */
.home-modular-water__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #EEF4FF 0%, #E6EEF8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-primary);
  min-height: 380px;
}
.home-modular-water__placeholder svg {
  width: 72px; height: 72px;
  opacity: .45;
}
.home-modular-water__placeholder span {
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-muted);
}

/* ── Services preview header */
.services-preview__heading .section-heading__eyebrow {
  display: inline-flex;
  width: fit-content;
  font-size: .625rem;
  letter-spacing: .13em;
  padding: .2rem .625rem;
  margin-bottom: .5rem;
}
.services-preview__header {  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.services-preview__heading {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.services-preview__title {
  color: var(--color-heading);
  margin: 0;
}
.services-preview__nav {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.services-preview__all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  padding: .5rem 1.125rem;
  border: 1.5px solid var(--color-primary);
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.services-preview__all:hover {
  background: var(--color-primary);
  color: #fff;
}
.services-preview__all svg {
  transition: transform .18s ease;
}
.services-preview__all:hover svg { transform: translateX(3px); }

/* ── Services preview grid */
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem;
}
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border); border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  transition:
    box-shadow  var(--base) var(--ease),
    transform   var(--base) var(--ease),
    border-color var(--base) var(--ease);
}
.feature-card:hover {
  box-shadow: var(--sh-md); transform: translateY(-3px);
  border-color: var(--color-primary-mid);
}
.feature-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.feature-card__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--color-heading); }
.feature-card__text  { color: var(--color-muted); font-size: .875rem; line-height: 1.65; }

/* Bottom CTA */
/* ─── 15. Home CTA Section — floating bridge card ────────────────────── */
.home-cta {
  position: relative;
  z-index: 5;
  padding: 0;
  background: transparent;
  margin-bottom: -37px;
}
.home-cta__panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
  border-radius: 10px;
  background: linear-gradient(135deg, #071B3D 0%, #1F4B8F 100%);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.08);
}
.home-cta__glow {
  position: absolute;
  top: -40%; right: -4%;
  width: 50%; padding-bottom: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97,165,250,.16) 0%, transparent 65%);
  pointer-events: none;
}
.home-cta__content { position: relative; z-index: 1; }
.home-cta__title {
  color: #fff;
  margin: 0;
}
.home-cta__text {
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  line-height: 1.75;
  font-size: .9375rem;
  max-width: 52ch;
}
.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  align-items: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
}

/* ─── 15a. Home Insights Wrapper (SEO content + FAQ/Reviews ortak yüzey) ── */
.home-insights {
  background: linear-gradient(
    180deg,
    #F4F7FB 0%,
    #F7F9FC 45%,
    #FFFFFF 100%
  );
}

/* ─── 15b. Home SEO Content Section ─────────────────────────────────── */
.home-seo-content {
  position: relative;
  z-index: 6;
  margin-top: 42px;
  padding: 40px 0 6px;
}
.home-seo-content__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Collapsed wrapper — JS sets inline max-height on open/close */
.home-seo-content__wrapper {
  position: relative;
  overflow: hidden;
  max-height: 260px;
  transition: max-height .5s ease;
}
.home-seo-content__inner.is-open .home-seo-content__wrapper {
  /* JS overrides with scrollHeight inline; this is just a safe fallback */
  max-height: none;
}
/* Fade gradient */
.home-seo-content__fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(244,247,251,0),
    rgba(244,247,251,.96) 72%,
    #F4F7FB 100%
  );
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.home-seo-content__inner.is-open .home-seo-content__fade {
  opacity: 0;
  visibility: hidden;
}
/* Short content: hide fade + toggle */
.home-seo-content__inner.is-short .home-seo-content__fade,
.home-seo-content__inner.is-short .home-seo-content__toggle { display: none; }
.home-seo-content__inner.is-short .home-seo-content__wrapper { max-height: none; overflow: visible; }
/* Prose typography */
.home-seo-content__text {
  width: 100%;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.95;
  color: rgba(15,23,42,.78);
}
.home-seo-content__text h2,
.home-seo-content__text h2 { color: var(--color-heading); margin: 1.75rem 0 .625rem; }
.home-seo-content__text h3 {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -.015em;
  margin: 1.75rem 0 .625rem;
}
.home-seo-content__text h2:first-child,
.home-seo-content__text h3:first-child { margin-top: 0; }
.home-seo-content__text p  { margin: 0 0 1rem; max-width: none; }
.home-seo-content__text ul,
.home-seo-content__text ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.home-seo-content__text ul { list-style: none; padding-left: 0; }
.home-seo-content__text ul li {
  padding-left: 1.25rem;
  position: relative;
  color: rgba(15,23,42,.78);
  margin-bottom: .375rem;
}
.home-seo-content__text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .72em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: .6;
}
.home-seo-content__text ol {
  list-style: decimal;
  list-style-position: outside;
  margin: 1.25rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}
.home-seo-content__text ol li {
  display: list-item;
  list-style: decimal;
  margin: .6rem 0;
  padding-left: .25rem;
}
.home-seo-content__text ol ol {
  list-style: lower-alpha;
}
.home-seo-content__text ol ol ol {
  list-style: lower-roman;
}
.home-seo-content__text strong { font-weight: 700; color: var(--color-heading); }
/* Toggle button */
.home-seo-content__toggle {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 1.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color .18s ease, transform .18s ease;
}
.home-seo-content__toggle:hover {
  color: var(--color-primary-dark, #1042a0);
  transform: translateY(-1px);
}
.home-seo-content__toggle-icon {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.home-seo-content__inner.is-open .home-seo-content__toggle-icon {
  transform: rotate(180deg);
}

/* ─── 15b. Home FAQ + Reviews Section ───────────────────────────────── */
.home-faq-reviews {
  padding: clamp(64px, 7vw, 96px) 0;
}
.home-faq-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.home-faq-reviews__col { min-width: 0; }
.home-faq-reviews__title {
  font-size: var(--h2-md);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  color: var(--color-heading);
  margin-top: .75rem;
  margin-bottom: 1.5rem;
}

/* Home FAQ accordion */
.home-faq { display: grid; gap: 1rem; }
.home-faq__item {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(31, 75, 143, .10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .045);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.home-faq__item:hover {
  border-color: rgba(31, 75, 143, .18);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}
.home-faq__item.is-open {
  background: #fff;
  border-color: rgba(31, 75, 143, .24);
  box-shadow: 0 22px 55px rgba(31, 75, 143, .10);
}
.home-faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.25rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font);
  font-size: .98rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: left;
  transition: color .2s ease;
}
.home-faq__question:hover { color: var(--color-primary); }
.home-faq__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(31, 75, 143, .08);
  display: inline-grid;
  place-items: center;
  color: var(--color-primary);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.home-faq__item.is-open .home-faq__icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(180deg);
}
.home-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.home-faq__item.is-open .home-faq__answer { grid-template-rows: 1fr; }
.home-faq__answer-inner {
  overflow: hidden;
  padding: 0 1.35rem;
  color: var(--color-body);
  font-size: .9375rem;
  line-height: 1.75;
}
.home-faq__item.is-open .home-faq__answer-inner { padding-bottom: 1.35rem; }

/* Home review cards */
.home-reviews { display: grid; gap: 1.1rem; }
.home-review-card {
  position: relative;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(31, 75, 143, .10);
  border-radius: 26px;
  padding: 1.55rem 1.65rem;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .055);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.home-review-card::before {
  content: "\201C";
  position: absolute;
  right: 1.25rem;
  top: -.25rem;
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(31, 75, 143, .07);
  pointer-events: none;
}
.home-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 75, 143, .18);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}
.home-review-card__stars {
  color: var(--color-primary);
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: .85rem;
}
.home-review-card__text {
  position: relative;
  z-index: 1;
  color: rgba(15, 23, 42, .78);
  line-height: 1.8;
  font-size: .98rem;
  margin: 0;
}
.home-review-card__name {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
  padding-top: .95rem;
  border-top: 1px solid rgba(15, 23, 42, .07);
  font-weight: 800;
  color: var(--color-heading);
  font-size: .9375rem;
}

/* home-faq-reviews eyebrow daralt */
.home-faq-reviews .section-heading__eyebrow {
  width: fit-content;
  padding-inline: .75rem;
}

/* Home reviews slider */
.home-reviews-slider { position: relative; }
.home-reviews-slider__viewport {
  overflow: hidden;
  border-radius: 26px;
}
.home-reviews-slider__track {
  display: flex;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.home-reviews-slider .home-review-card {
  flex: 0 0 100%;
  min-width: 100%;
}
.home-reviews-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}
.home-reviews-slider__arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(31, 75, 143, .16);
  background: rgba(255, 255, 255, .78);
  color: var(--color-primary);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.home-reviews-slider__arrow:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(31, 75, 143, .28);
}
.home-reviews-slider__arrow svg {
  width: 17px;
  height: 17px;
}
.home-reviews-slider__dots {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.home-reviews-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(31, 75, 143, .24);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.home-reviews-slider__dot.is-active {
  width: 20px;
  background: var(--color-primary);
}

/* ─── 15c. Home Certificates Section ────────────────────────────────── */
.home-certificates {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 80px);
  background: #fff;
}
.home-certificates__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.home-certificates__header .section-heading__eyebrow {
  width: fit-content;
}
.home-certificates__title {
  color: var(--color-heading);
  margin: 0;
}
.home-certificates__text {
  font-size: .9375rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0;
}
.home-certificates__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}
.home-certificate-card {
  min-height: 150px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: #fff;
  display: grid;
  place-items: center;
  padding: 2rem 2.5rem;
  box-shadow: 0 1px 3px rgba(15,23,42,.06), 0 4px 12px rgba(15,23,42,.04);
  transition: box-shadow var(--base), transform var(--base);
}
.home-certificate-card:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,.1);
  transform: translateY(-2px);
}
.home-certificate-card img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ─── 15d. References Page ──────────────────────────────────────────── */
.references-page {
  padding-block: 50px clamp(56px, 7vw, 96px);
  background: #fff;
}
.references-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}
.reference-card {
  min-height: 140px;
  padding: 28px 22px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15,23,42,.10);
  border-color: rgba(31,75,143,.22);
}
.reference-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.reference-card__logo img {
  max-width: 150px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .references-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .references-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .references-page {
    padding-block: 40px 64px;
  }
  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .reference-card {
    min-height: 120px;
    padding: 20px 14px;
    border-radius: 18px;
  }
  .reference-card__logo img {
    max-width: 120px;
    max-height: 56px;
  }
}

/* ─── 16. Single CPT Layout ──────────────────────────────────────────── */

/* ── Product Detail Page ── */
.product-detail-page {
  background: var(--color-white);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-top: 50px;
}

/* Gallery */
.product-gallery { display: flex; flex-direction: column; gap: 1rem; }
.product-gallery__main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #F1F5F9;
  box-shadow: 0 4px 24px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
  aspect-ratio: 4 / 3;
}
.product-gallery__image {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.product-gallery__main:hover .product-gallery__image { transform: scale(1.025); }
.product-gallery__placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--color-muted); opacity: .4;
  min-height: 320px;
}
.product-gallery__placeholder svg { width: 72px; height: 72px; }

.product-gallery__thumbs {
  display: flex; flex-wrap: wrap; gap: .625rem;
}
.product-gallery__thumb {
  width: 76px; height: 60px;
  border-radius: 12px;
  overflow: hidden;
  padding: 0; background: #F1F5F9;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--fast), opacity var(--fast);
  flex-shrink: 0;
}
.product-gallery__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.product-gallery__thumb.is-active  {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(31, 75, 143, .12);
}
.product-gallery__thumb:hover:not(.is-active) { opacity: .75; }

/* Gallery arrows */
.product-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  z-index: 3;
}
.product-gallery__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .16);
}
.product-gallery__arrow--prev { left: .875rem; }
.product-gallery__arrow--next { right: .875rem; }

/* Summary panel */
.product-summary {
  position: sticky;
  top: calc(var(--header-h, 76px) + 24px);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
}
.product-summary__badge {
  display: inline-flex;
  align-items: center;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: rgba(31,75,143,.08);
  color: var(--color-primary);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-summary__title {
  margin: .875rem 0 .75rem;
  color: var(--color-heading);
}
.product-summary__lead {
  color: var(--color-body);
  line-height: 1.8;
  font-size: .9375rem;
  margin: 0 0 1.25rem;
}
.product-summary__features {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: .625rem;
}
.product-summary__features li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .9375rem; color: var(--color-body); line-height: 1.5;
}
.product-summary__features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--color-primary-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F4B8F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.product-summary__actions {
  display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 1.5rem;
}
.product-summary__meta {
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: .5rem;
}
.product-summary__meta span {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: var(--color-muted);
}
.product-summary__meta svg { flex-shrink: 0; color: var(--color-primary); opacity: .7; }

/* Product tabs section */
.product-tabs-section {
  background: #F8FAFC;
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: visible;
}
.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.product-tabs__nav::-webkit-scrollbar { display: none; }
.product-tabs__btn {
  flex-shrink: 0;
  padding: .75rem 1.5rem;
  background: none; border: none;
  font-size: .9375rem; font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color var(--fast), border-color var(--fast);
}
.product-tabs__btn.is-active,
.product-tabs__btn:hover { color: var(--color-primary); }
.product-tabs__btn.is-active { border-bottom-color: var(--color-primary); }
.product-tabs__panels { overflow: visible; }
.product-tabs__panel { display: none; overflow: visible; }
.product-tabs__panel.is-active { display: block; }

/* Description tab — full-width override (Gutenberg blocks may apply max-width) */
#product-tab-desc,
#product-tab-desc.entry-content,
#product-tab-desc > *,
#product-tab-desc p,
#product-tab-desc h2,
#product-tab-desc h3,
#product-tab-desc h4,
#product-tab-desc ul,
#product-tab-desc ol,
#product-tab-desc blockquote,
#product-tab-desc .wp-block-paragraph,
#product-tab-desc .wp-block-group,
#product-tab-desc .wp-block-group__inner-container,
#product-tab-desc .wp-block-columns,
#product-tab-desc .wp-block-image,
#product-tab-desc [class*="wp-block-"] {
  max-width: none !important;
  width: 100% !important;
  margin-inline: 0 !important;
  box-sizing: border-box;
}
#product-tab-desc p { margin-bottom: 1.5rem; }
#product-tab-desc p:last-child { margin-bottom: 0; }

/* Specs table inside tabs */
.product-specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}
.product-specs-table tr {
  transition: background .2s ease;
}
.product-specs-table tr:hover {
  background: rgba(31, 75, 143, .035);
}
.product-specs-table th,
.product-specs-table td {
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-size: .9375rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.product-specs-table tr:last-child th,
.product-specs-table tr:last-child td {
  border-bottom: 0;
}
.product-specs-table th {
  width: 34%;
  background: linear-gradient(135deg, rgba(31, 75, 143, .08), rgba(31, 75, 143, .035));
  color: var(--color-heading);
  font-weight: 800;
  letter-spacing: -.01em;
  border-right: 1px solid rgba(15, 23, 42, .08);
}
.product-specs-table td {
  background: #fff;
  color: rgba(15, 23, 42, .78);
  font-weight: 500;
  line-height: 1.7;
}
.product-specs-table tr:nth-child(even) td {
  background: #F8FAFC;
}
.product-specs-table tr:nth-child(even) th {
  background: linear-gradient(135deg, rgba(31, 75, 143, .10), rgba(31, 75, 143, .045));
}

/* Usage areas box */
.product-usage-box {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.product-usage-box__content {
  padding: 1.5rem;
}
.product-usage-box__content p {
  margin: 0 0 .75rem;
  color: var(--color-body);
  line-height: 1.75;
  font-size: .9375rem;
}
.product-usage-box__content p:last-child { margin-bottom: 0; }
.product-usage-box__content ul {
  display: grid;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-usage-box__content li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  font-size: .9375rem;
  color: var(--color-body);
  line-height: 1.6;
}
.product-usage-box__content li:last-child { border-bottom: 0; }
.product-usage-box__content li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(31, 75, 143, .08);
  color: var(--color-primary);
  font-weight: 800;
  font-size: .8125rem;
}

/* Product FAQ accordion — card style */
.product-faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-faq__item {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.product-faq__item:hover,
.product-faq__item.is-open {
  border-color: rgba(31, 75, 143, .25);
  box-shadow: 0 2px 12px rgba(31, 75, 143, .06);
}
.product-faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: left;
  cursor: pointer;
  transition: color var(--fast) var(--ease);
}
.product-faq__question:hover { color: var(--color-primary); }
.product-faq__icon {
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform 260ms var(--ease), color var(--fast) var(--ease);
}
.product-faq__item.is-open .product-faq__icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.product-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease);
}
.product-faq__item.is-open .product-faq__answer { grid-template-rows: 1fr; }
.product-faq__answer > div { overflow: hidden; }
.product-faq__answer__inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-body);
  font-size: .9375rem;
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

/* Kullanım Alanları + SSS — below tabs section */
.product-extra-content {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid rgba(15, 23, 42, .06);
}
.product-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}
.product-extra-col { background: #fff; }
.product-extra-title {
  font-size: var(--h2-sm);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 24px;
}

/* Related products — scoped to products */
.related-section.single-products {
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
  background: #F8FAFC;
}


/* ── Service detail: gallery + summary top layout ── */
.service-detail-page {
  background: var(--color-white);
  padding-bottom: var(--section-space);
}
/* ── Service detail top grid ── */
.service-detail-top {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ── Gallery ── */
.service-gallery { min-width: 0; }

.service-gallery__main {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--color-light);
  box-shadow: var(--sh-md);
}
.service-gallery__main img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: opacity var(--fast) var(--ease);
}

/* Arrow buttons */
.service-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  opacity: .85;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.service-gallery__arrow:hover {
  background: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.service-gallery__arrow--prev { left: 14px; }
.service-gallery__arrow--next { right: 14px; }

/* Placeholder */
.service-gallery__placeholder {
  aspect-ratio: 16/10; position: relative;
  background: linear-gradient(145deg, var(--color-footer-bg) 0%, #163870 55%, var(--color-primary) 100%);
  display: flex; align-items: center; justify-content: center;
}
.service-gallery__placeholder-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.service-gallery__placeholder-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.45);
}
.service-gallery__placeholder-inner p { font-size: .8125rem; font-weight: 600; margin: 0; }

/* Thumbnails */
.service-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.service-gallery__thumb {
  width: 82px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  padding: 0;
  cursor: pointer;
  opacity: .55;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.service-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-gallery__thumb:hover,
.service-gallery__thumb.is-active { opacity: 1; transform: translateY(-2px); }
.service-gallery__thumb.is-active { border-color: var(--color-primary); }

/* ── Summary panel ── */
.service-summary {
  align-self: start;
  width: 100%;
  max-width: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.service-summary__title {
  color: var(--color-heading);
  margin: .75rem 0 0;
}
.service-summary__divider {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-primary);
  margin: 18px 0 20px;
}
.service-summary__lead {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--color-body);
  width: 100%;
  max-width: none;
}
.service-summary__lead p,
.service-summary__lead ul,
.service-summary__lead ol,
.service-summary__lead li {
  max-width: none;
  width: 100%;
}
.service-summary__lead p {
  margin: 0 0 12px;
}
.service-summary__lead p:last-child {
  margin-bottom: 0;
}
.service-summary__lead ul,
.service-summary__lead ol {
  margin: 12px 0 0;
  padding-left: 1.1rem;
}
.service-summary__lead li { margin-bottom: 4px; }
.service-summary .section-eyebrow { margin-bottom: 0; }

/* Meta chips (kept for potential use) */
.service-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.service-meta span {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .75rem; border-radius: 999px;
  background: var(--color-light); color: var(--color-muted);
  border: 1px solid var(--color-border);
  font-size: .6875rem; font-weight: 600;
}


/* ── Service tabs ── */
.service-tabs { margin-top: clamp(48px, 6vw, 20px); }
.service-tabs__nav {
  display: flex; gap: 4px;
  border-bottom: 2px solid var(--color-border);
  overflow-x: auto; scrollbar-width: none;
}
.service-tabs__nav::-webkit-scrollbar { display: none; }
.service-tabs__button {
  position: relative;
  flex-shrink: 0;
  background: transparent; border: none;
  padding: .875rem 1.25rem;
  font-family: var(--font); font-size: .875rem; font-weight: 600;
  color: var(--color-muted); cursor: pointer;
  transition: color var(--fast) var(--ease);
}
.service-tabs__button::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.service-tabs__button:hover,
.service-tabs__button[aria-selected="true"] { color: var(--color-primary); }
.service-tabs__button:hover::after,
.service-tabs__button[aria-selected="true"]::after { transform: scaleX(1); }
.service-tabs__panel { padding-top: 1rem; display: block; }
.service-tabs__panel[hidden] { display: none; }

/* Tab content typography */
.service-tab-content p { font-size: .9375rem; line-height: 1.8; color: var(--color-body); }
.service-tab-content > * { max-width: none; }
.service-content p { font-size: .9375rem; line-height: 1.8; color: var(--color-body); }
.service-content > * { max-width: none; }

.service-tab-content h2 {
  color: var(--color-heading);
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}
.service-tab-content h2:first-child { margin-top: 0; }
.service-tab-content h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--color-heading);
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

/* Premium table */
.service-tab-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--sh-xs);
}
.service-tab-content table tr {
  border-bottom: 1px solid var(--color-border);
}
.service-tab-content table tr:last-child { border-bottom: none; }
.service-tab-content table td,
.service-tab-content table th {
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}
.service-tab-content table th {
  font-weight: 600;
  color: var(--color-heading);
  background: var(--color-light);
}
.service-tab-content table td:first-child,
.service-tab-content table th:first-child {
  width: 28%;
  font-weight: 600;
  color: var(--color-heading);
  background: #F8FAFC;
}
.service-tab-content table td:last-child { color: var(--color-body); }
.service-tab-content table tr:nth-child(even) td:last-child { background: #FCFCFD; }

/* Specs list (replaces old service-specs-grid) */
.service-specs-list {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--sh-xs);
}
.service-specs-list__row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  border-bottom: 1px solid var(--color-border);
}
.service-specs-list__row:last-child { border-bottom: 0; }
.service-specs-list__label {
  background: #F8FAFC;
  padding: 1rem 1.25rem;
  font-size: .9375rem; font-weight: 600;
  color: var(--color-heading);
  border-right: 1px solid var(--color-border);
}
.service-specs-list__value {
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  color: var(--color-body);
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: anywhere;
}
.service-specs-list__row:nth-child(even) .service-specs-list__value { background: #FCFCFD; }

/* ── Unified service-detail shell (legacy support) ── */
.service-detail-shell {
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--color-border);
}
.service-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(32px, 4vw, 56px);
  align-items: start;
}
.service-detail-body__aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.service-detail-body .entry-content,
.service-detail-body .entry-content > * { max-width: none; }
.service-summary p,
.service-summary ul,
.service-summary ol { max-width: none; width: 100%; }
.service-detail-body .entry-content p { font-size: .9375rem; line-height: 1.8; }
.service-sidebar-card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--r-lg); padding: 1.625rem;
  display: flex; flex-direction: column; gap: .875rem; box-shadow: var(--sh-xs);
}
.service-sidebar-card .button--block { height: 48px; font-size: .9375rem; margin-top: .25rem; }
.service-sticky-card { gap: .875rem; }
.service-sticky-card .button--block { margin-top: .25rem; height: 48px; font-size: .9375rem; }
.single-layout {
  background: var(--color-white);
  padding-block: var(--section-space);
}
.single-layout__grid {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 3rem; align-items: start;
}
.single-layout__lead {
  font-size: 1.0625rem; color: var(--color-muted); line-height: 1.75;
  margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--color-border);
}
.single-layout__aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }

/* Sticky card */
.sticky-card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  padding: 1.875rem; display: flex; flex-direction: column; gap: 1rem;
}
.sticky-card__title { font-size: 1.125rem; font-weight: 700; color: var(--color-heading); line-height: 1.3; }
.sticky-card__text  { color: var(--color-muted); font-size: .875rem; line-height: 1.65; }
.sticky-card__contact-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 500; color: var(--color-dark);
  transition: color var(--fast) var(--ease);
}
.sticky-card__contact-item:hover { color: var(--color-primary); }
.sticky-card__divider { border: none; border-top: 1px solid var(--color-border); }
.sticky-card__label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--color-subtle); }

/* Detail blocks */
.detail-block { margin-top: 2.75rem; padding-top: 2.75rem; border-top: 1px solid var(--color-border); }
.detail-block__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--color-heading); }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,200px),1fr)); gap: 1.25rem; }
.detail-card {
  background: var(--color-light); border-radius: var(--r-md);
  border: 1px solid var(--color-border); box-shadow: var(--sh-xs); padding: 1.25rem 1rem;
}
.detail-card__title { font-size: .9375rem; font-weight: 700; margin-bottom: .375rem; color: var(--color-heading); }
.detail-card__text  { font-size: .875rem; color: var(--color-muted); line-height: 1.6; }

/* Timeline */
.timeline { display: flex; flex-direction: column; counter-reset: step; }
.timeline__item {
  position: relative; padding-left: 3.25rem; padding-bottom: 2rem;
  counter-increment: step;
}
.timeline__item::before {
  content: counter(step); position: absolute; left: 0; top: 1px;
  width: 30px; height: 30px; background: var(--color-primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; font-family: var(--font);
}
.timeline__item::after {
  content: ''; position: absolute; left: 15px; top: 32px; bottom: 0;
  width: 2px; background: var(--color-border);
}
.timeline__item:last-child::after { display: none; }
.timeline__title { font-size: .9375rem; font-weight: 700; margin-bottom: .25rem; color: var(--color-heading); }
.timeline__text  { font-size: .875rem; color: var(--color-muted); line-height: 1.65; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.125rem 0;
  font-family: var(--font); font-size: .9375rem; font-weight: 600;
  color: var(--color-heading); text-align: left;
  transition: color var(--fast) var(--ease);
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; transition: transform 250ms var(--ease); }
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease);
}
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer > * { overflow: hidden; }
.faq-item__answer p,
.faq-item__answer div { padding-bottom: 1.125rem; color: var(--color-muted); font-size: .875rem; line-height: 1.7; }

/* Tech chips */
.tech-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.tech-chip {
  background: var(--color-primary-light); color: var(--color-primary);
  border: 1px solid var(--color-primary-mid);
  padding: .25rem .75rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .02em;
}

/* Specs table */
.specs-table { border: 1px solid var(--color-border); border-radius: var(--r-md); overflow: hidden; }
.specs-table tr:nth-child(odd) { background: var(--color-light); }
.specs-table th, .specs-table td { padding: .75rem 1rem; font-size: .875rem; text-align: left; }
.specs-table th { font-weight: 600; color: var(--color-heading); width: 45%; }
.specs-table td { color: var(--color-muted); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: .75rem; }
.gallery-grid__item {
  border-radius: var(--r-md); overflow: hidden;
  cursor: zoom-in; aspect-ratio: 1; position: relative;
}
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--slow) var(--ease); }
.gallery-grid__item:hover img { transform: scale(1.07); }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center; cursor: zoom-out;
}
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.75rem;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background-color var(--fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* Related */
/* ── Service SSS + Video ── */
.service-extra-section {
  margin-top: clamp(48px, 6vw, 80px);
}
.service-extra-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* FAQ */
.service-section-title {
  color: var(--color-heading);
  margin-bottom: 1.75rem;
}
.service-faq__list {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
}
.service-faq__item { border-bottom: 1px solid var(--color-border); }
.service-faq__item:last-child { border-bottom: none; }
.service-faq__button {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--color-heading);
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 500;
  transition: background var(--fast) var(--ease);
}
.service-faq__button:hover { background: var(--color-light); }
.service-faq__number {
  color: var(--color-primary);
  font-weight: 700;
  font-size: .875rem;
}
.service-faq__question { flex: 1; }
.service-faq__icon {
  justify-self: end;
  color: var(--color-muted);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .2s ease;
}
.service-faq__button[aria-expanded="true"] .service-faq__icon { color: var(--color-primary); }
.service-faq__answer {
  padding: .75rem 1.25rem 1.25rem calc(36px + 12px + 1.25rem);
  color: var(--color-body);
  font-size: .9375rem;
  line-height: 1.75;
}
.service-faq__answer p { margin: 0 0 .75rem; }
.service-faq__answer p:last-child { margin-bottom: 0; }

/* Video */
.service-video { position: static; }
.service-video__frame {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--sh-lg);
}
.service-video__frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  height: auto;
  border: 0;
}

/* ── Service comments (native WordPress comments_template) ── */
.service-comments {
  margin-top: 1rem;
}
.service-comments__closed {
  color: var(--color-muted);
  font-size: .9375rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-light, #f8f9fa);
}
.service-comments .comment-respond,
.service-comments .comment-list {
  max-width: none;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.service-comments .comment-list li {
  list-style: none;
}
.service-comments .comment-body {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.service-comments .comment-author .fn {
  font-weight: 600;
  color: var(--color-heading);
  font-size: .9375rem;
}
.service-comments .comment-metadata {
  font-size: .875rem;
  color: var(--color-muted);
  margin: .25rem 0 .75rem;
}
.service-comments .comment-metadata a {
  color: inherit;
  text-decoration: none;
}
.service-comments .comment-content {
  color: var(--color-body);
  font-size: .9375rem;
  line-height: 1.75;
}
.service-comments .comment-content p { margin: 0 0 .5rem; }
.service-comments .comment-content p:last-child { margin-bottom: 0; }
.service-comments .children {
  margin-left: 1.5rem;
  padding: 0;
}
/* Respond form */
.service-comments .comment-respond {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  padding: 1.75rem;
}
.service-comments .comment-reply-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 1.25rem;
}
.service-comments textarea,
.service-comments input[type="text"],
.service-comments input[type="email"],
.service-comments input[type="url"] {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: .875rem 1rem;
  font-size: .9375rem;
  font-family: inherit;
  color: var(--color-body);
  background: var(--color-light, #f8f9fa);
  transition: border-color .2s;
}
.service-comments textarea:focus,
.service-comments input[type="text"]:focus,
.service-comments input[type="email"]:focus,
.service-comments input[type="url"]:focus {
  outline: none;
  border-color: var(--color-primary);
}
.service-comments .comment-form-comment label,
.service-comments .comment-form-author label,
.service-comments .comment-form-email label,
.service-comments .comment-form-url label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--color-heading);
  margin-bottom: .375rem;
}
.service-comments .comment-form p {
  margin-bottom: 1rem;
}
.service-comments .form-submit {
  margin-top: .5rem;
}
.service-comments .submit {
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: .875rem 1.75rem;
  font-weight: 700;
  font-size: .9375rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.service-comments .submit:hover {
  background: var(--color-primary-dark, #0a2342);
}

/* ── Yorum formu yıldız puanlama alanı ── */
.service-rating-field {
  margin-bottom: 1rem;
}
.service-rating-field__label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--color-heading);
  margin-bottom: .375rem;
}
.service-rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}
.service-rating-stars input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.service-rating-stars label {
  font-size: 1.75rem;
  line-height: 1;
  color: #CBD5E1;
  cursor: pointer;
  transition: color .15s;
  user-select: none;
}
/* hover: yıldıza ve soldakilere (row-reverse'de solda = büyük değer) renk ver */
.service-rating-stars label:hover,
.service-rating-stars label:hover ~ label {
  color: #F59E0B;
}
/* seçili yıldız ve soldakiler */
.service-rating-stars input[type="radio"]:checked ~ label {
  color: #F59E0B;
}

/* ── Frontend yorum üstü yıldız gösterimi ── */
.service-comment-rating {
  display: flex;
  gap: 2px;
  margin-bottom: .5rem;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 1px;
}
.service-comment-rating .star--full  { color: #F59E0B; }
.service-comment-rating .star--empty { color: #CBD5E1; }

/* ── Read-more block ── */
.service-readmore {
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
  box-shadow: var(--sh-xs);
}
.service-readmore__content {
  position: relative;
  max-height: 150px;
  overflow: hidden;
  color: var(--color-body);
  line-height: 1.8;
  font-size: .95rem;
}
.service-readmore__content > * { max-width: none; }
.service-readmore__content p { margin: 0 0 .75rem; }
.service-readmore__content p:last-child { margin-bottom: 0; }
.service-readmore__content h2 {
  margin: 0 0 1.25rem;
}
.service-readmore__content h2:not(:first-child) { margin-top: 2rem; }
.service-readmore__content h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 1.75rem 0 1rem;
}
.service-readmore__content::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #F8FAFC);
  pointer-events: none;
}
.service-readmore.is-open .service-readmore__content { max-height: none; }
.service-readmore.is-open .service-readmore__content::after { display: none; }
.service-readmore__toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.service-readmore__toggle:hover { text-decoration: underline; }
/* Short content — hide gradient + button */
.service-readmore.is-short .service-readmore__content { max-height: none; }
.service-readmore.is-short .service-readmore__content::after,
.service-readmore.is-short .service-readmore__toggle { display: none; }

.related-section { background: var(--color-light); padding-block: var(--section-space-sm); }
.related-section__title { margin-bottom: 2rem; }
.single-services .related-section { padding-bottom: 56px; }

/* ─── 17. About ──────────────────────────────────────────────────────── */
.about-intro-section {
  background: var(--color-white);
  padding-top: 50px;
  padding-bottom: var(--section-space);
}

/* 2-column intro grid */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, .75fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

/* Left content */
.about-intro__eyebrow {  display: inline-block;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary-mid);
  padding: .25rem .875rem; border-radius: 999px;
  margin-bottom: .875rem;
}
.about-intro__title {
  color: var(--color-heading);
  margin-bottom: 1.25rem;
}
.about-intro__text { color: var(--color-muted); font-size: .875rem; max-width: none; width: 100%; }
.about-intro__text p { line-height: 1.8; margin-bottom: .875rem; font-size: .875rem; max-width: none; width: 100%; }
.about-intro__text p:last-child { margin-bottom: 0; }
/* Override global entry-content max-width only inside about intro */
.about-intro__text.entry-content,
.about-intro__text.entry-content > * { max-width: none; width: 100%; }

/* Right media */
.about-intro__media { position: relative; justify-self: end; }

/* Image variant — natural ratio, no forced crop */
.about-intro__image-wrap {
  position: relative;
  max-width: 480px; width: 100%; height: auto;
  margin-left: 0;
  border-radius: var(--r-xl);
  box-shadow: none;
  overflow: visible;
}
/* Target both the custom class and WP's .wp-post-image */
.about-intro__image-wrap img,
.about-intro__image-wrap .wp-post-image,
.about-intro__image {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: initial !important;
  object-position: initial !important;
  border-radius: var(--r-xl);
  box-shadow: none;
}

/* Placeholder panel (no image) — keeps aspect-ratio for visual balance */
.about-intro__placeholder {
  position: relative;
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3;
  max-width: 420px; width: 100%; margin-left: 0;
  background: linear-gradient(145deg, var(--color-footer-bg) 0%, #163870 55%, var(--color-primary) 100%);
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; justify-content: center;
}
.about-intro__placeholder-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.about-intro__placeholder-inner {
  position: relative; z-index: 1;
  padding: 2.5rem; width: 100%;
}
.about-intro__placeholder-logo { margin-bottom: .75rem; }
.about-intro__placeholder-logo .site-logo--text  { color: #fff; font-size: 1.25rem; }
.about-intro__placeholder-logo .site-logo__image { filter: brightness(0) invert(1); max-height: 38px; }
.about-intro__placeholder-tagline {
  color: rgba(255,255,255,.5); font-size: .875rem;
  font-weight: 500; letter-spacing: .04em; margin-bottom: 1.5rem;
}
.about-intro__placeholder-list {
  list-style: none; display: flex; flex-direction: column; gap: .75rem;
}
.about-intro__placeholder-list li {
  display: flex; align-items: center; gap: .625rem;
  color: rgba(255,255,255,.75); font-size: .875rem;
}
.about-intro__placeholder-list li svg { flex-shrink: 0; color: #61A5FA; }

/* Floating badge (shared by image & placeholder) */
.about-intro__badge {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-s);
  border-radius: var(--r-md);
  padding: .625rem 1rem;
  box-shadow: var(--sh-md);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; min-width: 90px;
}
.about-intro__badge-num  {
  font-family: var(--font); font-size: 1.25rem; font-weight: 800;
  color: var(--color-primary); line-height: 1; letter-spacing: -.04em;
}
.about-intro__badge-text { font-size: .625rem; font-weight: 600; color: var(--color-muted); margin-top: .2rem; }

/* ── Standalone about sections (stats / principles / values) ── */
.about-stats-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  padding-block: clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--color-border);
}
.about-principles-section {
  background: var(--color-white);
  padding-block: clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--color-border);
}
.about-values-section {
  background: var(--color-light);
  padding-block: clamp(56px, 7vw, 88px);
}

/* Keep legacy .about-section for any other use */
.about-section { padding-block: var(--section-space-sm); }
.about-section--stats  { background: var(--color-light); }
.about-section--values { background: var(--color-light); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.stat-card {
  background: var(--color-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); border: 1px solid var(--color-border);
  padding: 2rem 1.5rem; text-align: center;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.stat-card__num {
  display: block; font-family: var(--font);
  font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800;
  color: var(--color-primary); line-height: 1; letter-spacing: -.04em;
}
.stat-card__label { display: block; font-size: .875rem; color: var(--color-muted); font-weight: 500; margin-top: .5rem; }

/* Principles — dark manifesto layout */
.about-principles-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(31,75,143,.35), transparent 32%),
    linear-gradient(135deg, #07111F 0%, #102244 100%);
  color: #fff;
  padding-block: var(--section-space);
  position: relative; overflow: hidden;
  border-bottom: none;
}
.about-principles-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .22; pointer-events: none;
}

.principles-split {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.principles-split__intro {
  position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.section-eyebrow {
  display: inline-block;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(97,165,250,.9);
  background: rgba(97,165,250,.1);
  border: 1px solid rgba(97,165,250,.25);
  padding: .25rem .875rem; border-radius: 999px;
  margin-bottom: .875rem;
}
.principles-split__intro h2 {
  color: #fff;
  margin-bottom: 1rem;
  max-width: 20ch;
}
.principles-split__intro > p {
  color: rgba(255,255,255,.62); line-height: 1.75; max-width: 40ch;
}

.principles-list { border-top: 1px solid rgba(255,255,255,.12); }
.principles-item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.principles-item__number {
  font-family: var(--font); font-size: 1.25rem; font-weight: 800;
  color: rgba(255,255,255,.28); letter-spacing: -.04em; line-height: 1;
  padding-top: .2rem;
}
.principles-item__body h3 {
  color: #fff; font-size: 1rem; font-weight: 700;
  margin-bottom: .5rem; letter-spacing: -.01em;
}
.principles-item__body p {
  color: rgba(255,255,255,.65); font-size: .9375rem;
  line-height: 1.75; max-width: 56ch;
}

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,240px),1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.value-card {
  background: var(--color-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); border: 1px solid var(--color-border); padding: 1.75rem 1.5rem;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.value-card__icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
}
.value-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--color-primary); margin-bottom: .5rem; }
.value-card__text  { font-size: .875rem; color: var(--color-muted); line-height: 1.65; }

/* ─── 18. Contact ────────────────────────────────────────────────────── */
.contact-info-section { background: var(--color-light); padding-block: var(--section-space-sm); }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.25rem; }
.contact-info-card {
  background: var(--color-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); border: 1px solid var(--color-border);
  padding: 1.625rem; display: flex; align-items: center; flex-direction: column;
  gap: 1rem; text-align: center;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.contact-info-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.contact-info-card__icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--r-md);
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
}
.contact-info-card__label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-subtle); font-weight: 700; margin-bottom: .3rem; }
.contact-info-card__value { font-size: .9375rem; color: var(--color-dark); font-weight: 500; line-height: 1.5; }
.contact-info-card__value a { color: inherit; transition: color var(--fast) var(--ease); }
.contact-info-card__value a:hover { color: var(--color-primary); }

/* Multiple phone / value list inside a contact card */
.contact-info-card__value-list {
  display: grid; gap: 6px; justify-items: center;
}
.contact-info-card__value-list a {
  display: block;
  color: var(--color-dark); font-weight: 700; font-size: .9375rem;
  transition: color var(--fast) var(--ease);
}
.contact-info-card__value-list a:hover { color: var(--color-primary); }

.contact-form-section { background: var(--color-white); padding-block: var(--section-space); }
/* Contact layout: form wider than map */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.contact-form-card {
  background: var(--color-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); border: 1px solid var(--color-border); padding: 2.25rem;
}
.contact-form-card__title,
.quote-form-card__title { margin-bottom: 1.5rem; color: var(--color-heading); }

/* CF7 form — disable auto grid, let .cf7-row wrappers control layout */
.contact-form-card .wpcf7-form,
.quote-form-card .wpcf7-form { display: block; }
.contact-form-card .wpcf7-form p,
.quote-form-card .wpcf7-form p { margin: 0 0 0.875rem; width: 100%; max-width: none; }
/* CF7 wraps each field in a span — must be block+full-width */
.contact-form-card .wpcf7-form-control-wrap,
.quote-form-card .wpcf7-form-control-wrap { display: block; width: 100%; }

/* ── .cf7-row layout system (contact + quote) ── */
.contact-form-card .cf7-row,
.quote-form-card .cf7-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form-card .cf7-row:last-child,
.quote-form-card .cf7-row:last-child { margin-bottom: 0; }

.contact-form-card .cf7-row--full,
.quote-form-card .cf7-row--full { display: block; }

.contact-form-card .cf7-row--full > div,
.quote-form-card .cf7-row--full > div { width: 100%; }

.contact-form-card .cf7-row input,
.contact-form-card .cf7-row textarea,
.contact-form-card .cf7-row select,
.quote-form-card .cf7-row input,
.quote-form-card .cf7-row textarea,
.quote-form-card .cf7-row select { width: 100%; }

.contact-form-card .cf7-row textarea,
.quote-form-card .cf7-row textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-card .cf7-row input[type="submit"],
.quote-form-card .cf7-row input[type="submit"] { width: 100%; }

.contact-map-card {
  border-radius: var(--r-lg); overflow: hidden;
  min-height: 420px; box-shadow: var(--sh-md); border: 1px solid var(--color-border);
}
.contact-map-card iframe { width: 100%; min-height: 570px; display: block; height: 100%; }

/* ─── 19. Quote ──────────────────────────────────────────────────────── */
.quote-section { background: var(--color-white); padding-top: clamp(32px, 5vw, 48px); padding-bottom: var(--section-space); }
.quote-layout  { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.quote-form-card {
  background: var(--color-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); border: 1px solid var(--color-border); padding: 2.25rem;
}
.quote-form-card__title { margin-bottom: 1.5rem; color: var(--color-heading); }
.quote-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.quote-process { list-style: decimal; padding-left: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.quote-process li { font-size: .875rem; color: var(--color-muted); line-height: 1.65; }

/* ─── 20. Blog — Editorial ───────────────────────────────────────────── */
.blog-index { padding-top: clamp(32px, 5vw, 48px); padding-bottom: var(--section-space); background: var(--color-white); }
.blog-intro  { text-align: center; margin-bottom: 3.5rem; }
.blog-intro__title { letter-spacing: var(--ls-h2); color: var(--color-heading); }
.blog-intro__title span { color: var(--color-primary); }
.blog-intro__text  { color: var(--color-muted); max-width: 52ch; margin: .875rem auto 0; line-height: 1.75; }

/* Post grid */
.post-grid   { display: grid; gap: 1.75rem; }
.post-grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

/* Post card = unified card system + editorial feel */
.post-card {
  background: var(--color-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); border: 1px solid var(--color-border);
  overflow: hidden; display: flex; flex-direction: column;
  transition:
    transform var(--base) var(--ease),
    box-shadow var(--base) var(--ease),
    border-color var(--base) var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--color-border-s); }
.post-card__media { overflow: hidden; aspect-ratio: 16/10; background: var(--color-light); flex-shrink: 0; }
.post-card__media-link { display: block; height: 100%; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--slow) var(--ease); }
.post-card:hover .post-card__img { transform: scale(1.06); }
.post-card__media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-subtle);
  background: linear-gradient(135deg, var(--color-light-2) 0%, #dde2ec 100%);
}
.post-card__content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.post-card__badge {
  display: inline-block; align-self: flex-start;
  background: var(--color-primary-light); color: var(--color-primary);
  border: 1px solid var(--color-primary-mid);
  font-size: .6875rem; font-weight: 700; padding: .2rem .65rem;
  border-radius: var(--r-xs); letter-spacing: .05em; text-transform: uppercase;
  transition: background-color var(--fast), color var(--fast);
}
.post-card__badge:hover { background: var(--color-primary); color: #fff; }
.post-card__title   { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; color: var(--color-heading); }
.post-card__title a { color: inherit; transition: color var(--fast) var(--ease); }
.post-card__title a:hover { color: var(--color-primary); }
.post-card__excerpt { color: var(--color-muted); font-size: .875rem; line-height: 1.65; }
.post-card__meta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: var(--color-subtle);
  margin-top: auto; padding-top: .375rem;
}
.post-card__link {
  display: inline-flex; align-items: center; gap: .375rem;
  color: var(--color-primary); font-size: .875rem; font-weight: 600;
  transition: gap var(--fast) var(--ease);
}
.post-card:hover .post-card__link { gap: .65rem; }

/* Single post */
/* ─── 20. Single Post ───────────────────────────────────────────────── */
.single-post { background: var(--color-white); padding-top: 0; }

/* Page wrapper */
.single-post-page { padding: clamp(32px, 5vw, 48px) 0 clamp(56px, 7vw, 88px); }

/* Two-column grid */
.single-post-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

/* Heading block */
.single-post-main { min-width: 0; }
.single-post__title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: var(--ls-h2);
  margin-top: 1.4rem;
  margin-bottom: .6rem;
}
.single-post__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: .4rem .5rem;
  font-size: .9rem; color: rgba(15,23,42,.55);
  margin-bottom: .25rem;
}

/* Featured image */
.single-post-featured { margin: 0 0 0; }
.single-post-featured__img {
  width: 100%;
  aspect-ratio: 16 / 8;
  max-height: 460px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(15,23,42,.10);
  display: block;
}

/* Info / action bar below image */
.single-post-info-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px solid rgba(15,23,42,.08);
  margin-top: 1.4rem;
  margin-bottom: 2rem;
}
.single-post-info-bar a,
.single-post-info-bar span {
  min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem;
  padding: .7rem 1rem;
  font-size: .8125rem; font-weight: 700;
  color: var(--color-heading);
  text-decoration: none;
  border-right: 1px solid rgba(15,23,42,.08);
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease);
}
.single-post-info-bar a:hover { background: rgba(31,75,143,.04); color: var(--color-primary); }
.single-post-info-bar > *:last-child {
  border-right: 0;
  background: linear-gradient(135deg, #12386F, #1F5FAE);
  color: #fff;
}
.single-post-info-bar > *:last-child:hover { opacity: .88; color: #fff; }

/* Content prose — higher specificity overrides .entry-content defaults */
.single-post-content { max-width: none; }
.single-post-main .entry-content p   { font-size: 1.0625rem; line-height: 1.9; color: rgba(15,23,42,.82); margin-bottom: 1.45rem; max-width: none; }
.single-post-main .entry-content li  { max-width: none; }
.single-post-main .entry-content h2  { font-size: var(--h2-lg); margin-top: 2.4rem; margin-bottom: .9rem; }
.single-post-main .entry-content h3  { margin-top: 2rem; margin-bottom: .75rem; }
.single-post-main .entry-content ul,
.single-post-main .entry-content ol  { margin: 1.2rem 0 1.6rem; }
.single-post-main .entry-content li  { margin-bottom: .6rem; line-height: 1.8; }

/* Sidebar — sticky, stacked */
.single-post-sidebar { position: sticky; top: 110px; display: grid; gap: 1.25rem; }

/* Benzer Konular card */
.sidebar-related {
  background: var(--color-white);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 18px 48px rgba(15,23,42,.06);
}
.sidebar-related__title {
  display: flex; justify-content: center; align-items: center;
  min-height: 40px;
  border: 1px solid rgba(31,75,143,.18);
  border-radius: 14px;
  font-size: .8125rem; font-weight: 800; color: var(--color-heading);
  margin-bottom: .875rem;
}
.sidebar-related__list { display: grid; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.sidebar-related__item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: .75rem; align-items: center;
  text-decoration: none; color: inherit;
  border-radius: 10px; padding: .25rem;
  transition: background var(--fast) var(--ease);
}
.sidebar-related__item:hover { background: rgba(15,23,42,.03); }
.sidebar-related__thumb {
  width: 64px; height: 64px;
  border-radius: 10px; overflow: hidden;
  background: #E5EAF2; flex-shrink: 0;
}
.sidebar-related__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-related__item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .8125rem; font-weight: 700; line-height: 1.35;
  color: var(--color-heading);
}
.sidebar-related__item:hover .sidebar-related__item-title { color: var(--color-primary); }
.sidebar-related__date { display: block; margin-top: .3rem; font-size: .75rem; color: rgba(15,23,42,.52); }

/* CTA card */
.single-post__cta-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(31,75,143,.08), transparent 40%),
    var(--color-white);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 48px rgba(15,23,42,.06);
  display: flex; flex-direction: column; gap: 1rem;
}

/* ─── 21. Entry Content — styled prose ──────────────────────────────── */
.entry-content > * + * { margin-top: 1.125em; }
.entry-content p        { color: var(--color-body); line-height: 1.8; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--color-heading); margin-top: 2.25rem; }
.entry-content a        { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul       { list-style: none; padding: 0; }
.entry-content ul li    { position: relative; padding-left: 1.5rem; color: var(--color-body); margin-bottom: .35rem; }
.entry-content ul li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 6px; height: 6px; background: var(--color-primary);
  border-radius: 50%;
}
.entry-content ol       { list-style: decimal; padding-left: 1.5rem; }
.entry-content ol li    { color: var(--color-body); margin-bottom: .35rem; }
.entry-content blockquote {
  border-left: 3px solid var(--color-primary);
  padding: .75rem 1.25rem; margin-left: 0;
  background: var(--color-primary-light); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--color-dark); font-style: italic;
}
.entry-content code {
  font-family: "Consolas", "Monaco", monospace;
  background: var(--color-light); color: var(--color-primary);
  padding: .1em .4em; border-radius: var(--r-xs); font-size: .875em;
}
.entry-content pre {
  background: var(--color-heading); color: #e2e8f0;
  padding: 1.5rem; border-radius: var(--r-md); overflow-x: auto;
}
.entry-content pre code { background: none; color: inherit; padding: 0; }
.entry-content img      { border-radius: var(--r-md); }
.entry-content table    { border: 1px solid var(--color-border); border-radius: var(--r-md); overflow: hidden; }
.entry-content th, .entry-content td { padding: .625rem 1rem; border-bottom: 1px solid var(--color-border); font-size: .875rem; }
.entry-content th       { background: var(--color-light); font-weight: 600; color: var(--color-heading); }
.entry-content hr       { border: none; border-top: 1px solid var(--color-border); margin-block: 2.5rem; }

/* ─── 22. Forms (CF7) ────────────────────────────────────────────────── */
.wpcf7-form { display: flex; flex-direction: column; gap: .875rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
  display: block; width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--color-border-s);
  border-radius: var(--r-sm);
  font-family: var(--font); font-size: .9375rem;
  color: var(--color-dark); background: var(--color-white);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
  outline: none; -webkit-appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a5ead 100%);
  color: #fff; border: none;
  height: 52px; padding: 0 2rem;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  border-radius: var(--r-sm); cursor: pointer; width: auto;
  transition: box-shadow var(--base), transform var(--fast);
}
.wpcf7-form input[type="submit"]:hover {
  box-shadow: var(--sh-primary); transform: translateY(-1px);
}
.wpcf7-not-valid-tip { font-size: .75rem; color: #DC2626; margin-top: .25rem; display: block; }
.wpcf7-response-output { margin-top: .5rem; padding: .75rem 1rem; border-radius: var(--r-sm); font-size: .875rem; border: 1px solid; }

/* Page content generic */
.page-content { background: var(--color-white); padding-top: 50px; padding-bottom: var(--section-space); }
.page-content__inner { max-width: var(--content-width); margin: 0 auto; }

/* Default page template: container içinde tam genişlik */
.page-template-default .page-content__inner,
.page-template-default .page-content__inner .entry-content,
.page-template-default .page-content__inner .entry-content > *,
.page-template-default .page-content__inner .entry-content p,
.page-template-default .page-content__inner .entry-content ul,
.page-template-default .page-content__inner .entry-content ol {
  max-width: none !important;
  width: 100% !important;
  margin-inline: 0 !important;
}

/* ─── 23. Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(165deg, var(--color-footer-bg) 0%, var(--color-footer-mid) 55%, #102848 100%);
  color: rgba(255,255,255,.65);
  position: relative; overflow: hidden;
}
/* Top border glow */
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(97,165,250,.6) 35%, rgba(97,165,250,.9) 50%, rgba(97,165,250,.6) 65%, transparent 100%);
}
/* Grid overlay */
.site-footer::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }

.site-footer__top {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 2.5rem; padding-block: 4.5rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-footer__col-title {
  font-family: var(--font); font-size: .9375rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.375rem;
}
.site-footer__tagline { color: rgba(255,255,255,.45); font-size: .875rem; line-height: 1.75; margin-top: .875rem; }
.site-footer__logo .site-footer__logo-image { max-width: 160px; width: auto; height: auto; filter: brightness(0) invert(1); }
.site-footer__logo .site-footer__logo-text  { font-family: var(--font); font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: -.03em; }

.site-footer__menu { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.site-footer__menu li a {
  color: rgba(255,255,255,.6); font-size: .875rem;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color var(--fast) var(--ease), padding-left var(--fast) var(--ease);
}
.site-footer__menu li a::before { content: '›'; color: rgba(97,165,250,.65); font-size: 1.1em; transition: color var(--fast); }
.site-footer__menu li a:hover   { color: #fff; padding-left: 3px; }
.site-footer__menu li a:hover::before { color: #61A5FA; }

.site-footer__contact { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.site-footer__contact-item {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; color: rgba(255,255,255,.6);
}
.site-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: .7; }
.site-footer__contact-item a   { color: rgba(255,255,255,.6); transition: color var(--fast); }
.site-footer__contact-item a:hover { color: #fff; }

/* Stack multiple phones/values cleanly inside a footer contact item */
.site-footer__contact-values {
  display: grid; gap: 4px;
}
.site-footer__contact-values a {
  color: rgba(255,255,255,.6); font-size: .875rem;
  transition: color var(--fast) var(--ease);
}
.site-footer__contact-values a:hover { color: #fff; }

.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding-block: 1.5rem;
  font-size: .75rem; color: rgba(255,255,255,.38);
}

.site-footer__social { display: flex; align-items: center; gap: .5rem; }
.site-footer__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55);
  transition:
    background-color var(--fast) var(--ease),
    color           var(--fast) var(--ease),
    border-color    var(--fast) var(--ease),
    transform       var(--fast) var(--ease);
}
.site-footer__social-link:hover {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: rgba(255,255,255,.3); transform: translateY(-2px);
}

/* Contact / Quote form card head */
.contact-form-card__sub,
.quote-form-card__sub {
  color: var(--color-muted); font-size: .9375rem; line-height: 1.65;
  margin-top: .375rem; margin-bottom: 1.5rem;
}
.contact-form-card__head,
.quote-form-card__head { margin-bottom: .25rem; }

/* Map card empty state */
.contact-map-card--empty {
  display: flex; align-items: center; justify-content: center;
  background: var(--color-light); min-height: 260px;
}
.contact-map-card__msg { color: var(--color-muted); font-size: .875rem; text-align: center; padding: 2rem; }

/* CF7 form spacing reset — keeps tight consistent rows */
.wpcf7-form p          { margin: 0 0 0.875rem; max-width: none; width: 100%; }
.wpcf7-form p:last-of-type { margin-bottom: 0; }
.wpcf7-form-control-wrap   { display: block; width: 100%; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  min-height: 48px;
  display: block;
  padding: .75rem 1rem;
  border: 1.5px solid var(--color-border-s);
  border-radius: var(--r-sm);
  font-family: var(--font); font-size: .9375rem;
  color: var(--color-dark); background: var(--color-white);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
  outline: none; -webkit-appearance: none;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.wpcf7 textarea {
  min-height: 140px; height: 140px; resize: vertical;
}
.wpcf7 input[type="submit"] {
  width: 100%; min-height: 52px; height: 52px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a5ead 100%);
  color: #fff; border: none;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  border-radius: var(--r-sm); cursor: pointer;
  transition: box-shadow var(--base) var(--ease), transform var(--fast) var(--ease);
  -webkit-appearance: none;
}
.wpcf7 input[type="submit"]:hover {
  box-shadow: var(--sh-primary); transform: translateY(-1px);
}
.wpcf7 input[type="submit"]:active { transform: scale(.98); }
.wpcf7-not-valid-tip  { display: block; margin-top: .25rem; font-size: .75rem; color: #DC2626; }
.wpcf7-response-output {
  margin-top: .75rem; padding: .75rem 1rem;
  border-radius: var(--r-sm); font-size: .875rem; border: 1px solid;
}
.wpcf7-mail-sent-ok       { background: #F0FDF4; border-color: #86EFAC; color: #166534; }
.wpcf7-validation-errors  { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }

/* Empty-state fallback card */
.form-empty-state {
  background: rgba(31,75,143,.06);
  border: 1px solid rgba(31,75,143,.16);
  border-radius: var(--r-md);
  padding: 1.25rem 1.375rem;
  color: var(--color-dark);
}
.form-empty-state p { margin: 0; font-size: .9375rem; line-height: 1.65; }

/* Quote process steps */
.quote-steps     { display: flex; flex-direction: column; gap: .75rem; margin-top: .875rem; }
.quote-step      { display: flex; align-items: center; gap: .875rem; }
.quote-step__num {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; font-family: var(--font);
}
.quote-step__text { font-size: .9rem; color: var(--color-dark); font-weight: 500; line-height: 1.4; }
.quote-process-block { display: flex; flex-direction: column; }
.quote-info-card { gap: 1.125rem; }

/* ─── 24. Responsive: 1024px ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }

  .service-extra-grid { grid-template-columns: 1fr; }
  .product-extra-grid { grid-template-columns: 1fr; }
  .home-faq-reviews__grid { grid-template-columns: 1fr; }

  .hero__inner { grid-template-columns: 1fr; grid-template-rows: none; gap: 0; align-items: start; }
  .hero__content { grid-column: auto; grid-row: auto; }
  .hero__visual  { grid-column: auto; grid-row: auto; align-self: auto;
                   display: block; max-width: min(310px, 84vw); width: 100%; margin: 10px auto 10px; }
  .hero__stats   { grid-column: auto; grid-row: auto;
                   flex-wrap: wrap; gap: 1.5rem; margin-top: 0; }
  /* Image mode — mobile: flat single card, no decorative panel */
  .hero__visual--image { transform: none; min-height: auto; }
  .hero__visual--image::before,
  .hero__visual--image::after { display: none; }
  .hero__image-wrap {
    position: relative;
    left: auto; top: auto;
    width: 100%;
    height: auto;
    min-height: unset;
    border-radius: 20px;
  }
  .hero__visual--image .hero__float--support { top: 1rem;    right: 1rem; left: auto;  bottom: auto; }
  .hero__visual--image .hero__float--iso     { bottom: 1rem; left: 1rem;  top: auto;   right: auto; }

  .service-detail-top    { grid-template-columns: 1fr; align-items: start; }
  .service-detail-hero   { grid-template-columns: 1fr; }
  .service-detail-hero__media { order: -1; }
  .service-detail-body   { grid-template-columns: 1fr; }
  .service-detail-body__aside { position: static; }

  .features-grid      { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .archive-grid       { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-grid         { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .principles-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .principles-split   { grid-template-columns: 1fr; gap: 2.5rem; }
  .principles-split__intro { position: static; }
  .contact-cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .post-grid--3       { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer__top   { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .single-layout__grid  { grid-template-columns: 1fr; }
  .single-layout__aside { position: static; }
  .quote-layout         { grid-template-columns: 1fr; }
  .quote-aside          { position: static; }
  .contact-layout       { grid-template-columns: 1fr; }
  .about-intro-grid     { grid-template-columns: 1fr; }
  .about-intro          { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro__media   { order: 0; }
  .about-intro__badge   { bottom: .75rem; right: .75rem; }
  .about-intro__placeholder { aspect-ratio: 16/9; max-width: 100%; margin-left: 0; }
  .about-intro__image-wrap  { max-width: 425px; margin-left: 0; }
  .single-post__layout  { grid-template-columns: 1fr; }
  .single-post-grid     { grid-template-columns: 1fr; }
  .single-post-sidebar  { position: static; }
  .product-hero         { grid-template-columns: 1fr; }
  .product-summary      { position: static; }
  .home-features__grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-preview__grid { grid-template-columns: 1fr; }
  .services-preview__header { align-items: flex-start; }
  .services-preview__title { font-size: clamp(1.5rem, 4vw, 2rem); }
}

/* ─── 25. Responsive: 1024px — Mobile Drawer & Logo centering ───────── */
/* ─── 25. Responsive: 1024px — Header & Mobile ──────────────────────── */
@media (max-width: 1024px) {
  /* Logo center, hamburger left */
  .site-header__inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 0;
  }
  .site-header__toggle {
    display: flex;
    grid-column: 1; grid-row: 1;
    justify-self: start;
  }
  .site-header__logo {
    grid-column: 2; grid-row: 1;
    justify-self: center;
  }
  .site-header__actions {
    grid-column: 3; grid-row: 1;
    justify-self: end;
  }
  /* Desktop nav + CTA hidden */
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }

  /* Drawer body padding */
  .nav-drawer__body { padding: .75rem 1rem 1.25rem; }

  /* Drawer menu list styles */
  .mobile-drawer .site-header__menu {
    flex-direction: column; align-items: flex-start; gap: .125rem; width: 100%;
  }
  .mobile-drawer .site-header__menu li { width: 100%; position: relative; }
  .mobile-drawer .site-header__menu li > a {
    display: flex; align-items: center;
    min-height: 48px;
    padding: 0 14px; font-size: .9375rem; font-weight: 700;
    border-radius: 14px;
    width: 100%;
    color: var(--color-heading);
  }
  .mobile-drawer .site-header__menu li > a::after { display: none; }
  .mobile-drawer .site-header__menu li.current-menu-item > a,
  .mobile-drawer .site-header__menu li.current_page_item > a,
  .mobile-drawer .site-header__menu li > a:hover {
    background: rgba(31,75,143,.08); color: var(--color-primary);
  }

  /* Sub-menu toggle (JS-injected) */
  .submenu-toggle {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: .5rem; right: .5rem;
    width: 34px; height: 34px; border-radius: var(--r-sm);
    color: var(--color-muted);
    transition: background-color var(--fast), transform var(--base);
  }
  .submenu-toggle:hover { background: var(--color-light); }
  .submenu-is-open > .submenu-toggle { transform: rotate(180deg); }

  /* Sub-menu in drawer */
  .mobile-drawer .site-header__menu .sub-menu {
    display: none; position: static;
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; transition: none;
    box-shadow: none; border: none;
    background: transparent;
    padding: .25rem 0 .5rem 0;
    margin: 0;
  }
  .mobile-drawer .submenu-is-open > .sub-menu { display: block; }
  .mobile-drawer .site-header__menu li.menu-item-has-children::after { display: none; }
  .mobile-drawer .site-header__menu .sub-menu li a {
    min-height: 42px; font-size: .92rem; font-weight: 600;
    padding: 0 .875rem; color: rgba(15,23,42,.72);
  }
  .mobile-drawer .site-header__menu .sub-menu li a:hover {
    background: rgba(31,75,143,.06); color: var(--color-primary);
  }

  /* Modüler Su Deposu: reduce gap on tablet */
  .home-modular-water__inner {
    gap: clamp(28px, 4vw, 48px);
  }
}

/* ─── 25b. Responsive: 991px — Top header mobile simplify ───────────── */
@media (max-width: 991px) {
  .top-header__inner {
    justify-content: center;
    gap: 18px;
  }
  .top-header__right          { display: none; }
  .top-header__item--phone2   { display: inline-flex; }
  .top-header__item           { font-size: .85rem; white-space: nowrap; }
  .top-header__item svg       { display: none; }
}

/* ─── 25c. Responsive: 768px — Non-header layout ─────────────────────── */
@media (max-width: 768px) {
  .top-header__inner          { min-height: 34px; }
  .top-header__left           { gap: .625rem; }
  .top-header__item           { font-size: .75rem; }
  .breadcrumb        { padding-block: .85rem; }
  .breadcrumb__inner { flex-direction: column; align-items: flex-start; gap: .45rem; }
  .breadcrumb__list  { font-size: .78rem; flex-wrap: wrap; }
  .home-cta__panel      { flex-direction: column; text-align: center; gap: 1.5rem; }
  .home-cta__actions    { justify-content: center; width: 100%; }
  .home-cta__actions .button { flex: 1 1 auto; text-align: center; justify-content: center; }
  .home-cta           { margin-bottom: -40px; }
  .home-seo-content   { margin-top: 28px; padding-top: 28px; padding-bottom: 4px; }
  .home-certificates  { padding-top: 88px; }
  .home-certificates__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .site-footer__top     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .site-footer__contact-item { font-size: .8125rem; }
  .services-preview__header { flex-wrap: wrap; gap: 1rem; }
  .services-preview__all { font-size: .8125rem; padding: .4375rem 1rem; }
}

/* ─── 26. Responsive: 640px ──────────────────────────────────────────── */
@media (max-width: 640px) {
  /* 480px eşdeğeri: e-posta text'i gizle, sadece icon kalsın */
  .top-header__item--email span { display: none; }
  .home-faq-reviews { padding: 56px 0; }
  .home-faq-reviews__title { margin-bottom: 1.2rem; }
  .home-faq__question { padding: 1rem 1.1rem; }
  .home-review-card { padding: 1.25rem; border-radius: 22px; }
  .home-review-card::before { font-size: 4rem; }
  .home-reviews-slider__arrow { width: 34px; height: 34px; }
  .service-detail-page,
  .product-detail-page,
  .about-intro-section,
  .about-section,
  .contact-info-section,
  .quote-section,
  .archive-grid-section,
  .page-content,
  .single-post { padding-top: 20px; }
  .single-post-page { padding: 20px 0 clamp(56px, 7vw, 88px); }
  .single-post__title { font-size: clamp(1.35rem, 8vw, 1.75rem); margin-top: 1rem; }
  .single-post-featured__img { aspect-ratio: 16 / 10; border-radius: 20px; }
  .single-post-info-bar {
    grid-template-columns: 1fr;
  }
  .single-post-info-bar a,
  .single-post-info-bar span {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(15,23,42,.08);
  }
  .single-post-info-bar > *:last-child { border-bottom: 0; }
  .sidebar-related__item { grid-template-columns: 56px 1fr; }
  .single-post__cta-card { padding: 1.25rem; border-radius: 20px; }
  .archive-grid        { grid-template-columns: 1fr; }
  .features-grid       { grid-template-columns: 1fr; }
  .post-grid--3        { grid-template-columns: 1fr; }
  .contact-cards-grid  { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .principles-grid     { grid-template-columns: 1fr; }
  .principles-item     { grid-template-columns: 48px 1fr; gap: 1rem; }
  .values-grid         { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer__top    { grid-template-columns: 1fr; }
  .hero__actions       { display: none; }
  .hero__float         { display: none; }
  .hero__content       { text-align: center; }
  .hero__eyebrow       { margin-inline: auto; }
  .hero__inner         { padding-block: 24px 18px; }
  .hero__title         { font-size: clamp(2rem, 9vw, 2.45rem); line-height: .98; }
  .hero__text          { font-size: .98rem; line-height: 1.65; margin: 14px auto 0; text-align: center; }
  .hero__stats         { gap: 12px; padding-top: .5rem; justify-content: center; align-items: center; text-align: center; }
  .hero__stat          { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .hero__stat-num      { font-size: clamp(1.25rem, 6vw, 1.55rem); text-align: center; }
  .hero__stat-label    { font-size: .7rem; line-height: 1.2; text-align: center; }
  .product-hero        { padding-top: 32px; }
  .product-summary__actions { flex-direction: column; }
  .product-summary__actions .button { width: 100%; justify-content: center; }
  .product-tabs__btn   { padding: .625rem 1rem; font-size: .875rem; }
  .product-tabs__nav,
  .service-tabs__nav   { -webkit-overflow-scrolling: touch; }
  .service-tabs__button { padding: .75rem .875rem; font-size: .8125rem; }
  .product-specs-table,
  .product-specs-table tbody,
  .product-specs-table tr,
  .product-specs-table th,
  .product-specs-table td { display: block; width: 100%; }
  .product-specs-table { border-radius: 16px; box-shadow: 0 8px 24px rgba(15,23,42,.06); }
  .product-specs-table tr { border-bottom: 1px solid rgba(15,23,42,.08); }
  .product-specs-table tr:last-child { border-bottom: 0; }
  .product-specs-table th {
    border-right: 0;
    border-bottom: 0;
    padding-bottom: .45rem;
    background: linear-gradient(135deg, rgba(31,75,143,.08), rgba(31,75,143,.035));
  }
  .product-specs-table tr:nth-child(even) th {
    background: linear-gradient(135deg, rgba(31,75,143,.10), rgba(31,75,143,.045));
  }
  .product-specs-table td { padding-top: .45rem; background: #fff; }
  .product-specs-table tr:nth-child(even) td { background: #F8FAFC; }
  .product-usage-box { border-radius: 14px; }
  .product-faq__item  { border-radius: 14px; }
  .product-faq__question { font-size: .875rem; }
  .product-faq__answer__inner { font-size: .875rem; }
  .product-gallery__arrow { width: 36px; height: 36px; }
  .product-gallery__arrow svg { width: 15px; height: 15px; }
  .single-layout__grid { grid-template-columns: 1fr; }

  /* CF7 rows collapse to single column on mobile */
  .contact-form-card .cf7-row,
  .quote-form-card .cf7-row { grid-template-columns: 1fr; }
  .about-intro__image-wrap { max-width: 100%; }
  .service-detail-shell { border-radius: var(--r-lg); }
  .service-detail-hero,
  .service-detail-body { padding: 1.25rem; gap: 1.5rem; }
  .service-gallery__arrow { width: 38px; height: 38px; }
  .service-gallery__arrow--prev { left: 10px; }
  .service-gallery__arrow--next { right: 10px; }
  .service-gallery__thumb { width: 76px; height: 58px; border-radius: 10px; }
  .service-gallery__main  { border-radius: 20px; }

  /* Tab table: block layout on mobile */
  .service-tab-content table,
  .service-tab-content tbody,
  .service-tab-content tr,
  .service-tab-content td,
  .service-tab-content th { display: block; width: 100%; }
  .service-tab-content table { border-radius: 12px; }
  .service-tab-content td:first-child,
  .service-tab-content th:first-child {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: .5rem;
  }
  .service-tab-content td:last-child { padding-top: .5rem; }

  /* Spec list: stack on mobile */
  .service-specs-list__row { grid-template-columns: 1fr; }
  .service-faq__button { grid-template-columns: 32px 1fr 24px; padding: .875rem 1rem; }
  .service-faq__answer { padding-left: calc(32px + 12px + 1rem); }
  .service-comments .comment-body { padding: 1rem; border-radius: 14px; }
  .service-comments .children { margin-left: .75rem; }
  .service-comments .comment-respond { padding: 1.25rem; }
  .service-specs-list__label { border-right: none; border-bottom: 1px solid var(--color-border); }
  .single-services .related-section { padding-bottom: 32px; }
  .home-features { padding: 40px 0; }
  .home-features__grid { grid-template-columns: 1fr; }
  .home-feature-card { min-height: auto; padding: 24px 20px; }
  .home-feature-card p { max-width: none; }
  .why-us-extra-content { margin-top: 36px; }
  .why-us-extra-content p { font-size: .875rem; line-height: 1.9; text-align: justify; }
  /* Modüler Su Deposu: single column, image first */
  .home-modular-water { padding-top: 40px; padding-bottom: 56px; bottom: 0; }
  .home-modular-water::after { height: 40px; }
  .home-modular-water__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-modular-water__visual { order: -1; }
  .home-modular-water__image-wrap { border-radius: 20px; }
  .home-modular-water__title { font-size: 1.5rem; line-height: 1.22; }
  .home-modular-water__cta { flex-direction: column; align-items: flex-start; gap: .875rem; }
  /* Why-us: reduce effects on mobile */
  .home-section--why-us .feature-card {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: translateY(-3px);
  }
  .home-section--why-us .feature-card:hover { transform: translateY(-5px); }
}

/* ─── 27. Prefers-reduced-motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1    !important;
    transition-duration:      0.01ms !important;
    scroll-behavior:          auto   !important;
  }
  .hero__panel::after,
  .card__img, .post-card__img,
  .gallery-grid__item img { transform: none !important; }
}

/* ─── Mobile Action Bar — FAB ────────────────────────────────────────── */
.mobile-action-bar { display: none; }

@media (max-width: 768px) {
  .mobile-action-bar {
    position: fixed;
    right: 16px;
    bottom: 20px;
    left: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-action-bar__btn {
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15,23,42,.22);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .mobile-action-bar__btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin: 0;
  }
  .mobile-action-bar__btn:hover  { transform: scale(1.06); }
  .mobile-action-bar__btn:active { transform: scale(.96); }
  .mobile-action-bar__btn--whatsapp { background: #25D366; color: #fff; }
  .mobile-action-bar__btn--call     { background: var(--color-primary); color: #fff; }
  body { padding-bottom: 24px; }
  body.nav-open .mobile-action-bar { display: none; }
}
