/* Eudaimonia — Yeni site design system (index_yeni + ehf components) */
:root {
  --ehf-ink: #121417;
  --ehf-ink-soft: #2a3038;
  --ehf-muted: #5c6570;
  --ehf-line: #e6e8ec;
  --ehf-bg: #ffffff;
  --ehf-soft: #f4f5f7;
  --ehf-well: #7cb89a;
  --ehf-well-soft: #e8f4ee;
  --ehf-perf: #6b9ec9;
  --ehf-perf-soft: #e8f1f8;
  --ehf-olcum: #8a8594;
  --ehf-font: 'Outfit', 'Segoe UI', sans-serif;
  --ehf-script: 'Caveat', cursive;
  --ehf-radius: 14px;
  --ehf-pill: 999px;
  --ehf-max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ehf-body {
  margin: 0;
  font-family: var(--ehf-font);
  color: var(--ehf-ink);
  background: var(--ehf-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.ehf-wrap {
  width: min(var(--ehf-max), calc(100% - 40px));
  margin-inline: auto;
}

.ehf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Buttons ——— */
.ehf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  border-radius: var(--ehf-pill);
  font-family: var(--ehf-font);
  font-weight: 650;
  font-size: 0.92rem;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  line-height: 1.2;
  white-space: nowrap;
}

.ehf-btn-sm { padding: 10px 16px; font-size: 0.84rem; }

.ehf-btn-dark {
  background: var(--ehf-ink);
  color: #fff !important;
  border-color: var(--ehf-ink);
}

.ehf-btn-dark:hover {
  background: #000;
  transform: translateY(-1px);
}

.ehf-btn-light {
  background: #fff;
  color: var(--ehf-ink) !important;
  border-color: #fff;
}

.ehf-btn-light:hover {
  background: #f2f3f5;
  transform: translateY(-1px);
}

.ehf-btn-accent {
  background: #2f9f86;
  color: #fff !important;
  border-color: #2f9f86;
}

.ehf-btn-accent:hover {
  background: #278a74;
  transform: translateY(-1px);
}

.ehf-btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.75);
}

.ehf-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ehf-btn-ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.8);
}

.ehf-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ehf-btn-soft {
  background: var(--ehf-soft);
  color: var(--ehf-ink) !important;
  border-color: transparent;
  font-size: 0.84rem;
  padding: 10px 16px;
}

.ehf-btn-soft:hover {
  background: #e8eaee;
}

/* ——— Header ——— */
.ehf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ehf-line);
}

.ehf-header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
}

.ehf-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  max-width: 100%;
}

.ehf-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  object-position: left center;
  /* white bottom band stays visible on white header */
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.ehf-logo-mark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ehf-ink);
}

.ehf-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ehf-muted);
  margin-top: 4px;
}

.ehf-logo-footer {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.ehf-logo-img-footer {
  height: 36px;
  max-width: 160px;
}

.ehf-nav {
  min-width: 0;
  justify-self: center;
}

.ehf-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2px 14px;
}

.ehf-nav-list a {
  text-decoration: none;
  color: var(--ehf-ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  transition: color .15s ease;
}

.ehf-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1.5px;
  background: var(--ehf-ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.ehf-nav-list a:hover {
  color: var(--ehf-ink);
}

.ehf-nav-list a:hover::after,
.ehf-nav-list a.is-active::after {
  transform: scaleX(1);
}

.ehf-nav-list a.is-active {
  color: var(--ehf-ink);
  font-weight: 650;
}

.ehf-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

/* ——— Language switcher ——— */
.ehf-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.ehf-lang-primary {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--ehf-line);
  border-radius: 999px;
  padding: 2px;
  background: #fff;
}

.ehf-lang-chip {
  text-decoration: none;
  color: var(--ehf-ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 9px;
  border-radius: 999px;
  line-height: 1;
  transition: background .15s ease, color .15s ease;
}

.ehf-lang-chip:hover {
  color: var(--ehf-ink);
  background: var(--ehf-soft);
}

.ehf-lang-chip.is-active {
  background: var(--ehf-ink);
  color: #fff;
}

.ehf-lang-more {
  position: relative;
}

.ehf-lang-flag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--ehf-line);
  background: #fff;
  border-radius: 999px;
  padding: 5px 8px 5px 6px;
  cursor: pointer;
  color: var(--ehf-ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ehf-lang-flag-btn:hover,
.ehf-lang.is-open .ehf-lang-flag-btn {
  border-color: #c5ced6;
  color: var(--ehf-ink);
}

.ehf-lang-flag-img {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.ehf-lang-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.ehf-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--ehf-line);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(20, 28, 36, 0.12);
  z-index: 120;
}

.ehf-lang-menu[hidden] {
  display: none !important;
}

.ehf-lang-option {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ehf-ink-soft);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
}

.ehf-lang-option:hover,
.ehf-lang-option.is-active {
  background: var(--ehf-soft);
  color: var(--ehf-ink);
}

.ehf-lang-option img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.ehf-lang-option-code {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ehf-muted);
}

.ehf-rtl .ehf-lang-menu {
  right: auto;
  left: 0;
}

.ehf-rtl .ehf-nav-list,
.ehf-rtl .ehf-header-actions,
.ehf-rtl .ehf-hero-actions,
.ehf-rtl .ehf-footer-nav {
  direction: rtl;
}

.ehf-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ehf-line);
  background: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.ehf-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ehf-ink);
}

/* ——— Hero (full-bleed) ——— */
.ehf-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ehf-hero-media,
.ehf-cta-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  animation: ehfKen 18s ease-in-out infinite alternate;
}

.ehf-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.72) 0%, rgba(10, 12, 16, 0.45) 48%, rgba(10, 12, 16, 0.28) 100%),
    linear-gradient(0deg, rgba(10, 12, 16, 0.55) 0%, transparent 45%);
}

.ehf-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: end;
}

.ehf-brand-line {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  animation: ehfUp .7s ease both;
}

.ehf-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 14ch;
  animation: ehfUp .75s ease .05s both;
}

.ehf-hero-lead {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.88);
  animation: ehfUp .75s ease .1s both;
}

.ehf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: ehfUp .75s ease .15s both;
}

.ehf-hero-aside {
  text-align: right;
  padding-bottom: 8px;
  animation: ehfFade 1s ease .3s both;
}

.ehf-hero-aside-kicker {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.ehf-hero-script {
  margin: 0;
  font-family: var(--ehf-script);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.ehf-hero-script::after {
  content: '';
  display: block;
  width: 72%;
  height: 1px;
  margin: 10px 0 0 auto;
  background: rgba(255, 255, 255, 0.55);
}

/* ——— Section heads ——— */
.ehf-section-head {
  margin-bottom: 36px;
  max-width: 46rem;
}

.ehf-section-head-center {
  text-align: center;
  margin-inline: auto;
}

.ehf-kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ehf-muted);
}

.ehf-kicker-ink { color: var(--ehf-ink-soft); }

.ehf-section-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ehf-ink);
}

.ehf-section-lead {
  margin: 12px 0 0;
  color: var(--ehf-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ——— Services split ——— */
.ehf-services {
  padding: 72px 0 40px;
  background: #fff;
}

.ehf-svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.ehf-svc-col-head {
  margin-bottom: 22px;
}

.ehf-svc-col-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.ehf-svc-wellness .ehf-svc-col-head h3 {
  box-shadow: inset 0 -0.35em 0 var(--ehf-well-soft);
}

.ehf-svc-perf .ehf-svc-col-head h3 {
  box-shadow: inset 0 -0.35em 0 var(--ehf-perf-soft);
}

.ehf-svc-col-head p {
  margin: 12px 0 16px;
  color: var(--ehf-muted);
  font-size: 0.95rem;
  max-width: 38ch;
}

.ehf-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ehf-svc-grid-wide {
  grid-template-columns: repeat(3, 1fr);
}

.ehf-services-perf {
  background: #f7fafc;
  padding-top: 56px;
  padding-bottom: 56px;
}

.ehf-lab {
  padding: 64px 0;
  background: #fff;
}

.ehf-about {
  padding: 72px 0;
  background: var(--ehf-soft);
}

.ehf-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.ehf-about-visual {
  min-height: 320px;
  border-radius: var(--ehf-radius);
  background-size: cover;
  background-position: center;
}

.ehf-svc-card {
  background: #fff;
  border: 1px solid var(--ehf-line);
  border-radius: var(--ehf-radius);
  overflow: hidden;
  padding: 0 0 16px;
  display: flex;
  flex-direction: column;
  animation: ehfUp .55s ease both;
  animation-delay: var(--delay, 0s);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ehf-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 20, 23, 0.08);
}

.ehf-svc-photo {
  position: relative;
  height: 132px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}

.ehf-svc-ico {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ehf-ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ehf-svc-wellness .ehf-svc-ico { color: #2f6b4f; }
.ehf-svc-perf .ehf-svc-ico { color: #2f5f86; }

.ehf-svc-card h4 {
  margin: 0 14px 8px;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.ehf-svc-card p {
  margin: 0 14px 12px;
  font-size: 0.84rem;
  color: var(--ehf-muted);
  line-height: 1.45;
  flex: 1;
}

.ehf-svc-card > a {
  margin: 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ehf-ink);
}

.ehf-svc-card > a:hover { opacity: 0.7; }

/* ——— Hizmetlerimiz tabs / list ——— */
.ehf-services-tabs {
  padding: 72px 0 56px;
  background: #fff;
}

.ehf-svc-switch {
  margin-top: 8px;
}

.ehf-svc-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--ehf-line);
  border-radius: var(--ehf-pill);
  background: var(--ehf-soft);
  margin-bottom: 28px;
}

.ehf-svc-tab {
  border: 0;
  background: transparent;
  color: var(--ehf-ink-soft);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  padding: 12px 18px;
  border-radius: var(--ehf-pill);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.ehf-svc-tab:hover { color: var(--ehf-ink); }

.ehf-svc-tab.is-active {
  background: #fff;
  color: var(--ehf-ink);
  box-shadow: 0 1px 2px rgba(18, 20, 23, 0.06);
}

.ehf-svc-tab:focus-visible {
  outline: 2px solid var(--ehf-ink);
  outline-offset: 2px;
}

.ehf-svc-panel-title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.ehf-svc-panel-title-well { color: #2f6b4f; }
.ehf-svc-panel-title-perf { color: #2f5f86; }

.ehf-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ehf-svc-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  padding: 0;
  border: 1px solid var(--ehf-line);
  border-radius: var(--ehf-radius);
  background: var(--ehf-soft);
  min-height: 132px;
  overflow: hidden;
  transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.ehf-svc-row:hover {
  background: #fff;
  border-color: #cfd5dc;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(20, 24, 30, 0.06);
}

.ehf-svc-row:focus-visible {
  outline: 2px solid var(--ehf-ink);
  outline-offset: 2px;
}

.ehf-svc-row-media {
  display: block;
  position: relative;
  min-height: 132px;
  background: #dfe3e8;
  overflow: hidden;
}

.ehf-svc-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.ehf-svc-row:hover .ehf-svc-row-media img {
  transform: scale(1.04);
}

.ehf-svc-row-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  min-width: 0;
}

.ehf-svc-row-n {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  color: var(--ehf-muted);
}

.ehf-svc-list-well .ehf-svc-row-n { color: #2f6b4f; }
.ehf-svc-list-perf .ehf-svc-row-n { color: #2f5f86; }

.ehf-svc-row-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ehf-svc-row-text {
  display: block;
  color: var(--ehf-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ehf-svc-row-cta {
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
  color: var(--ehf-ink-soft);
}

/* ——— Service detail ——— */
.ehf-svc-detail-hero {
  position: relative;
  min-height: min(62vh, 560px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ehf-svc-detail-hero-media,
.ehf-svc-detail-hero-shade {
  position: absolute;
  inset: 0;
}

.ehf-svc-detail-hero-media {
  background-size: cover;
  background-position: center;
}

.ehf-svc-detail-hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.78) 0%, rgba(10, 12, 16, 0.42) 55%, rgba(10, 12, 16, 0.28) 100%),
    linear-gradient(0deg, rgba(10, 12, 16, 0.55) 0%, transparent 50%);
}

.ehf-svc-detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 56px 0 48px;
  max-width: 48rem;
}

.ehf-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 18px;
  opacity: 0.85;
}

.ehf-breadcrumb a { text-decoration: none; }
.ehf-breadcrumb a:hover { text-decoration: underline; }

.ehf-kicker-on-dark { color: rgba(255, 255, 255, 0.75); }

.ehf-svc-detail-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ehf-svc-detail-statement {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.4;
}

.ehf-svc-detail-lead {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 48ch;
}

.ehf-svc-detail-block { padding: 56px 0; }
.ehf-svc-detail-soft { background: var(--ehf-soft); }

.ehf-svc-detail-block h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ehf-svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ehf-svc-bullet {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ehf-ink-soft);
}

.ehf-svc-bullet li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.ehf-svc-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ehf-svc-chips li {
  border: 1px solid var(--ehf-line);
  background: #fff;
  border-radius: var(--ehf-pill);
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ehf-ink-soft);
}

.ehf-faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.ehf-faq-item {
  border: 1px solid var(--ehf-line);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
}

.ehf-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.ehf-faq-item summary::-webkit-details-marker { display: none; }

.ehf-faq-item p {
  margin: 10px 0 0;
  color: var(--ehf-muted);
  line-height: 1.55;
}

.ehf-svc-detail-cta { min-height: 360px; }

@media (max-width: 900px) {
  .ehf-svc-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .ehf-svc-row {
    grid-template-columns: 1fr;
  }
  .ehf-svc-row-media {
    min-height: 160px;
    max-height: 180px;
  }
  .ehf-svc-row-main {
    grid-template-columns: auto 1fr;
    gap: 12px 14px;
    padding: 16px;
  }
  .ehf-svc-row-cta { grid-column: 2; }
  .ehf-svc-tabs { width: 100%; }
  .ehf-svc-tab { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ehf-svc-row { transition: none; }
  .ehf-svc-row:hover { transform: none; }
}

/* ——— Ölçüm ——— */
.ehf-olcum {
  --ehf-olcum-accent: #2f9f86;
  --ehf-olcum-accent-soft: #e6f6f1;
  padding: 0;
  background: #fff;
}

.ehf-olcum-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ehf-olcum-hero-media,
.ehf-olcum-hero-shade {
  position: absolute;
  inset: 0;
}

.ehf-olcum-hero-media {
  background-size: cover;
  background-position: center;
}

.ehf-olcum-hero-shade {
  background:
    linear-gradient(105deg, rgba(8, 14, 16, 0.88) 0%, rgba(8, 14, 16, 0.55) 52%, rgba(8, 14, 16, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 14, 16, 0.2) 0%, rgba(8, 14, 16, 0.7) 100%);
}

.ehf-olcum-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 32px;
  align-items: end;
  padding: 72px 0 52px;
}

.ehf-olcum-hero-copy h1 {
  margin: 0 0 16px;
  max-width: 14ch;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ehf-olcum-hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.ehf-olcum-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 28px;
}

.ehf-olcum-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.ehf-olcum-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.ehf-olcum-hero-quote {
  justify-self: end;
  max-width: 12rem;
  text-align: right;
  padding-bottom: 8px;
}

.ehf-olcum-hero-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 650;
}

.ehf-olcum-hero-quote span {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.7;
}

.ehf-olcum-filters {
  border-top: 1px solid var(--ehf-line);
  border-bottom: 1px solid var(--ehf-line);
  background: #fff;
  position: sticky;
  top: 64px;
  z-index: 20;
}

.ehf-olcum-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.ehf-olcum-filter {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 16px 10px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a8290;
  cursor: pointer;
  position: relative;
}

.ehf-olcum-filter.is-active,
.ehf-olcum-filter:hover {
  color: var(--ehf-ink);
}

.ehf-olcum-filter.is-active::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  background: var(--ehf-ink);
}

.ehf-olcum-main {
  padding-top: 48px;
  padding-bottom: 56px;
}

.ehf-olcum-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px 40px;
  align-items: end;
  margin-bottom: 28px;
}

.ehf-olcum-intro h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
}

.ehf-olcum-flow {
  margin: 12px 0 0;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #5c6570;
}

.ehf-olcum-intro .ehf-section-lead {
  margin: 0;
}

.ehf-olcum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ehf-olcum-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 16px;
  padding: 16px 14px 16px;
  color: var(--ehf-ink);
  box-shadow: 0 8px 24px rgba(18, 20, 23, 0.04);
  animation: ehfUp .5s ease both;
  animation-delay: var(--delay, 0s);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ehf-olcum-card[hidden] {
  display: none !important;
}

.ehf-olcum-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(18, 20, 23, 0.09);
}

.ehf-olcum-card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ehf-olcum-n {
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ehf-olcum-accent);
  line-height: 1.2;
}

.ehf-olcum-card-head h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.3;
}

.ehf-olcum-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: #e8ecef;
}

.ehf-olcum-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.ehf-olcum-card:hover .ehf-olcum-card-media img {
  transform: scale(1.04);
}

.ehf-olcum-ico {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ehf-olcum-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(18, 20, 23, 0.18);
}

.ehf-olcum-card-text {
  margin: 0;
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5c6570;
}

.ehf-olcum-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1f6f7a;
  text-decoration: none;
}

.ehf-olcum-card-cta:hover {
  color: #14545c;
}

.ehf-olcum-card-cta:focus-visible {
  outline: 2px solid var(--ehf-olcum-accent);
  outline-offset: 3px;
}

.ehf-olcum-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ehf-olcum-philosophy {
  background: #1a2b2b;
  color: #fff;
  padding: 56px 0;
}

.ehf-olcum-philosophy-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.ehf-olcum-philosophy-mark {
  margin: 0 0 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ehf-olcum-philosophy-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.ehf-olcum-philosophy-copy p {
  margin: 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.ehf-olcum-philosophy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ehf-olcum-philosophy-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ehf-olcum-philosophy-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #9fe0cf;
}

.ehf-olcum-philosophy-list strong {
  font-size: 1rem;
}

.ehf-olcum-philosophy-list span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.ehf-olcum-bottom {
  background: #f4f5f7;
  padding: 48px 0 64px;
}

.ehf-olcum-bottom-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 18px;
}

.ehf-olcum-cta-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ehf-line);
}

.ehf-olcum-cta-photo {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.ehf-olcum-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 28px 24px;
}

.ehf-olcum-cta-copy h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.ehf-olcum-stats-panel {
  background: #fff;
  border: 1px solid var(--ehf-line);
  border-radius: 18px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.ehf-olcum-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ehf-olcum-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ehf-olcum-stats-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ehf-olcum-accent-soft);
  color: #1f6f5f;
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.ehf-olcum-stats strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.ehf-olcum-stats span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5c6570;
}

.ehf-olcum-stats-tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a919c;
  text-align: right;
}

/* ——— System ——— */
.ehf-system {
  padding: 72px 0 56px;
  background: #fff;
}

.ehf-system-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: start;
}

.ehf-system-step {
  text-align: center;
  position: relative;
  padding: 8px 4px;
}

.ehf-system-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -6px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #c9ced6;
  border-right: 2px solid #c9ced6;
  transform: rotate(45deg);
}

.ehf-system-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid var(--ehf-line);
  background: var(--ehf-soft);
  color: var(--ehf-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.ehf-system-step strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ehf-ink);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ehf-system-n {
  display: block;
  font-size: 0.68rem;
  font-weight: 650;
  color: var(--ehf-muted);
  margin-bottom: 2px;
  letter-spacing: 0.08em;
}

.ehf-system-cycle .ehf-system-step-loop .ehf-system-ico {
  box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.35);
}

.ehf-system-cycle-note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 1.4rem;
  color: #f58220;
  font-weight: 700;
}

.ehf-why {
  padding: 72px 0 56px;
  background: #f7f8fa;
}

.ehf-why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ehf-why-card {
  background: #fff;
  border: 1px solid var(--ehf-line, #e6e8ec);
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}

.ehf-why-n {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ehf-muted);
}

.ehf-why-ico {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 130, 32, 0.12);
  color: #d96a12;
}

.ehf-why-card strong {
  font-size: 1rem;
  line-height: 1.3;
}

.ehf-why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #5c6570;
  line-height: 1.45;
}

.ehf-experience {
  padding: 64px 0 56px;
  background: #fff;
}

.ehf-xp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ehf-xp-card {
  margin: 0;
  padding: 24px 22px;
  background: #f7f8fa;
  border-left: 3px solid #f58220;
}

.ehf-xp-card p {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #1f2430;
}

.ehf-xp-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ehf-xp-card strong { font-size: 0.95rem; }
.ehf-xp-card span { font-size: 0.82rem; color: #5c6570; }
.ehf-xp-service {
  margin-top: 6px !important;
  font-weight: 600;
  color: #d96a12 !important;
}

@media (max-width: 1100px) {
  .ehf-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .ehf-why-grid,
  .ehf-xp-grid { grid-template-columns: 1fr; }
}

/* ——— Merkezler ——— */
.ehf-merkezler {
  padding: 0 0 0;
  background: #fff;
}

.ehf-merkezler > .ehf-wrap {
  padding-top: 64px;
  padding-bottom: 8px;
}

.ehf-merkez-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ehf-merkez-list li {
  border: 1px solid var(--ehf-line);
  border-radius: var(--ehf-pill);
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ehf-ink-soft);
  background: var(--ehf-soft);
}

/* Landing hero */
.ehf-merkez-hero {
  position: relative;
  min-height: min(68vh, 620px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ehf-merkez-hero-media,
.ehf-merkez-hero-shade {
  position: absolute;
  inset: 0;
}

.ehf-merkez-hero-media {
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
}

.ehf-merkez-hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.82) 0%, rgba(10, 10, 12, 0.55) 48%, rgba(10, 10, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.25) 0%, rgba(10, 10, 12, 0.72) 100%);
}

.ehf-merkez-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
}

.ehf-merkez-hero-copy {
  max-width: 640px;
}

.ehf-merkez-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ehf-merkez-hero-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.ehf-merkez-hero-pills {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ehf-merkez-hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.ehf-merkez-hero-pill-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.ehf-merkez-hero-pills strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.15;
}

.ehf-merkez-hero-pills small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.78;
}

.ehf-merkez-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.ehf-merkez-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(18, 20, 23, 0.05);
  animation: ehfUp .55s ease both;
  animation-delay: var(--delay, 0s);
  transition: transform .22s ease, box-shadow .22s ease;
}

.ehf-merkez-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(18, 20, 23, 0.1);
}

.ehf-merkez-card-premium {
  border-color: #d7c7ad;
}

.ehf-merkez-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e6ec;
}

.ehf-merkez-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.ehf-merkez-card:hover .ehf-merkez-card-media img {
  transform: scale(1.05);
}

.ehf-merkez-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1a1c20;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ehf-merkez-badge i {
  font-size: 0.7rem;
  color: #444;
}

.ehf-merkez-card-soon .ehf-merkez-badge {
  background: #121417;
  color: #fff;
}

.ehf-merkez-card-soon .ehf-merkez-badge i {
  color: #fff;
}

.ehf-merkez-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 18px;
  flex: 1;
}

.ehf-merkez-card-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.ehf-merkez-pos {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2430;
  line-height: 1.35;
}

.ehf-merkez-desc {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5c6570;
}

.ehf-merkez-tags {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.ehf-merkez-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  color: #3a414c;
}

.ehf-merkez-tags i {
  width: 18px;
  text-align: center;
  color: #6b7280;
  font-size: 0.82rem;
}

.ehf-merkez-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 8px;
}

.ehf-merkez-btn {
  padding: 10px 16px;
  font-size: 0.86rem;
}

.ehf-merkez-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1f2430;
  text-decoration: none;
}

.ehf-merkez-link:hover {
  color: #000;
}

.ehf-merkez-link:focus-visible,
.ehf-merkez-btn:focus-visible {
  outline: 2px solid #121417;
  outline-offset: 3px;
}

/* Dark trust band */
.ehf-merkez-trustband {
  position: relative;
  margin-top: 56px;
  color: #fff;
  overflow: hidden;
}

.ehf-merkez-trustband-media,
.ehf-merkez-trustband-shade {
  position: absolute;
  inset: 0;
}

.ehf-merkez-trustband-media {
  background-size: cover;
  background-position: center;
}

.ehf-merkez-trustband-shade {
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.82) 55%, rgba(12, 12, 14, 0.7) 100%);
}

.ehf-merkez-trustband-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}

.ehf-merkez-trustband-quote {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  font-weight: 750;
  max-width: 16ch;
}

.ehf-merkez-trustband-brand {
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.ehf-merkez-trust-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ehf-merkez-trust-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.ehf-merkez-trust-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
}

.ehf-merkez-trust-stats strong {
  font-size: 1.55rem;
  line-height: 1;
  color: #fff;
}

.ehf-merkez-trust-stats span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

/* Decision guide */
.ehf-merkez-guide {
  background: #f3f4f6;
  padding: 36px 0 48px;
}

.ehf-merkez-guide-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ehf-merkez-guide-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
}

.ehf-merkez-guide-ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e4e6ea;
  color: #1f2430;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(18, 20, 23, 0.05);
}

.ehf-merkez-guide-grid strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.3;
}

.ehf-merkez-guide-grid p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5c6570;
}

/* ——— Ekip ——— */
.ehf-ekip {
  padding: 0;
  background: #fff;
}

.ehf-ekip-hero {
  position: relative;
  min-height: min(70vh, 620px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ehf-ekip-hero-media,
.ehf-ekip-hero-shade {
  position: absolute;
  inset: 0;
}

.ehf-ekip-hero-media {
  background-size: cover;
  background-position: center 28%;
}

.ehf-ekip-hero-shade {
  background:
    linear-gradient(100deg, rgba(10, 10, 12, 0.88) 0%, rgba(10, 10, 12, 0.5) 55%, rgba(10, 10, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.72) 100%);
}

.ehf-ekip-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 28px;
  align-items: end;
  padding: 72px 0 52px;
}

.ehf-ekip-hero-copy h1 {
  margin: 0 0 16px;
  max-width: 16ch;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
}

.ehf-ekip-hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.ehf-ekip-hero-aside {
  justify-self: end;
  max-width: 14rem;
  text-align: right;
}

.ehf-ekip-hero-aside-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.ehf-ekip-hero-aside-quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 650;
}

.ehf-ekip-hero-aside span {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.7;
}

.ehf-ekip-leader,
.ehf-ekip-structure,
.ehf-ekip-managers,
.ehf-ekip-trainers,
.ehf-ekip-culture,
.ehf-ekip-final {
  padding: 64px 0;
}

.ehf-ekip-leader { background: #fff; }
.ehf-ekip-structure { background: var(--ehf-soft); }
.ehf-ekip-managers { background: #fff; }
.ehf-ekip-trainers { background: var(--ehf-soft); }
.ehf-ekip-culture { background: #fff; }
.ehf-ekip-final { background: var(--ehf-soft); padding-bottom: 80px; }

.ehf-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.ehf-text-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ehf-ink);
  text-decoration: none;
  white-space: nowrap;
}

.ehf-ekip-leader-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.ehf-ekip-leader-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #d8dde3;
}

.ehf-ekip-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ehf-ekip-leader-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.ehf-ekip-leader-title {
  margin: 0;
  font-weight: 700;
  color: #1f2430;
}

.ehf-ekip-leader-role {
  margin: 4px 0 14px;
  font-size: 0.92rem;
  font-weight: 650;
  color: #8a7340;
}

.ehf-ekip-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ehf-ekip-pillars li {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
}

.ehf-ekip-pillar-ico {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4efe4;
  color: #8a7340;
  font-size: 0.85rem;
}

.ehf-ekip-pillars strong {
  font-size: 0.92rem;
}

.ehf-ekip-pillars span {
  font-size: 0.82rem;
  color: #5c6570;
}

.ehf-ekip-structure-grid {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ehf-ekip-structure-grid li {
  background: #fff;
  border: 1px solid var(--ehf-line);
  border-radius: 14px;
  padding: 20px 16px;
}

.ehf-ekip-structure-n {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #8a7340;
  letter-spacing: 0.04em;
}

.ehf-ekip-structure-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.ehf-ekip-structure-grid p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5c6570;
}

.ehf-ekip-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ehf-ekip-card-grid-mgr {
  grid-template-columns: repeat(4, 1fr);
}

.ehf-ekip-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ehf-line);
  border-radius: 16px;
  overflow: hidden;
  animation: ehfUp .55s ease both;
  animation-delay: var(--delay, 0s);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ehf-ekip-card[hidden] { display: none !important; }

.ehf-ekip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 20, 23, 0.08);
}

.ehf-ekip-card-mgr {
  border-color: #e5d9c3;
}

.ehf-ekip-card-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8ecef;
}

.ehf-ekip-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}

.ehf-ekip-card:hover .ehf-ekip-card-media img {
  transform: scale(1.04);
}

.ehf-ekip-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
  flex: 1;
}

.ehf-ekip-card-body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
}

.ehf-ekip-card-role {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 650;
  color: #3a414c;
}

.ehf-ekip-card-loc {
  margin: 0;
  font-size: 0.8rem;
  color: #5c6570;
}

.ehf-ekip-card-loc i {
  color: #8a7340;
  margin-right: 4px;
}

.ehf-ekip-card-tags {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ehf-ekip-card-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4efe4;
  color: #6a5830;
}

.ehf-ekip-card-cta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ehf-ink);
  text-decoration: none;
}

.ehf-ekip-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--ehf-line);
}

.ehf-ekip-filters select,
.ehf-ekip-filters input {
  flex: 1 1 160px;
  min-height: 42px;
  border: 1px solid var(--ehf-line);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.9rem;
  background: #fff;
}

.ehf-ekip-statsband {
  background: #16181c;
  color: #fff;
  padding: 56px 0;
}

.ehf-ekip-stats {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.ehf-ekip-stats strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 6px;
}

.ehf-ekip-stats span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.ehf-ekip-culture-words {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.ehf-ekip-culture-words li {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #8a7340;
}

.ehf-ekip-final-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.ehf-ekip-final-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.ehf-ekip-final-copy p {
  margin: 0 0 20px;
  color: #5c6570;
  line-height: 1.55;
}

.ehf-ekip-final-quote {
  margin: 0;
  padding: 28px 24px;
  border-radius: 16px;
  background: #16181c;
  color: #fff;
}

.ehf-ekip-final-quote p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 650;
}

.ehf-ekip-final-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.ehf-ekip-actions {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ehf-ekip-visuals {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.ehf-ekip-visual {
  margin: 0;
  border-radius: var(--ehf-radius);
  overflow: hidden;
  background: #d8dde3;
  animation: ehfUp .6s ease both;
  animation-delay: var(--delay, 0s);
  min-height: 280px;
}

.ehf-ekip-visual:first-child { min-height: 360px; }

.ehf-ekip-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Profil detay — portre düzeni (tam ekran cover kullanılmaz) */
.ehf-ekip-profil-hero {
  padding: 36px 0 48px;
  background: linear-gradient(180deg, #f4f5f7 0%, #fff 70%);
}

.ehf-breadcrumb-ink {
  opacity: 1;
  color: var(--ehf-muted);
  margin-bottom: 28px;
}

.ehf-breadcrumb-ink a {
  color: var(--ehf-ink-soft);
}

.ehf-ekip-profil-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 36px 48px;
  align-items: center;
}

.ehf-ekip-profil-layout.is-founder {
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
}

.ehf-ekip-profil-photo {
  margin: 0;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: #e8ecef;
  box-shadow: 0 18px 40px rgba(18, 20, 23, 0.1);
}

.ehf-ekip-profil-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.ehf-ekip-profil-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ehf-ekip-profil-role {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #8a7340;
}

.ehf-ekip-profil-loc {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: #5c6570;
}

.ehf-ekip-profil-loc i {
  color: #8a7340;
  margin-right: 6px;
}

.ehf-ekip-profil-copy .ehf-section-lead {
  margin: 0 0 22px;
  max-width: 38rem;
}

.ehf-ekip-leader-photo img {
  object-position: center 12%;
}

/* ——— Blog & Video ——— */
.ehf-blog {
  --ehf-blog-accent: #2f9f86;
  padding: 64px 0;
  background: #fff;
}

.ehf-blog-hero {
  position: relative;
  min-height: min(70vh, 620px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ehf-blog-hero-media,
.ehf-blog-hero-shade {
  position: absolute;
  inset: 0;
}

.ehf-blog-hero-media {
  background-size: cover;
  background-position: center 20%;
}

.ehf-blog-hero-shade {
  background:
    linear-gradient(105deg, rgba(8, 12, 14, 0.9) 0%, rgba(8, 12, 14, 0.55) 55%, rgba(8, 12, 14, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 12, 14, 0.2) 0%, rgba(8, 12, 14, 0.72) 100%);
}

.ehf-blog-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 28px;
  align-items: end;
  padding: 72px 0 52px;
}

.ehf-blog-hero-copy h1 {
  margin: 0 0 16px;
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.1;
  font-weight: 800;
}

.ehf-blog-hero-copy h1 .ehf-accent {
  color: #7fd4bc;
}

.ehf-blog-hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.ehf-blog-hero-quote {
  justify-self: end;
  max-width: 15rem;
  text-align: right;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ehf-blog-hero-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 650;
}

.ehf-blog-hero-quote span {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0.75;
}

.ehf-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.ehf-blog-featured-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.ehf-blog-featured-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 14, 0.15) 0%, rgba(8, 12, 14, 0.82) 100%);
}

.ehf-blog-featured-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
}

.ehf-blog-featured-label {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fe0cf;
}

.ehf-blog-featured-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

.ehf-blog-featured-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.ehf-blog-featured-cta {
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.ehf-blog-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.ehf-blog-filters {
  margin: 8px 0 28px;
  overflow-x: auto;
}

.ehf-blog-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ehf-blog-filter {
  appearance: none;
  border: 1px solid var(--ehf-line);
  background: #f3f4f6;
  color: #3a414c;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ehf-blog-filter.is-active,
.ehf-blog-filter:hover {
  background: #16181c;
  border-color: #16181c;
  color: #fff;
}

.ehf-blog-split {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.ehf-blog-col-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ehf-blog-col-head h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.ehf-blog-col-head p {
  margin: 0;
  font-size: 0.88rem;
  color: #5c6570;
}

.ehf-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ehf-blog-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--ehf-line);
  border-radius: var(--ehf-radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: ehfUp .55s ease both;
  animation-delay: var(--delay, 0s);
}

.ehf-blog-card[hidden] { display: none !important; }

.ehf-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 28, 36, 0.08);
}

.ehf-blog-photo {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.ehf-blog-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ehf-blog-cat {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ehf-blog-accent);
}

.ehf-blog-body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.ehf-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ehf-muted);
}

.ehf-blog-video-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ehf-blog-video-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--ehf-line);
  background: #fff;
  transition: border-color .15s ease, transform .15s ease;
}

.ehf-blog-video-row:hover {
  border-color: #cfd5dc;
  transform: translateY(-1px);
}

.ehf-blog-video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #e8ecef;
}

.ehf-blog-video-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.ehf-blog-newsletter {
  background: #1a2b2b;
  color: #fff;
  padding: 36px 0;
}

.ehf-blog-newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr auto;
  gap: 20px;
  align-items: center;
}

.ehf-blog-newsletter-copy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ehf-blog-newsletter-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #9fe0cf;
  flex-shrink: 0;
}

.ehf-blog-newsletter-copy h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.ehf-blog-newsletter-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.ehf-blog-newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ehf-blog-newsletter-form input {
  flex: 1 1 200px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
}

.ehf-blog-newsletter-aside {
  margin: 0;
  font-family: var(--ehf-script);
  font-size: 1.35rem;
  color: #9fe0cf;
  max-width: 10rem;
  line-height: 1.2;
}

.ehf-blog-why {
  padding: 64px 0;
  background: #fff;
}

.ehf-blog-why-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.ehf-blog-why-inner > div > h2 {
  margin: 0 0 22px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.ehf-blog-why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ehf-blog-why-grid li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ehf-blog-why-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f6f1;
  color: #1f6f5f;
}

.ehf-blog-why-grid strong {
  font-size: 1rem;
}

.ehf-blog-why-grid p {
  margin: 0;
  font-size: 0.88rem;
  color: #5c6570;
  line-height: 1.45;
}

.ehf-blog-why-quote {
  background: var(--ehf-soft);
  border-radius: 16px;
  padding: 28px 24px;
}

.ehf-blog-why-marks {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: #2f9f86;
  font-weight: 700;
}

.ehf-blog-why-quote p {
  margin: 8px 0 16px;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 650;
}

.ehf-blog-why-quote span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #5c6570;
}

/* ——— CTA band ——— */
.ehf-cta-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.ehf-cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 16, 0.78) 0%, rgba(10, 12, 16, 0.45) 100%);
}

.ehf-cta-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  max-width: 40rem;
}

.ehf-cta-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ehf-cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ehf-cta-inner > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.ehf-lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  max-width: 480px;
}

.ehf-lead-form input {
  flex: 1 1 220px;
  border: 0;
  border-radius: var(--ehf-pill);
  padding: 13px 18px;
  font-family: var(--ehf-font);
  font-size: 0.92rem;
}

.ehf-cta-phone {
  margin: 16px 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.ehf-cta-phone a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* ——— Footer ——— */
.ehf-footer {
  background: #fff;
  color: var(--ehf-ink);
  border-top: 1px solid var(--ehf-line);
  padding: 28px 0 0;
}

.ehf-footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 22px;
}

.ehf-logo-footer .ehf-logo-mark { font-size: 1rem; }

.ehf-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 4px;
  font-size: 0.84rem;
  font-weight: 550;
}

.ehf-footer-nav a {
  text-decoration: none;
  color: var(--ehf-ink-soft);
  padding: 4px 8px;
}

.ehf-footer-nav a:hover { color: var(--ehf-ink); }

.ehf-footer-sep {
  color: #c5cad3;
  padding: 0 2px;
}

.ehf-social-links {
  display: flex;
  gap: 8px;
}

.ehf-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ehf-line);
  color: var(--ehf-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.ehf-social-links a:hover {
  background: var(--ehf-ink);
  color: #fff;
  border-color: var(--ehf-ink);
}

.ehf-footer-bottom {
  border-top: 1px solid var(--ehf-line);
  padding: 14px 0;
}

.ehf-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ehf-muted);
}

.ehf-footer-bottom-inner p { margin: 0; }

.ehf-footer-tagline {
  font-style: italic;
}

/* WhatsApp */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.wa-float:hover {
  background: #1ebe57;
  color: #fff;
  transform: scale(1.06);
}

/* Inner pages (shared) */
.ehf-inner { padding: 48px 0 64px; }
.ehf-muted { color: var(--ehf-muted); }

@keyframes ehfUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ehfFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ehfKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (max-width: 1100px) {
  .ehf-nav-toggle { display: inline-flex; }
  .ehf-header-cta { display: none; }
  .ehf-header-inner {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    gap: 12px;
  }
  .ehf-logo-img {
    height: 38px;
    max-width: min(168px, 52vw);
  }
  .ehf-lang-flag-code { display: none; }
  .ehf-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    border-bottom: 1px solid var(--ehf-line);
    padding: 12px 16px 16px;
    display: none;
    justify-self: stretch;
  }
  .ehf-nav.is-open { display: block; }
  .ehf-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .ehf-nav-list a::after { display: none; }

  .ehf-hero-inner { grid-template-columns: 1fr; padding: 56px 0 48px; }
  .ehf-hero-copy h1 { max-width: none; }
  .ehf-hero-aside { text-align: left; }

  .ehf-svc-split { grid-template-columns: 1fr; gap: 48px; }
  .ehf-svc-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .ehf-olcum-grid { grid-template-columns: repeat(2, 1fr); }
  .ehf-olcum-intro,
  .ehf-olcum-hero-inner,
  .ehf-olcum-philosophy-inner,
  .ehf-olcum-bottom-inner,
  .ehf-olcum-cta-panel { grid-template-columns: 1fr; }
  .ehf-olcum-philosophy-list { grid-template-columns: 1fr; }
  .ehf-olcum-hero-quote { justify-self: start; text-align: left; }
  .ehf-olcum-filters { top: 0; }
  .ehf-merkez-grid { grid-template-columns: repeat(2, 1fr); }
  .ehf-merkez-trustband-inner { grid-template-columns: 1fr; gap: 24px; }
  .ehf-merkez-trust-stats { grid-template-columns: repeat(2, 1fr); }
  .ehf-merkez-guide-grid { grid-template-columns: 1fr; }
  .ehf-merkez-trustband-quote { max-width: none; }
  .ehf-ekip-visuals,
  .ehf-ekip-grid,
  .ehf-ekip-leader-grid,
  .ehf-ekip-structure-grid,
  .ehf-ekip-card-grid,
  .ehf-ekip-card-grid-mgr,
  .ehf-ekip-stats,
  .ehf-ekip-final-inner,
  .ehf-ekip-hero-inner,
  .ehf-ekip-profil-layout,
  .ehf-blog-grid,
  .ehf-blog-featured,
  .ehf-blog-split,
  .ehf-blog-hero-inner,
  .ehf-blog-newsletter-inner,
  .ehf-blog-why-inner,
  .ehf-blog-why-grid,
  .ehf-about-grid,
  .ehf-iletisim-grid,
  .ehf-iletisim-extra-grid,
  .ehf-giris-hero-inner,
  .ehf-giris-support-inner { grid-template-columns: 1fr; }
  .ehf-giris-features { grid-template-columns: 1fr; }
  .ehf-giris-account-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ehf-giris-support-quote { justify-self: start; text-align: left; }
  .ehf-iletisim-center-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ehf-iletisim-hero-pills { grid-template-columns: 1fr; }
  .ehf-iletisim-form-row { grid-template-columns: 1fr; }
  .ehf-iletisim-final-inner { flex-direction: column; align-items: flex-start; }
  .ehf-blog-hero-quote { justify-self: start; text-align: left; }
  .ehf-ekip-hero-aside { justify-self: start; text-align: left; }
  .ehf-section-head-row { flex-direction: column; align-items: flex-start; }
  .ehf-ekip-profil-photo {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .ehf-ekip-visual,
  .ehf-ekip-visual:first-child {
    min-height: 220px;
  }
  .ehf-system-track { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .ehf-system-step:not(:last-child)::after { display: none; }

  .ehf-footer-top {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .ehf-footer-nav { justify-content: flex-start; }
}

/* —— İletişim landing —— */
.ehf-iletisim-hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.ehf-iletisim-hero-media,
.ehf-iletisim-hero-shade {
  position: absolute;
  inset: 0;
}
.ehf-iletisim-hero-media {
  background-size: cover;
  background-position: center;
}
.ehf-iletisim-hero-shade {
  background: linear-gradient(105deg, rgba(10, 14, 20, 0.82) 0%, rgba(10, 14, 20, 0.45) 55%, rgba(10, 14, 20, 0.25) 100%);
}
.ehf-iletisim-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}
.ehf-iletisim-hero-copy h1 {
  margin: 8px 0 16px;
  max-width: 16ch;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
}
.ehf-iletisim-hero-copy h1 .ehf-accent {
  color: #7fd4bc;
}
.ehf-iletisim-hero-lead {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.ehf-iletisim-hero-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}
.ehf-iletisim-hero-pills li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
.ehf-iletisim-hero-pill-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(127, 212, 188, 0.18);
  color: #7fd4bc;
  flex-shrink: 0;
}
.ehf-iletisim-hero-pills strong {
  display: block;
  font-size: 0.92rem;
}
.ehf-iletisim-hero-pills small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.ehf-iletisim-main {
  padding: 64px 0 40px;
  background: #fff;
}
.ehf-iletisim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: start;
}
.ehf-iletisim-form-col .ehf-section-head {
  margin-bottom: 24px;
}
.ehf-iletisim-form {
  display: grid;
  gap: 16px;
}
.ehf-iletisim-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ehf-iletisim-form .ehf-form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}
.ehf-iletisim-form .ehf-form-group input,
.ehf-iletisim-form .ehf-form-group select,
.ehf-iletisim-form .ehf-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(18, 20, 23, 0.14);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--ehf-ink);
}
.ehf-iletisim-form .ehf-form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.ehf-iletisim-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ehf-muted);
  line-height: 1.45;
}
.ehf-iletisim-consent input {
  margin-top: 3px;
}
.ehf-iletisim-submit {
  display: grid;
  gap: 8px;
  justify-items: start;
}
.ehf-iletisim-submit .ehf-btn {
  min-width: 180px;
}
.ehf-iletisim-submit p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ehf-muted);
}

.ehf-iletisim-aside {
  display: grid;
  gap: 22px;
}
.ehf-iletisim-direct-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.ehf-iletisim-direct-list li {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--ehf-line);
  border-radius: 14px;
  background: #fff;
}
.ehf-iletisim-direct-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ehf-soft);
  color: var(--ehf-ink);
  flex-shrink: 0;
}
.ehf-iletisim-direct-list strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ehf-muted);
  margin-bottom: 4px;
}
.ehf-iletisim-direct-list a {
  display: block;
  font-weight: 700;
  text-decoration: none;
}
.ehf-iletisim-direct-list a:hover {
  color: #2f9f86;
}
.ehf-iletisim-direct-list small {
  display: block;
  margin-top: 4px;
  color: var(--ehf-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  white-space: pre-line;
}
.ehf-iletisim-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.ehf-iletisim-map-head .ehf-kicker {
  margin: 0;
}
.ehf-iletisim-map-open {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: #2f9f86;
  white-space: nowrap;
}
.ehf-iletisim-map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ehf-line);
  min-height: 280px;
  background: var(--ehf-soft);
}

.ehf-iletisim-centers {
  padding: 48px 0 64px;
  background: var(--ehf-soft);
}
.ehf-iletisim-centers .ehf-section-head-row {
  margin-bottom: 28px;
}
.ehf-section-more {
  font-weight: 700;
  text-decoration: none;
  color: #2f9f86;
  white-space: nowrap;
}
.ehf-iletisim-center-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.ehf-iletisim-center-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.06);
  display: flex;
  flex-direction: column;
}
.ehf-iletisim-center-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ehf-iletisim-center-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ehf-iletisim-center-card:hover .ehf-iletisim-center-media img {
  transform: scale(1.04);
}
.ehf-iletisim-center-body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.ehf-iletisim-center-body h3 {
  margin: 0;
  font-size: 1.05rem;
}
.ehf-iletisim-center-body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ehf-muted);
  line-height: 1.45;
}
.ehf-iletisim-center-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ehf-ink);
}
.ehf-iletisim-center-phone.is-muted {
  color: var(--ehf-muted);
  font-weight: 500;
}
.ehf-iletisim-center-link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: #2f9f86;
}

.ehf-iletisim-extra {
  padding: 56px 0;
  background: #fff;
}
.ehf-iletisim-extra-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.ehf-iletisim-faq .ehf-section-head-row {
  margin-bottom: 14px;
}
.ehf-iletisim-faq .ehf-section-head-row h2 {
  margin: 0;
  font-size: 1.35rem;
}
.ehf-iletisim-faq-list .ehf-faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.ehf-iletisim-faq-list .ehf-faq-item summary::after {
  content: '+';
  font-weight: 700;
  color: var(--ehf-muted);
}
.ehf-iletisim-faq-list .ehf-faq-item[open] summary::after {
  content: '−';
}
.ehf-iletisim-social h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}
.ehf-iletisim-social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.ehf-iletisim-social-links a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ehf-soft);
  color: var(--ehf-ink);
  text-decoration: none;
  font-size: 1.15rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.ehf-iletisim-social-links a:hover {
  background: var(--ehf-ink);
  color: #fff;
}
.ehf-iletisim-social p {
  margin: 0;
  color: var(--ehf-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.ehf-iletisim-side-ctas {
  display: grid;
  gap: 12px;
}
.ehf-iletisim-side-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 16px;
  border-radius: 14px;
  background: var(--ehf-soft);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.ehf-iletisim-side-card:hover {
  transform: translateY(-2px);
}
.ehf-iletisim-side-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ehf-ink);
  flex-shrink: 0;
}
.ehf-iletisim-side-card strong {
  display: block;
  font-size: 0.98rem;
}
.ehf-iletisim-side-card small {
  display: block;
  margin-top: 2px;
  color: var(--ehf-muted);
  font-size: 0.82rem;
}

.ehf-iletisim-final {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.ehf-iletisim-final-media,
.ehf-iletisim-final-shade {
  position: absolute;
  inset: 0;
}
.ehf-iletisim-final-media {
  background-size: cover;
  background-position: center;
}
.ehf-iletisim-final-shade {
  background: linear-gradient(90deg, rgba(8, 10, 14, 0.82), rgba(8, 10, 14, 0.45));
}
.ehf-iletisim-final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0;
}
.ehf-iletisim-final-quote {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  max-width: 22ch;
  line-height: 1.25;
}
.ehf-iletisim-final-brand {
  margin: 0;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.8;
}

/* —— Giriş & Kayıt —— */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ehf-header-login {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ehf-ink);
  padding: 6px 4px;
}
.ehf-header-login:hover {
  color: #2f9f86;
}

.ehf-giris-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 56px 0 64px;
}
.ehf-giris-hero-media,
.ehf-giris-hero-shade {
  position: absolute;
  inset: 0;
}
.ehf-giris-hero-media {
  background-size: cover;
  background-position: center;
}
.ehf-giris-hero-shade {
  background: linear-gradient(100deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.55) 48%, rgba(8, 10, 14, 0.35) 100%);
}
.ehf-giris-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px);
  gap: 40px;
  align-items: center;
}
.ehf-giris-hero-copy h1 {
  margin: 8px 0 16px;
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
}
.ehf-giris-hero-lead {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.ehf-giris-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ehf-giris-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ehf-giris-feature-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(127, 212, 188, 0.16);
  color: #7fd4bc;
  flex-shrink: 0;
}
.ehf-giris-features strong {
  display: block;
  font-size: 0.9rem;
}
.ehf-giris-features small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.35;
}
.ehf-giris-quote {
  margin: 0;
  max-width: 22rem;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ehf-giris-quote p {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.ehf-giris-quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  opacity: 0.75;
}

.ehf-giris-card {
  background: #fff;
  color: var(--ehf-ink);
  border-radius: 18px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.ehf-giris-card h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  font-weight: 800;
}
.ehf-giris-card .alert {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.ehf-giris-card .alert-danger {
  background: #fde8e8;
  color: #8a1f1f;
}
.ehf-giris-card .alert-success {
  background: #e6f6ef;
  color: #1a5c45;
}
.ehf-giris-card .alert p {
  margin: 0;
}
.ehf-giris-form {
  display: grid;
  gap: 12px;
}
.ehf-giris-field {
  position: relative;
}
.ehf-giris-field input {
  width: 100%;
  padding: 13px 44px 13px 44px;
  border: 1px solid rgba(18, 20, 23, 0.14);
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
.ehf-giris-field input:focus {
  outline: 2px solid rgba(47, 159, 134, 0.35);
  border-color: #2f9f86;
}
.ehf-giris-field-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ehf-muted);
  pointer-events: none;
}
.ehf-giris-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--ehf-muted);
  cursor: pointer;
  padding: 6px;
}
.ehf-giris-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
}
.ehf-giris-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ehf-muted);
  cursor: pointer;
}
.ehf-giris-forgot {
  color: #2f9f86;
  font-weight: 600;
  text-decoration: none;
}
.ehf-giris-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.ehf-giris-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: var(--ehf-muted);
  font-size: 0.85rem;
}
.ehf-giris-divider::before,
.ehf-giris-divider::after {
  content: '';
  height: 1px;
  background: var(--ehf-line);
}
.ehf-giris-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ehf-giris-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--ehf-line);
  background: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ehf-ink-soft);
  cursor: not-allowed;
  opacity: 0.72;
}
.ehf-giris-register {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ehf-muted);
}
.ehf-giris-register a {
  display: inline-block;
  margin-left: 4px;
  font-weight: 700;
  color: var(--ehf-ink);
  text-decoration: none;
}
.ehf-giris-register a:hover {
  color: #2f9f86;
}

.ehf-giris-accounts {
  padding: 64px 0 72px;
  background: #fff;
}
.ehf-giris-account-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.ehf-giris-account-card {
  border: 1px solid rgba(18, 20, 23, 0.06);
  border-radius: 16px;
  overflow: visible;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.ehf-giris-account-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.ehf-giris-account-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ehf-giris-account-ico {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ehf-ink);
  border: 1px solid var(--ehf-line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.ehf-giris-account-body {
  padding: 36px 18px 20px;
  display: grid;
  gap: 10px;
  text-align: center;
  flex: 1;
}
.ehf-giris-account-body h3 {
  margin: 0;
  font-size: 1.15rem;
}
.ehf-giris-account-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ehf-muted);
  line-height: 1.5;
}
.ehf-giris-account-cta {
  margin-top: 6px;
  font-weight: 800;
  text-decoration: none;
  color: var(--ehf-ink);
}
.ehf-giris-account-cta:hover {
  color: #2f9f86;
}
.ehf-giris-account-detail {
  font-size: 0.88rem;
  color: var(--ehf-muted);
  text-decoration: none;
}
.ehf-giris-account-detail:hover {
  color: #2f9f86;
}

.ehf-giris-support {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 56px 0;
}
.ehf-giris-support-media,
.ehf-giris-support-shade {
  position: absolute;
  inset: 0;
}
.ehf-giris-support-media {
  background-size: cover;
  background-position: center;
}
.ehf-giris-support-shade {
  background: linear-gradient(100deg, rgba(12, 28, 32, 0.92) 0%, rgba(12, 28, 32, 0.78) 55%, rgba(12, 28, 32, 0.55) 100%);
}
.ehf-giris-support-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.ehf-giris-support-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  max-width: 14ch;
  line-height: 1.15;
}
.ehf-giris-support-copy p {
  margin: 0 0 20px;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.84);
}
.ehf-giris-support-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.ehf-giris-support-contacts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ehf-giris-support-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.ehf-giris-support-contacts strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2px;
}
.ehf-giris-support-contacts a {
  display: block;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}
.ehf-giris-support-contacts small {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  opacity: 0.75;
}
.ehf-giris-support-quote {
  justify-self: end;
  max-width: 16rem;
  text-align: right;
  padding: 20px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ehf-giris-support-quote p {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.ehf-giris-support-quote span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  opacity: 0.75;
}

/* —— Blog single —— */
.ehf-blog-single-hero {
  padding: 48px 0 28px;
  background: linear-gradient(180deg, #f3f7f5 0%, #fff 100%);
  border-bottom: 1px solid rgba(2, 32, 50, 0.06);
}
.ehf-blog-single-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  max-width: 42rem;
}
.ehf-blog-single-body { padding: 40px 0 80px; }
.ehf-blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}
.ehf-blog-single-content .blog-post-img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.ehf-blog-single-html {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1a2b33;
}
.ehf-blog-single-html p { margin: 0 0 1.1em; }
.ehf-blog-single-html img { max-width: 100%; height: auto; }
.ehf-blog-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
.ehf-blog-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2f9f86;
  background: rgba(47, 159, 134, 0.1);
  border-radius: 4px;
}
.ehf-blog-single-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(2, 32, 50, 0.08);
  border-bottom: 1px solid rgba(2, 32, 50, 0.08);
}
.ehf-blog-single-author img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}
.ehf-blog-single-author h3 {
  margin: 0;
  font-size: 1.15rem;
}
.ehf-blog-single-comments { margin-top: 40px; }
.ehf-blog-single-comments h2 {
  margin: 0 0 20px;
  font-size: 1.35rem;
}
.ehf-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ehf-comment {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(2, 32, 50, 0.06);
}
.ehf-comment-reply { margin-left: 48px; }
.ehf-comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ehf-comment h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ehf-comment-meta {
  font-size: 0.8rem;
  color: #6b7a82;
  margin-bottom: 8px;
}
.ehf-comment p { margin: 0; line-height: 1.55; }
.ehf-blog-comment-form { margin-top: 36px; }
.ehf-blog-comment-form h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}
.ehf-form-stack { display: grid; gap: 14px; }
.ehf-form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}
.ehf-form-group input,
.ehf-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(2, 32, 50, 0.15);
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
.ehf-alert {
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.9rem;
}
.ehf-alert-danger {
  background: #fde8e8;
  color: #8a1f1f;
}
.ehf-alert-ok {
  background: #e6f6ef;
  color: #1a5c45;
}
.ehf-blog-aside-box {
  padding: 20px;
  background: #f3f7f5;
  border-radius: 4px;
}
.ehf-blog-aside-box h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}
.ehf-blog-aside-cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ehf-blog-aside-cats li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(2, 32, 50, 0.06);
  font-size: 0.9rem;
}
.ehf-blog-aside-back {
  margin: 20px 0 0;
  font-size: 0.95rem;
}
.ehf-blog-aside-back a { color: #2f9f86; font-weight: 600; }

@media (max-width: 900px) {
  .ehf-blog-single-layout { grid-template-columns: 1fr; }
  .ehf-comment-reply { margin-left: 24px; }
}

@media (max-width: 640px) {
  .ehf-svc-grid,
  .ehf-svc-grid-wide,
  .ehf-olcum-grid,
  .ehf-merkez-grid,
  .ehf-ekip-card-grid,
  .ehf-blog-grid,
  .ehf-iletisim-center-grid,
  .ehf-giris-account-grid,
  .ehf-giris-social,
  .ehf-system-track { grid-template-columns: 1fr; }

  .ehf-hero { min-height: 78vh; }
  .ehf-hero-actions .ehf-btn { width: 100%; }

  .wa-float { left: 16px; bottom: 16px; width: 52px; height: 52px; }
}
