/* ============================================================
   Hosting D?nyas? ? v4 (Jemars tarz? a??k tema)
   Euclid Circular B + lacivert/mavi palet + ferah kartlar
   ============================================================ */

@import url('https://fonts.cdnfonts.com/css/euclid-circular-b');

:root {
  /* Palet ? referans g?rsellerdeki a??k tema */
  --hd-blue: #2568EF;
  --hd-blue-hover: #1B54C9;
  --hd-blue-soft: #EAF1FF;
  --hd-navy: #172B70;
  --hd-text: #64748B;
  --hd-text-light: #94A3B8;
  --hd-border: #E7EDF8;
  --hd-bg-tint: #F5F8FE;
  --hd-bg-tint-2: #EEF4FF;
  --hd-white: #FFFFFF;
  --hd-green: #2AC769;
  --hd-green-soft: #E8F9EF;
  --hd-orange: #F79009;
  --hd-orange-soft: #FFF4E0;

  --hd-radius: 14px;
  --hd-radius-sm: 10px;
  --hd-shadow-sm: 0 2px 8px rgba(37, 80, 180, 0.05);
  --hd-shadow-md: 0 8px 24px rgba(37, 80, 180, 0.08);
  --hd-shadow-lg: 0 20px 50px rgba(37, 80, 180, 0.12);

  --hd-font: 'Euclid Circular B', 'Euclid Circular A', 'Segoe UI', -apple-system, sans-serif;
  --hd-container: 1200px;
}

/* ---------- Scrollbar (tema uyumlu) ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: #4f7fe0 var(--hd-bg-tint);
}
* {
  scrollbar-width: thin;
  scrollbar-color: #4f7fe0 var(--hd-bg-tint);
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: var(--hd-bg-tint);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3f72d9 0%, var(--hd-blue-hover) 100%);
  border-radius: 999px;
  border: 2px solid var(--hd-bg-tint);
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--hd-blue-hover) 0%, #143fa0 100%);
  border: 2px solid var(--hd-bg-tint);
  background-clip: padding-box;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
body.hd-auth,
body.hd-auth * {
  scrollbar-color: #3f72d9 #e8eef8;
}
body.hd-auth *::-webkit-scrollbar-track {
  background: #e8eef8;
}
body.hd-auth *::-webkit-scrollbar-thumb {
  border-color: #e8eef8;
}
.hd-login-panel::-webkit-scrollbar,
.hd-login.is-register .hd-login-panel::-webkit-scrollbar {
  width: 8px;
}
.hd-login-panel::-webkit-scrollbar-thumb,
.hd-login.is-register .hd-login-panel::-webkit-scrollbar-thumb {
  border-width: 2px;
}

/* ---------- Taban ---------- */
html { scroll-behavior: smooth; }

body,
body.primary-bg-color {
  font-family: var(--hd-font) !important;
  font-size: 16px;
  line-height: 1.65;
  color: var(--hd-text);
  background: var(--hd-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hd-font) !important;
  font-weight: 600;
  color: var(--hd-navy);
  line-height: 1.3;
}

a { color: var(--hd-blue); }
a:hover { color: var(--hd-blue-hover); text-decoration: none; }

.container,
#header .container,
#footer .container {
  max-width: var(--hd-container);
}

/* ---------- Butonlar ---------- */
.btn {
  font-family: var(--hd-font) !important;
  font-weight: 500;
  border-radius: var(--hd-radius-sm);
  transition: all 0.15s ease;
}
.btn-primary,
.btn.btn-primary,
a.btn-primary {
  background: var(--hd-blue) !important;
  border: 1px solid var(--hd-blue) !important;
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 12px rgba(37, 104, 239, 0.25);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--hd-blue-hover) !important;
  border-color: var(--hd-blue-hover) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(37, 104, 239, 0.3);
}
.btn-outline-primary {
  color: var(--hd-blue) !important;
  border: 1px solid #C7D8F9 !important;
  background: #fff !important;
  padding: 0.6rem 1.5rem;
}
.btn-outline-primary:hover {
  background: var(--hd-blue-soft) !important;
  border-color: var(--hd-blue) !important;
  color: var(--hd-blue) !important;
}
.btn-soft {
  background: var(--hd-blue-soft) !important;
  color: var(--hd-blue) !important;
  border: 1px solid transparent !important;
  padding: 0.6rem 1.5rem;
}
.btn-soft:hover { background: #DCE9FF !important; color: var(--hd-blue-hover) !important; }
.btn-white {
  background: #fff !important;
  color: var(--hd-navy) !important;
  border: 1px solid #fff !important;
  padding: 0.6rem 1.5rem;
}
.btn-white:hover { background: var(--hd-bg-tint) !important; }
.btn-ghost-light {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  padding: 0.6rem 1.5rem;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12) !important; }
.btn-lg { padding: 0.8rem 2rem; font-size: 1.02rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.875rem; }

/* Rozetler */
.hd-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.28rem 0.8rem;
}
.hd-pill-green { background: var(--hd-green-soft); color: #17914B; }
.hd-pill-blue { background: var(--hd-blue-soft); color: var(--hd-blue); }
.hd-pill-orange { background: var(--hd-orange-soft); color: #B7690A; }

/* ---------- Promo bar ---------- */
.hd-promo {
  background: var(--hd-navy);
  color: rgba(255,255,255,0.9);
  font-size: 0.84rem;
}
.hd-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.hd-promo code {
  background: var(--hd-blue);
  color: #fff;
  padding: 0.1rem 0.55rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--hd-font);
}
.hd-promo a { color: #fff; font-weight: 600; text-decoration: underline; }

/* ---------- Topbar (Odeaweb yap?s?: ayr?l? h?creler) ---------- */
.hd-topbar {
  background: #fff;
  border-bottom: 1px solid var(--hd-border);
  color: var(--hd-text);
  font-size: 0.8rem;
  line-height: 1.2;
  position: relative;
  z-index: 1050;
}
.hd-topbar a,
.hd-topbar .hd-topbar-btn {
  color: var(--hd-text);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.hd-topbar a:hover,
.hd-topbar .hd-topbar-btn:hover { color: var(--hd-blue); }
.hd-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 0;
}
.hd-topbar-left, .hd-topbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hd-topbar-left > *,
.hd-topbar-right > * {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-right: 1px solid var(--hd-border);
  min-height: 2.15rem;
}
.hd-topbar-left > *:first-child { padding-left: 0; }
.hd-topbar-right > *:first-child { border-left: 1px solid var(--hd-border); }
.hd-topbar-right > *:last-child { border-right: 0; padding-right: 0; }
.hd-topbar-btn {
  background: transparent;
  border: 0;
  font-family: var(--hd-font);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
}
.hd-topbar-btn b { color: var(--hd-navy); font-weight: 600; }
.hd-topbar-btn .fa-chevron-down { font-size: 0.55rem; color: var(--hd-text-light); }
.hd-topbar-right > .hd-topbar-account,
.hd-topbar-right > a.hd-topbar-account {
  margin-left: 0.25rem;
  padding: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  align-self: center;
  min-height: 0;
}
.hd-topbar-right > a.hd-topbar-account-guest {
  margin-left: calc(0.25rem + 5px) !important;
}
/* Giri? yapm??: sadece butonda mavi arka plan (wrapper ?i?mesin) */
.hd-topbar-account.dropdown {
  display: inline-flex !important;
  align-items: stretch;
  background: transparent !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}
.hd-topbar-account-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  height: auto;
  min-height: 2.15rem;
  padding: 0.35rem 0.9rem !important;
  background: var(--hd-blue) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.8rem;
  text-decoration: none !important;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.hd-topbar-account-btn:hover,
.hd-topbar-account-btn:focus,
.hd-topbar-account.dropdown:hover > .hd-topbar-account-btn {
  background: var(--hd-green) !important;
  color: #fff !important;
  outline: none;
}
.hd-topbar-account-btn .fa-chevron-down {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.55rem;
}
/* Giri? yapmam??: arka plan yok */
a.hd-topbar-account-guest {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  height: auto;
  min-height: 2.15rem;
  padding: 0.35rem 0.85rem !important;
  background: transparent !important;
  color: var(--hd-text) !important;
  font-weight: 600 !important;
  font-size: 0.8rem;
  text-decoration: none !important;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: color .15s;
}
a.hd-topbar-account-guest:hover,
a.hd-topbar-account-guest:focus {
  background: transparent !important;
  color: var(--hd-blue) !important;
  outline: none;
}
.hd-topbar-account-text {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .hd-topbar-account-text { max-width: 110px; }
}
.hd-welcome-menu {
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  box-shadow: var(--hd-shadow-lg);
  padding: 0.4rem;
  min-width: 220px;
  margin-top: 0 !important;
  top: 100% !important;
}
/* Hover ile a? ? t?klamadan */
.hd-topbar-account {
  position: relative;
}
.hd-topbar-account > .hd-welcome-menu {
  display: none;
}
.hd-topbar-account:hover > .hd-welcome-menu,
.hd-topbar-account:focus-within > .hd-welcome-menu,
.hd-topbar-account.show > .hd-welcome-menu {
  display: block;
}
.hd-topbar-account > .hd-welcome-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.hd-welcome-menu .dropdown-item {
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--hd-text);
}
.hd-welcome-menu .dropdown-item:hover {
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
}
.hd-welcome-menu .dropdown-item i {
  color: var(--hd-blue);
  opacity: 0.85;
}
.hd-welcome-menu .dropdown-divider {
  margin: 0.35rem 0;
  border-top-color: var(--hd-border);
}
.hd-currency-menu {
  min-width: 150px;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  box-shadow: var(--hd-shadow-lg);
  padding: 0.4rem;
  margin-top: 0.35rem;
}
.hd-currency-menu .hd-currency-item {
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--hd-text);
}
.hd-currency-menu .hd-currency-item:hover { background: var(--hd-bg-tint); color: var(--hd-navy); }
.hd-currency-menu .hd-currency-item.active {
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-weight: 600;
}
.hd-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hd-green);
  box-shadow: 0 0 0 3px rgba(42, 199, 105, 0.18);
}
#footer .btn-locale {
  background: #fff;
  border: 1px solid var(--hd-border);
  color: var(--hd-navy);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
}
#footer .btn-locale:hover { border-color: var(--hd-blue); color: var(--hd-blue); }

/* ---------- Header (tek sat?r: logo + men? + sepet) ---------- */
#header.header {
  background: #fff;
  border-bottom: 1px solid var(--hd-border);
  position: relative;
  z-index: 1040;
}
#header.header.hd-is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 18px rgba(23, 43, 112, 0.1);
}
.hd-header-spacer {
  display: none;
  width: 100%;
}
#header .hd-mainbar {
  padding: 0.55rem 0;
  background: #fff !important;
}
#header .navbar-brand { max-width: 220px; margin-right: 1.25rem !important; padding: 0; }
#header .navbar-brand img.logo-img { height: 55px; width: auto; object-fit: contain; }
#header #nav > li > a {
  color: var(--hd-navy) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 1rem 0.9rem !important;
  display: block;
  white-space: nowrap;
}
#header #nav > li > a:hover { color: var(--hd-blue) !important; }
#header #nav .dropdown-toggle::after { opacity: 0.45; }
/* Mobil men? chevron?u masa?st?nde g?r?nmesin (?ift ikon) */
#header #nav .hd-drawer-chevron {
  display: none !important;
}
#header .dropdown-menu {
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  box-shadow: var(--hd-shadow-lg);
  padding: 0.45rem;
  min-width: 215px;
}
#header .dropdown-menu .dropdown-item a {
  border-radius: 8px;
  padding: 0.5rem 0.7rem !important;
  font-weight: 400;
  color: var(--hd-text);
  display: block;
  font-size: 0.9rem;
}
#header .dropdown-menu .dropdown-item a:hover {
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
}
/* Mega men? */
.hd-mega-panel .hd-mega-title {
  display: block;
  width: 100%;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hd-text-light);
  margin: 0 0 0.9rem;
  text-align: left;
}
.hd-mega-panel .container {
  display: block;
}
.hd-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.hd-mega-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--hd-bg-tint);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: inherit !important;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.hd-mega-item:hover {
  background: #E4ECFA;
  border-color: rgba(37, 104, 239, 0.18);
  box-shadow: none;
}
.hd-mega-item .ico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--hd-border);
  color: var(--hd-blue);
  font-size: 1.05rem;
}
.hd-mega-item .ico.flag { font-size: 1.3rem; border: 1px solid var(--hd-border); }
.hd-mega-item .txt { min-width: 0; }
.hd-mega-item strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.hd-mega-item small {
  display: block;
  color: var(--hd-text);
  font-size: 0.77rem;
  line-height: 1.45;
}
@media (min-width: 1200px) {
  /* Alta inerken hover kopmas?n: link alan? header alt?na kadar uzas?n */
  #header .hd-mainbar {
    padding-top: 0.55rem;
    padding-bottom: 0;
  }
  #header .hd-mainbar #nav {
    align-items: stretch;
  }
  #header .hd-mainbar #nav > li {
    display: flex;
    align-items: stretch;
  }
  #header .hd-mainbar #nav > li > a {
    display: flex;
    align-items: center;
    padding-top: 1rem !important;
    padding-bottom: calc(1rem + 0.55rem) !important;
  }
  #header .hd-mainbar .hd-mega { position: static; }
  #header .hd-mainbar .hd-mega .dropdown-menu.hd-mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    margin: 0 !important;
    transform: none !important;
    border: 0;
    border-top: 1px solid var(--hd-border);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 30px 50px rgba(23, 43, 112, 0.12);
    padding: 1.6rem 0 1.8rem;
    /* Bootstrap bo?luk / Popper kayd?rmas?n? iptal */
    inset: auto 0 auto 0;
    top: 100%;
  }
  /* Hover k?pr?s? ? men? ile link aras?ndaki bo?lu?u kapat?r */
  #header .hd-mainbar .hd-mega .dropdown-menu.hd-mega-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 1.25rem;
  }
  #header .hd-mainbar .hd-mega:hover > .dropdown-menu.hd-mega-panel,
  #header .hd-mainbar .hd-mega:focus-within > .dropdown-menu.hd-mega-panel {
    display: block;
  }
}
@media (max-width: 1199.98px) {
  .hd-mega-panel { border: 0; box-shadow: none; padding: 0.25rem 0 0.75rem; }
  .hd-mega-panel .container { padding: 0; }
  .hd-mega-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .hd-corp-mega {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hd-corp-col + .hd-corp-col {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--hd-border);
    padding-top: 1rem;
  }
}

/* Kurumsal mega men? ? 3 s?tun */
.hd-corp-mega {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.9fr;
  gap: 0;
  align-items: start;
}
.hd-corp-col {
  min-width: 0;
  padding: 0 1.35rem;
}
.hd-corp-col:first-child { padding-left: 0; }
.hd-corp-col:last-child { padding-right: 0; }
.hd-corp-col + .hd-corp-col {
  border-left: 1px solid var(--hd-border);
}
.hd-corp-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: var(--hd-bg-tint);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: inherit !important;
  text-decoration: none !important;
  margin-bottom: 0.8rem;
  box-shadow: none;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.hd-corp-card:last-child { margin-bottom: 0; }
.hd-corp-card:hover {
  background: #E4ECFA;
  border-color: rgba(37, 104, 239, 0.18);
  box-shadow: none;
}
.hd-corp-ico,
.hd-corp-ico.is-info,
.hd-corp-ico.is-doc,
.hd-corp-ico.is-bank,
.hd-corp-ico.is-support {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--hd-border);
  color: var(--hd-blue);
  font-size: 1.05rem;
  box-shadow: none;
}
.hd-corp-card .txt { min-width: 0; }
.hd-corp-card strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.hd-corp-card small {
  display: block;
  color: var(--hd-text);
  font-size: 0.77rem;
  line-height: 1.45;
}
.hd-corp-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd-corp-links li { margin: 0; }
.hd-corp-links a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.22rem 0.15rem;
  border-radius: 6px;
  color: var(--hd-navy) !important;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none !important;
  transition: background .15s, color .15s;
}
.hd-corp-links a i {
  color: #2AC769;
  font-size: 0.88rem;
  width: 1rem;
  text-align: center;
  flex: 0 0 auto;
}
.hd-corp-links a:hover {
  background: #E4ECFA;
  color: var(--hd-blue) !important;
}
@media (min-width: 1200px) {
  #header .hd-mainbar .hd-mega-corp .dropdown-menu.hd-mega-panel {
    padding-top: 1.4rem;
    padding-bottom: 1.6rem;
  }
}

#header .hd-header-notify {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  margin-right: 0.15rem;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--hd-navy) !important;
  box-shadow: none !important;
  line-height: 1 !important;
}
#header .hd-header-notify:hover,
#header .hd-header-notify:focus,
#header .hd-header-notify[aria-describedby] {
  color: var(--hd-blue) !important;
  background: rgba(37, 104, 239, 0.08) !important;
}
#header .hd-header-notify.has-alerts {
  color: var(--hd-blue) !important;
  background: rgba(37, 104, 239, 0.1) !important;
}
#header .hd-header-notify > i {
  font-size: 1.1rem;
}
#header .hd-header-notify-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #F43F5E;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
  line-height: 1;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(244, 63, 94, 0.35);
}
#header .hd-header-notify-badge.is-pulse {
  animation: hd-notify-badge-pop 0.55s ease;
}
#header .hd-header-notify.is-ring > i {
  animation: hd-notify-ring 0.7s ease;
}
@keyframes hd-notify-badge-pop {
  0% { transform: scale(0.7); }
  55% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
@keyframes hd-notify-ring {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(14deg); }
  40% { transform: rotate(-12deg); }
  60% { transform: rotate(8deg); }
  80% { transform: rotate(-4deg); }
}

/* Bildirim kutusu */
.popover.popover-user-notifications {
  min-width: 340px;
  max-width: min(380px, calc(100vw - 1.5rem));
  padding: 0;
  border: 1px solid #E7EDF8 !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 40px rgba(23, 43, 112, 0.16) !important;
  background: #fff;
  font-family: inherit;
  z-index: 1080;
}
.popover.popover-user-notifications .arrow::before {
  border-bottom-color: #E7EDF8;
}
.popover.popover-user-notifications .arrow::after {
  border-bottom-color: #172B70;
}
.popover.popover-user-notifications.bs-popover-bottom .arrow::after {
  border-bottom-color: #172B70;
}
.popover.popover-user-notifications .popover-header {
  display: none;
}
.popover.popover-user-notifications .popover-body {
  padding: 0 !important;
  color: var(--hd-navy, #172B70);
}
.popover.popover-user-notifications .popover-inner {
  padding: 0;
}

.hd-notify-panel {
  overflow: hidden;
  border-radius: 14px;
}
.hd-notify-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.05rem;
  background: linear-gradient(135deg, #172B70 0%, #2568EF 100%);
  color: #fff;
}
.hd-notify-panel-head strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.hd-notify-panel-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.hd-notify-count {
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}
.hd-notify-markall {
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.hd-notify-markall:hover {
  background: rgba(255, 255, 255, 0.3);
}
.hd-notify-panel-head span {
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}

.popover-user-notifications ul.client-alerts,
.hd-notify-panel ul.client-alerts {
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
}
.popover-user-notifications ul.client-alerts li,
.hd-notify-panel ul.client-alerts li {
  margin: 0;
  padding: 0;
  min-height: 0;
  border: 0;
}
.popover-user-notifications ul.client-alerts li a,
.hd-notify-panel .hd-notify-item a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.75rem;
  border-radius: 10px;
  text-decoration: none !important;
  color: #334155 !important;
  font-size: 0.9rem;
  line-height: 1.45;
  transition: background .15s, color .15s;
}
.popover-user-notifications ul.client-alerts li a:hover,
.hd-notify-panel .hd-notify-item a:hover {
  background: #F4F7FC;
  color: #172B70 !important;
}
.hd-notify-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: #EEF4FF;
  color: #2568EF;
  font-size: 0.95rem;
}
.hd-notify-item.is-danger .hd-notify-ico {
  background: #FEE2E2;
  color: #DC2626;
}
.hd-notify-item.is-warning .hd-notify-ico {
  background: #FEF3C7;
  color: #D97706;
}
.hd-notify-item.is-success .hd-notify-ico {
  background: #DCFCE7;
  color: #16A34A;
}
.hd-notify-item .message {
  flex: 1;
  margin: 0 !important;
  float: none !important;
  font-weight: 600;
  color: inherit;
}
.hd-notify-chevron {
  align-self: center;
  color: #94A3B8;
  font-size: 0.7rem;
  flex: 0 0 auto;
}
.hd-notify-item a:hover .hd-notify-chevron {
  color: #2568EF;
}

.popover-user-notifications ul.client-alerts li.none,
.hd-notify-panel li.none {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.5rem 1rem !important;
  min-height: auto;
  text-align: center;
  font-weight: 600;
  color: #64748B;
  font-size: 0.9rem;
}
.hd-notify-empty-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #F1F5F9;
  color: #94A3B8;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

@media (max-width: 575.98px) {
  .popover.popover-user-notifications {
    min-width: min(320px, calc(100vw - 1.25rem));
  }
}

#header .hd-cart-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
#header .hd-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hd-navy) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0 0.5rem 1.4rem;
  border-left: 1px solid var(--hd-border);
}
#header .hd-cart:hover,
#header .hd-cart-wrap.is-open .hd-cart { color: var(--hd-blue) !important; }
#header .hd-cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  border-radius: 7px;
  background: var(--hd-green);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
}
#header .hd-cart-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  width: 340px;
  max-width: min(340px, calc(100vw - 1.5rem));
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(23, 43, 112, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 1200;
  padding: 0.85rem 0.9rem 0.95rem;
  pointer-events: none;
}
#header .hd-cart-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
#header .hd-cart-wrap:hover .hd-cart-dropdown,
#header .hd-cart-wrap:focus-within .hd-cart-dropdown,
#header .hd-cart-wrap.is-open .hd-cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
#header .hd-cart-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--hd-border);
}
#header .hd-cart-dropdown-head strong {
  color: var(--hd-navy);
  font-size: 0.92rem;
}
#header .hd-cart-dropdown-head span {
  min-width: 22px;
  height: 22px;
  padding: 0 0.4rem;
  border-radius: 7px;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}
#header .hd-cart-empty {
  color: var(--hd-text);
  font-size: 0.88rem;
  padding: 0.85rem 0.25rem 0.5rem;
  text-align: center;
}
#header .hd-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}
#header .hd-cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.15rem;
  border-bottom: 1px solid var(--hd-border);
}
#header .hd-cart-item:last-child { border-bottom: 0; }
#header .hd-cart-item-main {
  min-width: 0;
  flex: 1;
}
#header .hd-cart-item-main strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}
#header .hd-cart-item-main small {
  display: block;
  margin-top: 0.2rem;
  color: var(--hd-text-light);
  font-size: 0.76rem;
}
#header .hd-cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}
#header .hd-cart-price {
  color: var(--hd-blue);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
#header .hd-cart-remove {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  color: var(--hd-text-light) !important;
  background: var(--hd-bg-tint);
  font-size: 0.7rem;
}
#header .hd-cart-remove:hover {
  color: #fff !important;
  background: #E35D6A;
}
#header .hd-cart-dropdown-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hd-border);
}
#header .hd-cart-dropdown-foot .btn {
  width: 100%;
  font-size: 0.82rem;
  font-weight: 600;
}
/* ---------- Mobil men?: sa?dan kayan tam ekran drawer ---------- */
.hd-nav-slot {
  width: 100%;
}
.hd-menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  background: #fff;
  color: var(--hd-navy);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  position: relative;
  z-index: 1110;
}
.hd-menu-toggle:hover,
.hd-menu-toggle:focus {
  background: var(--hd-blue-soft);
  border-color: #D6E4FF;
  color: var(--hd-blue);
  outline: none;
}
.hd-menu-toggle-bars {
  width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hd-menu-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
body.hd-nav-open .hd-menu-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.hd-nav-open .hd-menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}
body.hd-nav-open .hd-menu-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hd-menu-backdrop {
  display: none;
}

@media (max-width: 1199.98px) {
  .hd-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(23, 43, 112, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
  body.hd-nav-open .hd-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.hd-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  body > .hd-mobile-drawer.navbar-collapse,
  body > .hd-mobile-drawer,
  .hd-mobile-drawer.navbar-collapse,
  .hd-mobile-drawer.navbar-collapse.collapse:not(.show),
  .hd-mobile-drawer.navbar-collapse.collapsing {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    height: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    z-index: 10050 !important;
    flex-basis: auto !important;
    flex-grow: 0 !important;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform .34s cubic-bezier(0.22, 1, 0.36, 1), visibility .34s;
    overflow: hidden !important;
  }
  body > .hd-mobile-drawer.is-open,
  .hd-mobile-drawer.is-open {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .hd-mobile-drawer > .hd-drawer-head,
  .hd-mobile-drawer > .hd-drawer-utils,
  .hd-mobile-drawer > .hd-drawer-scroll,
  .hd-mobile-drawer .hd-drawer-foot {
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
  }

  .hd-drawer-head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: calc(0.85rem + env(safe-area-inset-top, 0px)) 1.15rem 0.85rem;
    border-bottom: 1px solid var(--hd-border);
    background: #fff;
  }
  .hd-drawer-brand img {
    height: 36px;
    width: auto;
    object-fit: contain;
  }
  .hd-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--hd-border);
    border-radius: 12px;
    background: #fff;
    color: var(--hd-navy);
    display: inline-grid;
    place-items: center;
    font-size: 1.05rem;
    cursor: pointer;
  }
  .hd-menu-close:hover {
    background: var(--hd-blue-soft);
    color: var(--hd-blue);
  }

  .hd-drawer-utils {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
    border-bottom: 1px solid var(--hd-border);
    background: var(--hd-bg-tint);
  }
  .hd-drawer-utils a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 40px;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--hd-border);
    color: var(--hd-navy) !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
  }
  .hd-drawer-utils a i {
    color: var(--hd-blue);
    font-size: 0.75rem;
  }

  .hd-drawer-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 0.35rem 0 0;
    display: flex;
    flex-direction: column;
  }

  .hd-mobile-drawer #nav {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0.25rem 1rem 0.5rem !important;
    align-items: stretch !important;
    text-align: left !important;
  }
  .hd-mobile-drawer #nav.navbar-nav,
  .hd-mobile-drawer #nav.mx-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hd-mobile-drawer #nav > li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid var(--hd-border);
    text-align: left !important;
  }
  .hd-mobile-drawer #nav > li:last-child {
    border-bottom: 0;
  }
  .hd-mobile-drawer #nav > li > a {
    display: block !important;
    width: 100% !important;
    padding: 0.95rem 0.25rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    white-space: normal;
    text-align: left !important;
    color: var(--hd-navy) !important;
  }
  .hd-mobile-drawer #nav > li.hd-mega > a.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .hd-mobile-drawer #nav > li.hd-mega > a.dropdown-toggle::after {
    display: none;
  }
  .hd-mobile-drawer #nav > li.hd-mega > a.dropdown-toggle .hd-drawer-chevron {
    display: inline-grid !important;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--hd-bg-tint);
    color: var(--hd-blue);
    place-items: center;
    font-size: 0.72rem;
    transition: transform .25s ease, background .2s;
    flex-shrink: 0;
  }
  .hd-mobile-drawer #nav > li.hd-mega.is-expanded > a.dropdown-toggle .hd-drawer-chevron {
    transform: rotate(180deg);
    background: var(--hd-blue-soft);
  }

  .hd-mobile-drawer .hd-mega .dropdown-menu.hd-mega-panel {
    position: static !important;
    display: none !important;
    float: none;
    width: 100%;
    margin: 0 0 0.75rem !important;
    padding: 0.15rem 0 0.55rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    transform: none !important;
    inset: auto !important;
    top: auto !important;
  }
  .hd-mobile-drawer .hd-mega .dropdown-menu.hd-mega-panel::before {
    display: none;
  }
  .hd-mobile-drawer .hd-mega.is-expanded > .dropdown-menu.hd-mega-panel {
    display: block !important;
  }
  .hd-mobile-drawer .hd-mega-panel .hd-mega-title {
    margin: 0.35rem 0 0.55rem;
    padding-left: 0.2rem;
  }
  .hd-mobile-drawer .hd-mega-item,
  .hd-mobile-drawer .hd-corp-card {
    padding: 0.75rem 0.85rem;
  }
  .hd-mobile-drawer .hd-mega-item .txt small,
  .hd-mobile-drawer .hd-corp-card .txt small {
    display: block;
  }

  /* Kurumsal mega ? sadece mobil drawer; masa?st? 3 s?tun ayn? kal?r */
  .hd-mobile-drawer .hd-mega-panel > .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .hd-mobile-drawer .hd-corp-mega {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }
  .hd-mobile-drawer .hd-corp-col {
    width: 100% !important;
    padding: 0 !important;
    min-width: 0 !important;
  }
  .hd-mobile-drawer .hd-corp-col + .hd-corp-col {
    border-left: 0 !important;
    border-top: 1px solid var(--hd-border);
    padding-top: 0.85rem !important;
    margin-top: 0.15rem;
  }
  .hd-mobile-drawer .hd-corp-card {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
  .hd-mobile-drawer .hd-corp-card:last-child {
    margin-bottom: 0;
  }
  .hd-mobile-drawer .hd-corp-links {
    width: 100%;
  }
  .hd-mobile-drawer .hd-corp-links a {
    padding: 0.55rem 0.35rem !important;
    font-size: 0.92rem !important;
  }

  .hd-drawer-foot {
    flex: 0 0 auto;
    margin-top: auto;
    padding: 0.85rem 1.15rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    display: grid;
    gap: 0.55rem;
    border-top: 1px solid var(--hd-border);
    background: #fff;
  }
  .hd-drawer-foot .btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 0.75rem 1rem;
  }
}

@media (min-width: 1200px) {
  .hd-nav-slot {
    display: contents;
  }
  .hd-menu-backdrop,
  .hd-drawer-head,
  .hd-drawer-utils,
  .hd-drawer-foot {
    display: none !important;
  }
  .hd-drawer-scroll {
    display: contents;
  }
  .hd-mobile-drawer {
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
}

.master-breadcrumb {
  background: var(--hd-bg-tint);
  border-bottom: 1px solid var(--hd-border);
  padding: 0.65rem 0;
}
.master-breadcrumb .breadcrumb,
.master-breadcrumb .hd-breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}
.master-breadcrumb .breadcrumb-item {
  color: var(--hd-navy);
  font-weight: 600;
}
.master-breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.35rem;
}
.master-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\203A";
  padding-right: 0.45rem;
  color: var(--hd-text-light);
  font-weight: 500;
}
.master-breadcrumb .breadcrumb-item a {
  color: var(--hd-blue);
  text-decoration: none;
  font-weight: 600;
}
.master-breadcrumb .breadcrumb-item a:hover {
  color: var(--hd-blue-hover);
  text-decoration: underline;
}
.master-breadcrumb .breadcrumb-item.active {
  color: var(--hd-navy);
  font-weight: 700;
}

body.hd-home .master-breadcrumb { display: none; }
body.hd-home #main-body,
body.hd-landing #main-body {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0;
}
body.hd-home #main-body > div:first-child,
body.hd-landing #main-body > div:first-child { max-width: 100%; padding: 0; }
body.hd-home #main-body .primary-content,
body.hd-landing #main-body .primary-content { padding: 0; }
body.hd-home #main-body .row,
body.hd-landing #main-body .row { margin: 0; }
body.hd-home #main-body .col-12,
body.hd-landing #main-body .col-12 { padding: 0; }

/* ---------- Hero slider (a??k tema) ---------- */
.hd-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--hd-bg-tint-2) 0%, var(--hd-bg-tint) 55%, #FFFFFF 100%);
  overflow: hidden;
}
.hd-slider #hdHeroSlider.carousel {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
}
.hd-slider .carousel-inner {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
}
.hd-slider::before {
  content: "";
  position: absolute;
  right: -220px;
  top: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,104,239,0.09) 0%, rgba(37,104,239,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hd-slider .carousel-item {
  min-height: 420px;
  display: none;
}
.hd-slider .carousel-item.active,
.hd-slider .carousel-item-next,
.hd-slider .carousel-item-prev { display: block; }
.hd-slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 2.5rem;
  min-height: 420px;
  padding: 2.75rem 0 2.25rem;
}
@media (max-width: 991px) {
  .hd-slide-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: 0;
    padding-bottom: 2rem;
  }
  .hd-slide-visual {
    display: block;
  }
}
.hd-slide-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.1rem; }
.hd-slide-content h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  color: var(--hd-navy);
  margin-bottom: 0.9rem;
}
.hd-slide-content h2 .hl { color: var(--hd-blue); }
.hd-slide-content p {
  color: var(--hd-text);
  font-size: 1.08rem;
  margin-bottom: 1.4rem;
  max-width: 32rem;
}
.hd-slide-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hd-slide-price .from { font-size: 0.9rem; color: var(--hd-text-light); }
.hd-slide-price .amount { font-size: 2.1rem; font-weight: 700; color: var(--hd-navy); }
.hd-slide-price .per { font-size: 0.9rem; color: var(--hd-text-light); }
.hd-slide-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hd-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hd-slide-visual {
  position: relative;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  height: auto;
}
.hd-slide-visual img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .hd-slide-visual img {
    height: 220px;
  }
}

/* Slider sekme bar? ? alt kenar = slider alt? (k?rm?z? ?izgi konumu) */
.hd-slider .carousel-indicators.hd-slider-tabs {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 76px;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  justify-content: stretch;
  align-items: stretch;
  background: #fff;
  border-top: 1px solid var(--hd-border);
  border-bottom: 1px solid var(--hd-border);
  z-index: 5;
  order: 2;
  flex: 0 0 76px;
  overflow: hidden;
}
.hd-slider .carousel-indicators.hd-slider-tabs li {
  position: relative;
  box-sizing: border-box !important;
  width: auto !important;
  max-width: none !important;
  height: 76px !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 0 1.25rem !important;
  text-indent: 0 !important;
  list-style: none !important;
  border-top: none !important;
  border-left: none !important;
  border-bottom: 4px solid transparent !important;
  border-right: 1px solid var(--hd-border) !important;
  background-color: #fff !important;
  background-image: none !important;
  background-clip: padding-box !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  flex: none !important;
  overflow: hidden;
}
.hd-slider .carousel-indicators.hd-slider-tabs li:last-child {
  border-right: none !important;
}
.hd-slider .carousel-indicators.hd-slider-tabs li i {
  color: #5B6B85;
  font-size: 1.05rem;
  line-height: 1;
  transition: color .2s;
  position: relative;
  z-index: 1;
}
.hd-slider .carousel-indicators.hd-slider-tabs li .hd-tab-label {
  color: #2A3550;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--hd-font);
  font-style: normal;
  line-height: 1.25;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.hd-slider .carousel-indicators.hd-slider-tabs li .hd-tab-line {
  display: none !important;
}
.hd-slider .carousel-indicators.hd-slider-tabs li.active,
.hd-slider .carousel-indicators.hd-slider-tabs li.active[data-slide-to],
.hd-slider .carousel-indicators.hd-slider-tabs .active {
  background: linear-gradient(180deg, rgba(37, 104, 239, 0.08) 0%, #fff 70%) !important;
  border-bottom: 4px solid #2568EF !important;
}
.hd-slider .carousel-indicators.hd-slider-tabs li.active i,
.hd-slider .carousel-indicators.hd-slider-tabs .active i {
  color: #2568EF;
}
.hd-slider .carousel-indicators.hd-slider-tabs li.active .hd-tab-label,
.hd-slider .carousel-indicators.hd-slider-tabs .active .hd-tab-label {
  color: var(--hd-navy);
  font-weight: 600;
}
.hd-slider .carousel-indicators.hd-slider-tabs li:hover:not(.active) {
  background: #F7F9FC !important;
}
@media (max-width: 767px) {
  .hd-slider .carousel-indicators.hd-slider-tabs {
    height: auto;
    flex-basis: auto;
  }
  .hd-slider .carousel-indicators.hd-slider-tabs li {
    min-height: 64px !important;
    height: 64px !important;
    padding: 0.5rem !important;
    flex-direction: column;
    gap: 0.3rem;
  }
  .hd-slider .carousel-indicators.hd-slider-tabs li .hd-tab-label {
    font-size: 0.78rem;
    white-space: normal;
    text-align: center;
  }
}

.hd-slider .carousel-control-prev,
.hd-slider .carousel-control-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  top: calc(50% - 38px);
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
  background: transparent;
  z-index: 6;
}
.hd-slider .carousel-control-prev { left: 0.75rem; }
.hd-slider .carousel-control-next { right: 0.75rem; }
.hd-slider .carousel-control-prev:hover,
.hd-slider .carousel-control-next:hover,
.hd-slider .carousel-control-prev:focus,
.hd-slider .carousel-control-next:focus {
  opacity: 1;
  text-decoration: none;
}
.hd-slider .hd-slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hd-border);
  box-shadow: var(--hd-shadow-sm);
  color: var(--hd-navy);
  font-size: 0.95rem;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.hd-slider .carousel-control-prev:hover .hd-slider-arrow,
.hd-slider .carousel-control-next:hover .hd-slider-arrow {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 104, 239, 0.25);
}
.hd-slider .carousel-control-prev-icon,
.hd-slider .carousel-control-next-icon {
  display: none;
}
@media (max-width: 767px) {
  .hd-slider .carousel-control-prev,
  .hd-slider .carousel-control-next {
    display: none !important;
  }
}

/* ---------- Header alt? domain sorgulama ?eridi ---------- */
.hd-domainbar {
  background: #fff;
  border-bottom: 1px solid var(--hd-border);
  padding: 1rem 0 0.7rem;
}
.hd-domainbar-form {
  display: flex;
  gap: 0.6rem;
}
.hd-domainbar-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--hd-border);
  background: var(--hd-bg-tint);
  border-radius: var(--hd-radius-sm);
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  font-family: var(--hd-font);
  color: var(--hd-navy);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.hd-domainbar-form input::placeholder { color: var(--hd-text-light); }
.hd-domainbar-form input:focus {
  border-color: var(--hd-blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--hd-blue-soft);
}
.hd-domainbar-form .btn { padding: 0.7rem 2rem; }

/* Kayan TLD fiyat band? */
.hd-tld-ticker {
  overflow: hidden;
  margin-top: 0.7rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.hd-tld-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: hdTicker 35s linear infinite;
}
.hd-tld-ticker:hover .hd-tld-track { animation-play-state: paused; }
.hd-tld-group {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
}
.hd-tld-t {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.84rem;
}
.hd-tld-t b { color: var(--hd-navy); font-weight: 700; font-size: 0.9rem; }
.hd-tld-t s { color: var(--hd-text-light); font-size: 0.78rem; }
.hd-tld-t em { font-style: normal; color: var(--hd-blue); font-weight: 600; }
.hd-tld-t.is-hot b,
.hd-tld-t.is-sale b { color: #c2410c; }
.hd-tld-t.is-new b { color: #047857; }
@keyframes hdTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hd-tld-track { animation: none; }
}

/* ---------- Domain arama paneli ---------- */
.hd-domain-wrap {
  position: relative;
  z-index: 5;
  margin-top: -3.75rem;
  margin-bottom: 0.5rem;
}
.hd-domain-panel {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-lg);
  padding: 1.6rem 1.75rem;
}
.hd-domain-panel .hd-domain-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--hd-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hd-domain-panel .hd-domain-title i { color: var(--hd-blue); }
.hd-domain-search { display: flex; gap: 0.6rem; }
.hd-domain-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--hd-border);
  background: var(--hd-bg-tint);
  border-radius: var(--hd-radius-sm);
  padding: 0.8rem 1.15rem;
  font-size: 1rem;
  font-family: var(--hd-font);
  color: var(--hd-navy);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.hd-domain-search input::placeholder { color: var(--hd-text-light); }
.hd-domain-search input:focus {
  border-color: var(--hd-blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--hd-blue-soft);
}

/* TLD kartlar? */
.hd-tld-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
  margin-top: 1.1rem;
}
@media (max-width: 991px) { .hd-tld-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .hd-tld-row { grid-template-columns: repeat(2, 1fr); } }
.hd-tld-card {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-sm);
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: #fff;
  color: inherit !important;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.hd-tld-card:hover {
  border-color: var(--hd-blue);
  box-shadow: var(--hd-shadow-md);
  transform: translateY(-2px);
}
.hd-tld-card b { color: var(--hd-navy); font-weight: 700; font-size: 0.98rem; }
.hd-tld-card .old {
  color: var(--hd-text-light);
  text-decoration: line-through;
  font-size: 0.76rem;
}
.hd-tld-card .now { color: var(--hd-blue); font-weight: 600; font-size: 0.92rem; }

/* ---------- B?l?mler ---------- */
.hd-section { padding: 4.5rem 0; }
.hd-section-sm { padding: 2.5rem 0; }
.hd-section-gray { background: var(--hd-bg-tint); }

.hd-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.hd-section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hd-section-title {
  font-size: clamp(1.55rem, 2.7vw, 2.05rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.hd-section-lead {
  color: var(--hd-text);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0;
}
.hd-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hd-blue);
  background: var(--hd-blue-soft);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.7rem;
}

/* ?zellik kutular? (hero alt? 4?l? soft card) */
.hd-showcase {
  background: #F7F9FC;
  padding: 3rem 0 3.5rem;
}
.hd-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.hd-show-card {
  background: #fff;
  border: 1px solid rgba(231, 237, 248, 0.9);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(23, 43, 112, 0.06);
  padding: 1.35rem 1.25rem 1.4rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.hd-show-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(23, 43, 112, 0.1);
  border-color: #D6E4FF;
}
.hd-show-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding: 0.85rem 0.9rem;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(23, 43, 112, 0.05);
}
.hd-show-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hd-show-meta {
  min-width: 0;
  flex: 1;
}
.hd-show-meta strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.hd-show-bar-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hd-show-bar-row .hd-float-bar {
  flex: 1;
  margin-top: 0;
  height: 7px;
}
.hd-show-bar-row em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hd-blue);
  white-space: nowrap;
}
.hd-float-bar {
  height: 6px;
  border-radius: 99px;
  background: #E8EEF7;
  overflow: hidden;
}
.hd-float-bar > i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--hd-blue), #4F8BFF);
}
.hd-show-card h3 {
  margin: 0 0 0.55rem;
  color: var(--hd-navy);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}
.hd-show-card p {
  margin: 0;
  color: var(--hd-text);
  font-size: 0.88rem;
  line-height: 1.65;
}
@media (max-width: 1199px) {
  .hd-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .hd-showcase { padding: 2.25rem 0 2.75rem; }
  .hd-showcase-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.hd-quick {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}
@media (max-width: 1199px) { .hd-quick { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .hd-quick { grid-template-columns: repeat(2, 1fr); } }
.hd-quick a {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  padding: 1.2rem 0.9rem;
  text-align: center;
  color: var(--hd-navy) !important;
  box-shadow: var(--hd-shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.hd-quick a:hover {
  transform: translateY(-3px);
  box-shadow: var(--hd-shadow-md);
  border-color: #C7D8F9;
}
.hd-quick i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 0.6rem;
  border-radius: 12px;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 1.1rem;
}
.hd-quick strong { display: block; font-size: 0.875rem; font-weight: 500; }

/* Fiyat / paket kartlar? (g?rsel referans) */
.hd-pricing-shell {
  position: relative;
}
.hd-pricing-shell .hd-pricing-nav {
  display: none;
}
.hd-pricing-viewport {
  width: 100%;
}
.hd-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  padding-top: 1.35rem; /* rozet i?in ?st bo?luk */
}
.hd-pricing-shell.is-slider {
  padding: 0 2.4rem;
}
.hd-pricing-shell.is-slider .hd-pricing-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid var(--hd-border);
  border-radius: 50%;
  background: #fff;
  color: var(--hd-navy);
  box-shadow: 0 8px 20px rgba(23, 43, 112, 0.1);
  cursor: pointer;
}
.hd-pricing-shell.is-slider .hd-pricing-nav:hover {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
}
.hd-pricing-shell.is-slider .hd-pricing-nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.hd-pricing-shell.is-slider .hd-pricing-nav.is-prev { left: 0; }
.hd-pricing-shell.is-slider .hd-pricing-nav.is-next { right: 0; }
.hd-pricing-shell.is-slider .hd-pricing-viewport {
  overflow: hidden;
}
.hd-pricing-shell.is-slider .hd-pricing {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 1.15rem;
  padding-bottom: 0.25rem;
}
.hd-pricing-shell.is-slider .hd-pricing::-webkit-scrollbar { display: none; }
.hd-pricing-shell.is-slider .hd-pkg {
  flex: 0 0 calc((100% - 3.45rem) / 4);
  width: calc((100% - 3.45rem) / 4);
  max-width: calc((100% - 3.45rem) / 4);
  scroll-snap-align: start;
}
@media (max-width: 1199px) {
  .hd-pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hd-pricing-shell.is-slider .hd-pkg {
    flex-basis: calc((100% - 1.15rem) / 2);
    width: calc((100% - 1.15rem) / 2);
    max-width: calc((100% - 1.15rem) / 2);
  }
}
@media (max-width: 575px) {
  .hd-pricing { grid-template-columns: 1fr; }
  .hd-pricing-shell.is-slider { padding: 0 2rem; }
  .hd-pricing-shell.is-slider .hd-pkg {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}

.hd-pkg {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(23, 43, 112, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  height: 100%;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.hd-pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(23, 43, 112, 0.1);
}
.hd-pkg.is-featured {
  border-color: var(--hd-blue);
  box-shadow: 0 16px 36px rgba(37, 104, 239, 0.14);
}
.hd-pkg-banner {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -55%);
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 1.5rem);
  background: linear-gradient(90deg, var(--hd-blue), #4F8BFF);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(37, 104, 239, 0.28);
  white-space: nowrap;
}
.hd-pkg-inner {
  padding: 1.35rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.hd-pkg-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.hd-pkg-intro { min-width: 0; flex: 1; }
.hd-pkg-intro h3 {
  margin: 0 0 0.4rem;
  color: var(--hd-navy);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}
.hd-pkg-intro p {
  margin: 0;
  color: var(--hd-text-light);
  font-size: 0.82rem;
  line-height: 1.5;
}
.hd-pkg-ring {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  position: relative;
}
.hd-pkg-ring svg { width: 42px; height: 42px; transform: rotate(-90deg); display: block; }
.hd-pkg-ring-bg {
  fill: none;
  stroke: #E8EEF7;
  stroke-width: 3.2;
}
.hd-pkg-ring-fg {
  fill: none;
  stroke: var(--hd-blue);
  stroke-width: 3.2;
  stroke-linecap: round;
}
.hd-pkg.is-featured .hd-pkg-ring-fg { stroke: #2AC769; }
.hd-pkg-level {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--hd-navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* Paket kategori tablar? ? e?it geni?lik, tek sat?r */
.hd-plan-tabs-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 1.85rem;
}
.hd-plan-tabs-wrap::before,
.hd-plan-tabs-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.hd-plan-tabs-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #F5F8FE, transparent);
}
.hd-plan-tabs-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #F5F8FE, transparent);
}
.hd-plan-tabs-wrap.is-overflow-left::before,
.hd-plan-tabs-wrap.is-overflow-right::after { opacity: 1; }
.hd-plan-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.3rem;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(23, 43, 112, 0.06);
}
.hd-plan-tabs::-webkit-scrollbar { display: none; }
.hd-plan-tab {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--hd-text);
  font-size: clamp(0.72rem, 0.95vw, 0.875rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  padding: 0.72rem 0.35rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}
.hd-plan-tab-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.hd-plan-tab:hover {
  color: var(--hd-navy);
  background: var(--hd-bg-tint);
}
.hd-plan-tab.is-active {
  background: var(--hd-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 104, 239, 0.28);
}
.hd-plan-panel[hidden] { display: none !important; }
.hd-plan-panel.is-active { display: block; }

/* Almanya VDS — sekme + yatay liste */
.hd-vds-pricing {
  padding: 2.5rem 0 3.25rem;
  background: var(--hd-bg-tint);
}
.hd-vds-pricing .hd-em-sec-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.hd-vds-seg-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 1.5rem;
}
.hd-vds-seg {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  background: #e8edf6;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.hd-vds-seg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: transparent;
  color: #5b6b86;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}
.hd-vds-seg-btn:hover {
  color: var(--hd-navy);
}
.hd-vds-seg-btn.is-active {
  background: #fff;
  color: var(--hd-navy);
  box-shadow: 0 6px 18px rgba(23, 43, 112, 0.12);
}
.hd-vds-seg-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(37, 104, 239, 0.12);
  color: var(--hd-blue);
  font-size: 0.72rem;
}
.hd-vds-seg-btn.is-active .hd-vds-seg-ico {
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
}
.hd-vds-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hd-vds-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 1.15fr) repeat(6, minmax(4.5rem, 0.85fr)) minmax(6.5rem, 0.9fr) auto;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(231, 237, 248, 0.9);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(23, 43, 112, 0.05);
  padding: 1rem 1.1rem;
  transition: box-shadow .15s, transform .15s;
}
.hd-vds-row:hover {
  box-shadow: 0 12px 28px rgba(23, 43, 112, 0.09);
}
.hd-vds-row-name,
.hd-vds-row-spec {
  min-width: 0;
  padding: 0.15rem 0.85rem;
}
.hd-vds-row-spec {
  border-left: 1px solid #edf1f7;
}
.hd-vds-row-name {
  padding-left: 0.25rem;
}
.hd-vds-row-name strong,
.hd-vds-row-spec strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}
.hd-vds-row-name span,
.hd-vds-row-spec span {
  display: block;
  margin-top: 0.18rem;
  color: var(--hd-text-light);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
}
.hd-vds-row-name span {
  color: var(--hd-blue);
  font-weight: 600;
}
.hd-vds-row-price {
  text-align: right;
  padding: 0 0.9rem;
  border-left: 1px solid #edf1f7;
}
.hd-vds-row-price s {
  display: block;
  color: var(--hd-text-light);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: line-through;
}
.hd-vds-row-price b {
  display: block;
  color: var(--hd-navy);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hd-vds-row-cta {
  padding-left: 0.35rem;
}
.hd-vds-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
  background: var(--hd-blue);
  color: #fff !important;
  border-radius: 10px;
  padding: 0.72rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(37, 104, 239, 0.28);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.hd-vds-buy:hover {
  background: var(--hd-blue-hover);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(37, 104, 239, 0.34);
}
.hd-vds-buy i { font-size: 0.85rem; }
.hd-vds-row.is-oos {
  opacity: 1;
}
.hd-vds-row.is-oos .hd-vds-row-name strong {
  color: #6b778c;
}
.hd-vds-oos-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid #fecaca;
  background: #fff5f5;
  color: #b42318;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}
.hd-vds-buy.is-disabled {
  background: var(--hd-blue);
  color: #fff !important;
  opacity: 0.42;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.15);
}
.hd-vds-buy.is-disabled:hover {
  background: var(--hd-blue);
  opacity: 0.42;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .hd-vds-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.5rem;
    padding: 1rem;
  }
  .hd-vds-row-name,
  .hd-vds-row-spec,
  .hd-vds-row-price {
    border-left: 0;
    padding: 0.2rem 0.35rem;
  }
  .hd-vds-row-name { grid-column: 1 / -1; }
  .hd-vds-row-price {
    text-align: left;
  }
  .hd-vds-row-cta {
    grid-column: 1 / -1;
    padding: 0.25rem 0 0;
  }
  .hd-vds-buy { width: 100%; }
}
@media (max-width: 575px) {
  .hd-vds-seg {
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
  }
  .hd-vds-seg-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .hd-vds-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .hd-plan-tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
  }
}

.hd-pkg-priceblock { margin-bottom: 1.05rem; }
.hd-pkg-old {
  color: var(--hd-text-light);
  font-size: 0.86rem;
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}
.hd-pkg-price {
  color: var(--hd-navy);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hd-pkg-price small {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--hd-text-light);
  margin-left: 0.15rem;
}
.hd-pkg-price .hd-pkg-cycle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hd-text);
  white-space: nowrap;
}
.hd-pkg-save {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--hd-green-soft);
  color: #17914B;
  font-size: 0.74rem;
  font-weight: 600;
}
.hd-pkg-renew {
  margin-top: 0.45rem;
  color: var(--hd-text-light);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hd-pkg-cta {
  width: 100%;
  border-radius: 10px !important;
  background: #5B6B8C !important;
  border-color: #5B6B8C !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.78rem 1rem !important;
  margin-bottom: 1.2rem;
}
.hd-pkg-cta:hover {
  background: var(--hd-navy) !important;
  border-color: var(--hd-navy) !important;
  color: #fff !important;
}
.hd-pkg-cta.is-accent,
.hd-pkg.is-featured .hd-pkg-cta {
  background: linear-gradient(90deg, var(--hd-blue), #4F8BFF) !important;
  border-color: transparent !important;
}
.hd-pkg-cta.is-accent:hover,
.hd-pkg.is-featured .hd-pkg-cta:hover {
  background: linear-gradient(90deg, var(--hd-blue-hover), var(--hd-blue)) !important;
}

.hd-pkg-features { flex: 1; margin-bottom: 1rem; }
.hd-pkg-features strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.hd-pkg-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd-pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--hd-border);
  color: var(--hd-text);
  font-size: 0.88rem;
  line-height: 1.35;
}
.hd-pkg-features li:last-child { border-bottom: 0; }
.hd-pkg-features li i {
  width: 1.1rem;
  text-align: center;
  color: var(--hd-blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hd-pkg-features li i.fa-lock { color: var(--hd-blue); }
.hd-pkg-features li i.fa-cogs { color: #F79009; }

.hd-pkg-more {
  width: 100%;
  border: 1px solid var(--hd-border) !important;
  background: #fff !important;
  color: var(--hd-navy) !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.7rem 1rem !important;
}
.hd-pkg-more:hover {
  border-color: var(--hd-blue) !important;
  color: var(--hd-blue) !important;
  background: var(--hd-blue-soft) !important;
}

/* Lokasyonlar */
.hd-locs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) { .hd-locs { grid-template-columns: repeat(2, 1fr); } }
.hd-loc {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  padding: 1.4rem;
  color: var(--hd-navy) !important;
  box-shadow: var(--hd-shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.hd-loc:hover {
  transform: translateY(-3px);
  box-shadow: var(--hd-shadow-md);
  border-color: #C7D8F9;
}
.hd-loc .flag { font-size: 1.7rem; display: block; margin-bottom: 0.5rem; }
.hd-loc strong { display: block; font-size: 1.05rem; margin-bottom: 0.15rem; font-weight: 600; }
.hd-loc span { color: var(--hd-text); font-size: 0.85rem; }

/* ?zellikler */
.hd-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 991px) { .hd-features { grid-template-columns: 1fr; } }
.hd-feature {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  padding: 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--hd-shadow-sm);
  transition: transform .15s, box-shadow .15s;
}
.hd-feature:hover { transform: translateY(-2px); box-shadow: var(--hd-shadow-md); }
.hd-feature .ico {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 1.1rem;
}
.hd-feature:nth-child(3n+2) .ico { background: var(--hd-green-soft); color: #17914B; }
.hd-feature:nth-child(3n) .ico { background: var(--hd-orange-soft); color: #B7690A; }
.hd-feature h3 { font-size: 1rem; margin: 0 0 0.3rem; font-weight: 600; }
.hd-feature p { margin: 0; color: var(--hd-text); font-size: 0.89rem; }

/* ??z?mler */
.hd-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
@media (max-width: 991px) { .hd-mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .hd-mosaic { grid-template-columns: 1fr; } }
.hd-mosaic a {
  display: block;
  border-radius: var(--hd-radius);
  overflow: hidden;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: inherit !important;
  box-shadow: var(--hd-shadow-sm);
  transition: transform .15s, box-shadow .15s;
  height: 100%;
}
.hd-mosaic a:hover { transform: translateY(-3px); box-shadow: var(--hd-shadow-lg); }
.hd-mosaic .media { aspect-ratio: 16/10; overflow: hidden; background: var(--hd-bg-tint); }
.hd-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.hd-mosaic a:hover img { transform: scale(1.05); }
.hd-mosaic .body { padding: 1.1rem 1.2rem 1.3rem; }
.hd-mosaic h3 { font-size: 1rem; margin: 0 0 0.3rem; font-weight: 600; }
.hd-mosaic p { margin: 0; color: var(--hd-text); font-size: 0.87rem; }

/* Yorumlar slider */
.hd-reviews {
  background: #fff;
  text-align: center;
}
.hd-reviews-eyebrow {
  margin: 0 0 1.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hd-blue);
}
.hd-reviews-viewport {
  overflow: hidden;
  margin: 0 -0.25rem;
  padding: 0.35rem 0.25rem 1rem;
}
.hd-reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.25rem;
}
.hd-reviews-track::-webkit-scrollbar { display: none; }
.hd-review-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  box-sizing: border-box;
  text-align: left;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 4px;
  padding: 1.35rem 1.25rem 1.2rem;
  margin: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
  position: relative;
}
.hd-review-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: transparent;
  border-radius: 0 0 3px 3px;
  transition: background .2s;
}
.hd-review-card.is-active {
  box-shadow: 0 10px 28px rgba(23, 43, 112, 0.08);
}
.hd-review-card.is-active::after {
  background: linear-gradient(90deg, var(--hd-blue) 0%, #2AC769 100%);
}
.hd-review-card > p {
  flex: 1 1 auto;
  margin: 0 0 1.15rem;
  color: #64748B;
  font-size: 0.92rem;
  line-height: 1.7;
}
.hd-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hd-border);
}
.hd-review-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hd-font);
}
.hd-review-author strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}
.hd-review-author small {
  display: block;
  color: var(--hd-text-light);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}
.hd-reviews-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.hd-reviews-btn {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: #8A97AD;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  padding: 0;
}
.hd-reviews-btn:hover:not(:disabled) {
  color: var(--hd-blue);
  border-color: var(--hd-blue);
  background: var(--hd-blue-soft);
}
.hd-reviews-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
@media (max-width: 1199px) {
  .hd-review-card { flex-basis: calc((100% - 2rem) / 3); }
}
@media (max-width: 991px) {
  .hd-review-card { flex-basis: calc((100% - 1rem) / 2); }
}
@media (max-width: 767px) {
  .hd-review-card { flex-basis: 100%; min-height: 200px; }
}

/* Blog ? 3?l? slider */
.hd-blog {
  background: var(--hd-bg-tint);
}
.hd-blog-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
}
.hd-blog-viewport {
  overflow: hidden;
  min-width: 0;
}
.hd-blog-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.15rem 0.1rem 0.35rem;
}
.hd-blog-track::-webkit-scrollbar { display: none; }
.hd-blog-card {
  flex: 0 0 calc((100% - 2.3rem) / 3);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow .2s, border-color .2s;
}
.hd-blog-card:hover {
  border-color: rgba(37, 104, 239, 0.28);
  box-shadow: 0 14px 32px rgba(23, 43, 112, 0.08);
}
.hd-blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #E8F0FE 0%, #F0F4FA 55%, #E6F7EE 100%);
  overflow: hidden;
}
.hd-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hd-blog-card-ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--hd-blue);
  font-size: 1.75rem;
  opacity: 0.85;
}
.hd-blog-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.hd-blog-card-date {
  display: block;
  color: var(--hd-text-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
}
.hd-blog-card-title {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hd-navy);
}
.hd-blog-card-title a {
  color: inherit;
  text-decoration: none;
}
.hd-blog-card-title a:hover { color: var(--hd-blue); }
.hd-blog-card-excerpt {
  margin: 0 0 1rem;
  color: var(--hd-text);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1 1 auto;
}
.hd-blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--hd-blue);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}
.hd-blog-card-more:hover { color: var(--hd-navy); }
.hd-blog-card-more i { font-size: 0.75rem; transition: transform .15s; }
.hd-blog-card-more:hover i { transform: translateX(3px); }
.hd-blog-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: #8A97AD;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color .15s, border-color .15s, background .15s;
  flex: 0 0 auto;
}
.hd-blog-nav:hover:not(:disabled) {
  color: var(--hd-blue);
  border-color: var(--hd-blue);
  background: var(--hd-blue-soft);
}
.hd-blog-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
@media (max-width: 991px) {
  .hd-blog-card { flex-basis: calc((100% - 1.15rem) / 2); }
}
@media (max-width: 767px) {
  .hd-blog-shell {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hd-blog-nav {
    display: none;
  }
  .hd-blog-card { flex-basis: 85%; }
}

/* Blog yaz? detay? ? sticky dikey payla??m */
.hd-blog-layout #main-body {
  background: var(--hd-bg-tint);
  padding-bottom: 3rem;
}
.hd-blog-layout .primary-content {
  max-width: 920px;
  margin: 0 auto;
  float: none;
}
.hd-post {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin: 0.5rem auto 0;
}
.hd-post-share {
  position: sticky;
  top: 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  z-index: 5;
}
.hd-post-share-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hd-text-light);
  margin-bottom: 0.25rem;
}
.hd-post-share-btn {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 16px rgba(23, 43, 112, 0.06);
  transition: color .15s, background .15s, border-color .15s, transform .15s;
}
.hd-post-share-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.hd-post-share-btn.is-x:hover { color: #fff; background: #0f1419; border-color: #0f1419; }
.hd-post-share-btn.is-fb:hover { color: #fff; background: #1877F2; border-color: #1877F2; }
.hd-post-share-btn.is-li:hover { color: #fff; background: #0A66C2; border-color: #0A66C2; }
.hd-post-share-btn.is-wa:hover { color: #fff; background: #25D366; border-color: #25D366; }
.hd-post-share-btn.is-copy:hover,
.hd-post-share-btn.is-copied {
  color: #fff;
  background: var(--hd-blue);
  border-color: var(--hd-blue);
}
.hd-post-main {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 16px;
  padding: 2.25rem 2.4rem 2rem;
  box-shadow: 0 12px 36px rgba(23, 43, 112, 0.06);
}
.hd-post-header { margin-bottom: 1.75rem; }
.hd-post-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.hd-post-kicker:hover { color: var(--hd-navy); text-decoration: none; }
.hd-post-title {
  margin: 0 0 1rem;
  color: var(--hd-navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.hd-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  color: var(--hd-text-light);
  font-size: 0.88rem;
  font-weight: 500;
}
.hd-post-meta i { margin-right: 0.35rem; color: var(--hd-blue); }
.hd-post-body {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.8;
}
.hd-post-body > *:first-child { margin-top: 0; }
.hd-post-body > *:last-child { margin-bottom: 0; }
.hd-post-body p { margin: 0 0 1.15rem; }
.hd-post-body h2,
.hd-post-body h3 {
  color: var(--hd-navy);
  font-weight: 750;
  margin: 1.75rem 0 0.75rem;
  line-height: 1.3;
}
.hd-post-body a { color: var(--hd-blue); }
.hd-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1rem 0;
}
.hd-post-body ul,
.hd-post-body ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
.hd-post-body li { margin-bottom: 0.35rem; }
.hd-post-fb { margin-top: 1.75rem; }
.hd-post-comments {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hd-border);
}
.hd-post-comments-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hd-navy);
  margin: 0 0 1rem;
}
.hd-post-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--hd-border);
}
.hd-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
@media (max-width: 767px) {
  .hd-post {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hd-post-share {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem;
  }
  .hd-post-share-label {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    margin-bottom: 0.15rem;
    letter-spacing: 0.06em;
  }
  .hd-post-main {
    padding: 1.35rem 1.2rem 1.4rem;
    border-radius: 14px;
  }
}

/* Blog liste */
.hd-blog-index-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.hd-blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.hd-blog-index-card {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  transition: box-shadow .2s, border-color .2s;
}
.hd-blog-index-card:hover {
  border-color: rgba(37, 104, 239, 0.28);
  box-shadow: 0 14px 32px rgba(23, 43, 112, 0.08);
}
.hd-blog-index-card-body {
  padding: 1.25rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hd-blog-index-card .hd-blog-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.hd-blog-index-pager { margin-top: 2rem; }
@media (max-width: 991px) {
  .hd-blog-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .hd-blog-index-grid { grid-template-columns: 1fr; }
}

/* FAQ ? ortalanm?? accordion */
.hd-faq {
  background: #fff;
}
.hd-faq-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}
.hd-faq-title {
  margin: 0 0 0.65rem;
  color: var(--hd-navy);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}
.hd-faq-lead {
  margin: 0;
  color: var(--hd-text);
  font-size: 1.02rem;
  line-height: 1.6;
}
.hd-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.hd-faq-item {
  border-bottom: 1px solid var(--hd-border);
  transition: background .2s, border-radius .2s, margin .2s;
}
.hd-faq-item:last-child { border-bottom: 0; }
.hd-faq-item:has(.collapse.show),
.hd-faq-item.is-open {
  background: var(--hd-bg-tint);
  border-radius: 16px;
  border-bottom-color: transparent;
  margin: 0.45rem 0;
  padding: 0.15rem 0.35rem 0.35rem;
}
.hd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1.2rem 0.85rem;
  text-align: left;
  color: var(--hd-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
  transition: color .15s;
}
.hd-faq-q span { flex: 1; min-width: 0; }
.hd-faq-q i {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: var(--hd-text-light);
  transition: transform .2s, color .15s;
}
.hd-faq-q:not(.collapsed) {
  color: var(--hd-navy);
  font-weight: 700;
}
.hd-faq-q:not(.collapsed) i {
  transform: rotate(180deg);
  color: var(--hd-navy);
}
.hd-faq-q:hover { color: var(--hd-navy); }
.hd-faq-q:focus { outline: none; }
.hd-faq-q:focus-visible {
  outline: 2px solid var(--hd-blue);
  outline-offset: 2px;
  border-radius: 8px;
}
.hd-faq-a {
  padding: 0 0.85rem 1.15rem;
  color: var(--hd-text);
  font-size: 0.94rem;
  line-height: 1.7;
}
@media (max-width: 575px) {
  .hd-faq-q { padding: 1.05rem 0.5rem; font-size: 0.95rem; }
  .hd-faq-a { padding: 0 0.5rem 1rem; font-size: 0.9rem; }
  .hd-faq-item:has(.collapse.show),
  .hd-faq-item.is-open { padding: 0.1rem 0.15rem 0.25rem; }
}

/* CTA */
.hd-cta-band {
  background: linear-gradient(105deg, var(--hd-blue), #4F8BFF);
  color: #fff;
  border-radius: var(--hd-radius);
  padding: 2.5rem 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--hd-shadow-lg);
}
.hd-cta-band h2 { color: #fff; font-size: 1.5rem; margin: 0 0 0.3rem; font-weight: 700; }
.hd-cta-band p { margin: 0; color: rgba(255,255,255,0.88); }

/* SSL types */
.hd-ssl-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}
.hd-ssl-type {
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  background: #fff;
  box-shadow: var(--hd-shadow-sm);
}
.hd-ssl-type-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  margin-bottom: 0.85rem;
}
.hd-ssl-type h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--hd-navy);
  line-height: 1.3;
}
.hd-ssl-type p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--hd-text);
}
@media (max-width: 991.98px) {
  .hd-ssl-types { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .hd-ssl-types { grid-template-columns: 1fr; }
}

/* Landing */
.hd-landing-hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(160deg, var(--hd-bg-tint-2) 0%, var(--hd-bg-tint) 60%, #fff 100%);
  border-bottom: 1px solid var(--hd-border);
}
.hd-landing-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.hd-landing-hero p.lead { color: var(--hd-text); font-size: 1.06rem; max-width: 40rem; }
.hd-landing-media {
  border-radius: var(--hd-radius);
  overflow: hidden;
  box-shadow: var(--hd-shadow-lg);
  border: 1px solid var(--hd-border);
}
.hd-landing-media img { width: 100%; height: auto; display: block; }
.hd-checklist { list-style: none; padding: 0; margin: 0; }
.hd-checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.9rem;
  border-bottom: 1px dashed var(--hd-border);
  color: var(--hd-text);
}
.hd-checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--hd-green);
  position: absolute;
  left: 0;
  top: 0.6rem;
}

/* ?leti?im */
.hd-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) { .hd-contact-grid { grid-template-columns: 1fr; } }
.hd-static-content {
  max-width: 48rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  padding: 1.75rem 1.9rem;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.75;
  box-shadow: 0 10px 28px rgba(23, 43, 112, 0.05);
}
.hd-static-content p { margin: 0 0 1rem; }
.hd-static-content p:last-child { margin-bottom: 0; }
.hd-static-content strong { color: var(--hd-navy); }
.hd-contact-card {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  padding: 1.6rem;
  background: #fff;
  box-shadow: var(--hd-shadow-sm);
}
.hd-contact-card i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.hd-contact-card h3 { font-size: 1rem; font-weight: 600; }
.hd-map {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  width: 100%;
  height: 340px;
  background: var(--hd-bg-tint);
}

/* ---------- Footer ---------- */
#footer.footer {
  background: transparent;
  color: var(--hd-text);
  padding: 0;
  margin-top: 0;
  font-size: 0.92rem;
  border: 0;
}
#footer .container { max-width: var(--hd-container); }

/* ---------- Partner / teknoloji logo ?eridi ---------- */
.hd-partners {
  background: #fff;
  border-top: 1px solid var(--hd-border);
  padding: 1.35rem 0 1.5rem;
}
.hd-partners-progress {
  position: relative;
  height: 3px;
  margin-bottom: 1.15rem;
  background: transparent;
}
.hd-partners-trackbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #E8EEF7;
  border-radius: 99px;
}
.hd-partners-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--hd-blue) 0%, #4F8BFF 100%);
  transition: left .15s ease, width .15s ease;
}
.hd-partners-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
}
.hd-partners-nav {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: #8A97AD;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  padding: 0;
  flex-shrink: 0;
}
.hd-partners-nav:hover:not(:disabled) {
  color: var(--hd-blue);
  border-color: var(--hd-blue);
  background: var(--hd-blue-soft);
}
.hd-partners-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.hd-partners-viewport {
  min-width: 0;
  overflow: hidden;
}
.hd-partners-track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.15rem;
}
.hd-partners-track::-webkit-scrollbar { display: none; }
.hd-partners-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 48px;
  opacity: 1;
  transition: opacity .15s, transform .15s;
}
.hd-partners-item:hover { transform: translateY(-1px); }
.hd-partners-item img {
  display: block;
  height: 40px;
  width: 140px;
  max-width: 140px;
  object-fit: contain;
  border-radius: 4px;
}
@media (max-width: 575px) {
  .hd-partners { padding: 1.1rem 0 1.25rem; }
  .hd-partners-track { gap: 1.1rem; }
  .hd-partners-item {
    width: 120px;
    height: 42px;
  }
  .hd-partners-item img {
    height: 34px;
    width: 120px;
    max-width: 120px;
  }
}

.hd-footer-cta {
  background: linear-gradient(105deg, var(--hd-blue), #4F8BFF);
  color: #fff;
  padding: 1.15rem 0;
}
.hd-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hd-footer-cta-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.hd-footer-cta-copy strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.hd-footer-cta-copy p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}
.hd-footer-cta-icons {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}
.hd-footer-cta-icons i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.16);
  font-size: 1rem;
}
.hd-footer-news {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  flex: 1 1 320px;
  max-width: 480px;
  justify-content: flex-end;
}
.hd-footer-news-field {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border-radius: 10px;
  padding: 0 0.9rem;
  min-height: 46px;
}
.hd-footer-news-field i { color: var(--hd-blue); }
.hd-footer-news-field input {
  flex: 1;
  border: 0;
  outline: none;
  font-family: var(--hd-font);
  font-size: 0.92rem;
  color: var(--hd-navy);
  background: transparent;
  min-width: 0;
}
.hd-footer-news .btn-white {
  white-space: nowrap;
  box-shadow: none !important;
}

.hd-footer-main {
  background: #fff;
  border-top: 1px solid var(--hd-border);
  padding: 2.5rem 0 1.75rem;
}
.hd-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 2fr;
  gap: 2.25rem;
  align-items: stretch;
}
@media (max-width: 991px) {
  .hd-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.hd-footer-brand { display: flex; }
.hd-footer-brand-center {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hd-border);
  text-align: center;
}
.hd-footer-center-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.hd-footer-center-logo img {
  height: 53px;
  width: auto;
  display: block;
}
.hd-footer-legal {
  margin: 0 auto 1.1rem;
  max-width: 52rem;
  color: var(--hd-text);
  font-size: 0.84rem;
  line-height: 1.55;
}
.hd-footer-privacy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.hd-footer-privacy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: var(--hd-navy) !important;
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.hd-footer-privacy-btn i {
  color: var(--hd-blue);
  font-size: 0.82rem;
}
.hd-footer-privacy-btn:hover {
  background: var(--hd-blue-soft);
  border-color: rgba(37, 104, 239, 0.35);
  color: var(--hd-blue) !important;
  box-shadow: 0 4px 14px rgba(37, 104, 239, 0.1);
}
@media (max-width: 575px) {
  .hd-footer-privacy-btn {
    font-size: 0.74rem;
    padding: 0.42rem 0.72rem;
  }
}

#footer .hd-footer-brand .hd-logo {
  height: 53px;
  width: auto;
  margin-bottom: 0.75rem;
  display: block;
}
.hd-footer-tagline { display: none; }
.hd-footer-proof {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  padding: 0.55rem 0.75rem;
  background: var(--hd-bg-tint);
  border: 1px solid var(--hd-border);
  border-radius: 10px;
}
.hd-footer-avatars { display: flex; flex-shrink: 0; }
.hd-footer-avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--hd-blue), #7AA2FF);
  margin-left: -8px;
}
.hd-footer-avatars span:first-child { margin-left: 0; }
.hd-footer-avatars span:nth-child(2) { background: linear-gradient(135deg, #12B76A, #6CE9A6); }
.hd-footer-avatars span:nth-child(3) { background: linear-gradient(135deg, #F79009, #FEC84B); }
.hd-footer-proof strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}
.hd-footer-proof small {
  display: block;
  color: var(--hd-text-light);
  font-size: 0.72rem;
  margin-top: 0.05rem;
}
.hd-footer-proof small i { color: var(--hd-orange); margin-right: 0.1rem; }

.hd-footer-support-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 0.75rem;
  box-shadow: var(--hd-shadow-sm);
  overflow: hidden;
}
.hd-footer-support-box::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--hd-blue), #7AA2FF);
}
.hd-footer-support-top {
  padding-bottom: 0.25rem;
}
.hd-footer-support-box .hd-footer-proof {
  margin: 0.9rem 0.9rem 0;
}
.hd-footer-support-box h4 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hd-navy);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--hd-border);
  line-height: 1.2;
}
.hd-footer-support-box h4 i { color: var(--hd-blue); }
.hd-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hd-footer-contact-list li { border-bottom: 1px solid var(--hd-border); }
.hd-footer-contact-list li:last-child { border-bottom: 0; }
.hd-footer-contact-list a {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  color: inherit !important;
  transition: background .15s;
}
.hd-footer-contact-list a:hover { background: var(--hd-bg-tint); }
.hd-footer-contact-list .ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 0.75rem;
}
.hd-footer-contact-list .txt {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--hd-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hd-footer-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.75rem 0.9rem 0.9rem;
  border-top: 1px solid var(--hd-border);
}
.hd-footer-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 10px;
  box-shadow: var(--hd-shadow-sm);
  min-height: 44px;
}
.hd-footer-badge .ico {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 0.7rem;
}
.hd-footer-badge .txt {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--hd-navy);
  line-height: 1.25;
}

.hd-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.hd-footer-address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--hd-text);
  font-size: 0.8rem;
  line-height: 1.4;
}
.hd-footer-address i { color: var(--hd-blue); flex-shrink: 0; }

#footer .hd-social { margin: 0; }
#footer .hd-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--hd-bg-tint);
  border: 1px solid var(--hd-border);
  color: var(--hd-navy);
  margin-right: 0;
  transition: all .15s;
}
#footer .hd-social a:hover {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
}

.hd-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.25rem;
  padding-left: 0.5rem;
  border-left: 1px solid var(--hd-border);
}
@media (max-width: 991px) {
  .hd-footer-cols {
    border-left: 0;
    padding-left: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--hd-border);
  }
}
@media (max-width: 767px) { .hd-footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .hd-footer-cols { grid-template-columns: 1fr; } }
#footer .hd-footer-cols h5 {
  color: var(--hd-navy);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--hd-blue-soft);
}
#footer .hd-footer-cols h5:not(:first-child) { margin-top: 1.15rem; }
#footer .hd-footer-cols ul { list-style: none; padding: 0; margin: 0; }
#footer .hd-footer-cols li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.4rem;
}
#footer .hd-footer-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hd-blue);
  opacity: 0.5;
}
#footer .hd-footer-cols a { color: var(--hd-text); font-size: 0.86rem; }
#footer .hd-footer-cols a:hover { color: var(--hd-blue); }

#footer .hd-footer-cols li.hd-footer-hidden { display: none; }
#footer .hd-footer-cols li.hd-footer-more { padding-left: 0; margin-top: 0.15rem; }
#footer .hd-footer-cols li.hd-footer-more::before { display: none; }
.hd-footer-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--hd-blue);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.hd-footer-more-btn:hover { text-decoration: underline; }
.hd-footer-more-btn i {
  font-size: 0.62rem;
  transition: transform .2s ease;
}
.hd-footer-more.is-open .hd-footer-more-btn i { transform: rotate(180deg); }

.hd-footer-bottom {
  background: var(--hd-bg-tint);
  border-top: 1px solid var(--hd-border);
  padding: 0.9rem 0;
}
.hd-footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.hd-footer-bottom-inner .copyright { justify-self: start; }
.hd-footer-bottom-inner .hd-social { justify-self: center; margin: 0; }
.hd-footer-bottom-inner .hd-footer-pay { justify-self: end; }
@media (max-width: 767px) {
  .hd-footer-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hd-footer-bottom-inner .copyright,
  .hd-footer-bottom-inner .hd-social,
  .hd-footer-bottom-inner .hd-footer-pay { justify-self: center; }
}
#footer .hd-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--hd-border);
  color: var(--hd-navy);
  margin-right: 0;
  transition: all .15s;
}
#footer .hd-social a:hover {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
}
#footer .copyright {
  border: 0;
  padding: 0;
  color: var(--hd-text-light);
  font-size: 0.84rem;
  margin: 0;
}
.hd-footer-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hd-footer-pay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  background: var(--hd-bg-tint);
  border: 1px solid var(--hd-border);
  color: var(--hd-navy);
  font-size: 0.72rem;
  font-weight: 600;
}

#footer .btn-locale {
  background: #fff;
  border: 1px solid var(--hd-border);
  color: var(--hd-navy);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
}
#footer .btn-locale:hover { border-color: var(--hd-blue); color: var(--hd-blue); }

/* ---------- Dil / para birimi modal? (a??k tema) ---------- */
#modalChooseLanguage.modal {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem !important;
}
#modalChooseLanguage.modal.show {
  display: flex !important;
}
#modalChooseLanguage .modal-dialog {
  margin: auto;
  max-width: 560px;
  width: calc(100% - 2rem);
}
.modal-localisation .modal-content {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-lg);
}
.modal-localisation .modal-body {
  background: none;
  padding: 1.5rem 2rem 1.75rem;
  position: relative;
}
.modal-localisation .h5,
.modal-localisation p.h5 {
  color: var(--hd-navy);
  font-weight: 600;
  padding-top: 0.25rem !important;
  margin-bottom: 0.75rem;
}
.modal-localisation .close,
.modal-localisation .close.text-light {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  color: var(--hd-navy) !important;
  opacity: 0.6;
  text-shadow: none;
  z-index: 2;
}
.modal-localisation .item-selector .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 3px 0;
  padding: 0.6rem 0.5rem;
  text-align: center;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-sm);
  color: var(--hd-text);
  background: #fff;
  transition: all .15s;
  cursor: pointer;
}
.modal-localisation .item-selector .item .iti-flag { flex: 0 0 auto; }
.modal-localisation .item-selector .item:hover {
  background: var(--hd-blue-soft);
  border-color: var(--hd-blue);
  color: var(--hd-blue);
}
.modal-localisation .item-selector .item.active {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
}

/* ---------- Admin'e d?n (sayfa alt? orta) ---------- */
.hd-admin-return-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1.1rem;
  z-index: 9990;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
a.btn-return-to-admin,
.btn-return-to-admin {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  transform: none !important;
  pointer-events: auto;
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem !important;
  background: #172B70 !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: var(--hd-font) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(23, 43, 112, 0.35) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
a.btn-return-to-admin:hover,
.btn-return-to-admin:hover {
  background: #2568EF !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(37, 104, 239, 0.4) !important;
  text-decoration: none !important;
}
a.btn-return-to-admin i,
.btn-return-to-admin i {
  margin-right: 0;
  font-size: 0.9rem;
}

/* ---------- Cart / genel WHMCS ---------- */
#order-standard_cart .btn-success,
#order-standard_cart .btn-order-now {
  background: var(--hd-blue) !important;
  border-color: var(--hd-blue) !important;
  border-radius: var(--hd-radius-sm) !important;
}
.card { border-radius: 12px; border-color: var(--hd-border); }

/* Animasyon */
@media (prefers-reduced-motion: no-preference) {
  .hd-slide-content > * { animation: hdUp .5s ease both; }
  .hd-slide-content h2 { animation-delay: .05s; }
  .hd-slide-content p { animation-delay: .12s; }
  .hd-slide-actions { animation-delay: .18s; }
}
@keyframes hdUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- HDai sohbet ---------- */
.hdai {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1080;
  font-family: var(--hd-font);
}
.hdai-toggle {
  position: relative;
  z-index: 1;
  width: 3.6rem;
  height: 3.6rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #3B82F6, var(--hd-blue));
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 104, 239, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow .15s;
}
.hdai-toggle-wrap:hover .hdai-toggle {
  box-shadow: 0 16px 32px rgba(37, 104, 239, 0.45);
}
.hdai-toggle-badge {
  position: absolute;
  right: -0.05rem;
  top: -0.2rem;
  z-index: 3;
  pointer-events: none;
  background: #12B886;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(18, 184, 134, 0.35);
}
.hdai-toggle-wrap {
  position: relative;
  display: inline-flex;
  transition: transform .15s;
}
.hdai-toggle-wrap:hover {
  transform: translateY(-2px);
}
.hdai.is-open .hdai-toggle-wrap { display: none; }
.hdai-panel {
  display: none;
  width: min(380px, calc(100vw - 1.5rem));
  height: min(560px, calc(100vh - 5.5rem));
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(23, 43, 112, 0.18);
  overflow: hidden;
  flex-direction: column;
}
.hdai.is-open .hdai-panel {
  display: flex;
  animation: hdUp .28s ease both;
}
.hdai-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #1B54C9 0%, #2568EF 55%, #3B82F6 100%);
  color: #fff;
}
.hdai-avatar {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.hdai-head-text { min-width: 0; flex: 1; }
.hdai-head-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}
.hdai-head-text span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.88;
  margin-top: 0.12rem;
}
.hdai-close {
  border: 0;
  background: rgba(255,255,255,0.14);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}
.hdai-close:hover { background: rgba(255,255,255,0.24); }
.hdai-log {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem 0.9rem;
  background: #F5F8FE;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hdai-row { display: flex; flex-direction: column; max-width: 92%; }
.hdai-row.is-user { align-self: flex-end; align-items: flex-end; }
.hdai-row.is-bot { align-self: flex-start; align-items: flex-start; }
.hdai-bubble {
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #1e293b;
  background: #fff;
  border: 1px solid var(--hd-border);
  box-shadow: 0 4px 12px rgba(23, 43, 112, 0.05);
  white-space: normal;
  word-break: break-word;
}
.hdai-row.is-user .hdai-bubble {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.hdai-row.is-bot .hdai-bubble { border-bottom-left-radius: 5px; }
.hdai-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.hdai-link {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hd-border);
  color: var(--hd-blue) !important;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none !important;
}
.hdai-link:hover { background: var(--hd-blue-soft); }
.hdai-copy-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.55rem;
  width: 100%;
}
.hdai-copy-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  padding: 0.55rem 0.6rem 0.55rem 0.75rem;
  box-shadow: 0 4px 12px rgba(23, 43, 112, 0.05);
}
.hdai-copy-card-text {
  min-width: 0;
  flex: 1 1 auto;
}
.hdai-copy-card-text strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.hdai-copy-card-text code {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  color: #1e293b;
  word-break: break-all;
  background: transparent;
  padding: 0;
}
.hdai-copy-card-text small {
  display: block;
  margin-top: 0.2rem;
  color: var(--hd-text-light);
  font-size: 0.68rem;
}
.hdai-copy-btn {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 3.1rem;
  border: 1px solid var(--hd-border);
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  border-radius: 10px;
  padding: 0.4rem 0.35rem;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
  transition: background .15s, color .15s, border-color .15s;
}
.hdai-copy-btn i { font-size: 0.85rem; }
.hdai-copy-btn:hover {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
}
.hdai-copy-btn.is-copied {
  background: #12B886;
  border-color: #12B886;
  color: #fff;
}
.hdai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.hdai-chip,
.hdai-welcome-chips .hdai-chip {
  border: 1px solid var(--hd-border);
  background: #fff;
  color: var(--hd-navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.hdai-chip:hover {
  background: var(--hd-blue-soft);
  border-color: rgba(37, 104, 239, 0.35);
  color: var(--hd-blue);
}
.hdai-typing {
  display: inline-flex;
  gap: 0.28rem;
  padding: 0.55rem 0.75rem;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  align-self: flex-start;
}
.hdai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94A3B8;
  animation: hdaiDot 1s infinite ease-in-out;
}
.hdai-typing span:nth-child(2) { animation-delay: .15s; }
.hdai-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes hdaiDot {
  0%, 80%, 100% { opacity: .35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}
.hdai-form {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--hd-border);
  background: #fff;
}
.hdai-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid var(--hd-border);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font-size: 0.88rem;
  color: var(--hd-navy);
  outline: none;
}
.hdai-form input:focus {
  border-color: var(--hd-blue);
  box-shadow: 0 0 0 3px rgba(37, 104, 239, 0.12);
}
.hdai-form button[type="submit"] {
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 10px;
  background: var(--hd-blue);
  color: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}
.hdai-form button[type="submit"]:hover { background: var(--hd-blue-hover); }
.hdai-welcome {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  padding: 0.9rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #334155;
}
.hdai-welcome strong {
  display: block;
  color: var(--hd-navy);
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}
.hdai-welcome-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}
@media (max-width: 575px) {
  .hdai { right: 0.75rem; bottom: 0.75rem; }
  .hdai-panel {
    width: calc(100vw - 1.25rem);
    height: min(70vh, 560px);
  }
}

/* ---------- Kurumsal sayfalar (sol sidebar) ---------- */
body.hd-corporate #main-body {
  background: #F5F8FE;
  padding-bottom: 3rem;
}
.hd-corp {
  padding: 2rem 0 3rem;
}
.hd-corp-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.hd-corp-sidebar-inner {
  position: sticky;
  top: 6.5rem;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 16px;
  padding: 1.15rem 1rem 1.25rem;
  box-shadow: 0 10px 28px rgba(23, 43, 112, 0.06);
}
.hd-corp-sidebar-title {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hd-text-light);
}
.hd-corp-nav-group + .hd-corp-nav-group {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hd-border);
}
.hd-corp-nav-heading {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hd-navy);
}
.hd-corp-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd-corp-nav-list li { margin: 0; }
.hd-corp-nav-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.5rem;
  border-radius: 8px;
  color: var(--hd-navy) !important;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none !important;
  line-height: 1.35;
  transition: background .15s, color .15s;
}
.hd-corp-nav-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 199, 105, 0.45);
  color: #2AC769;
  font-size: 0.52rem;
  flex: 0 0 auto;
  transition: background .15s, border-color .15s, color .15s;
}
.hd-corp-nav-link:hover i,
.hd-corp-nav-link.is-active i {
  background: #2AC769;
  border-color: #2AC769;
  color: #fff;
}
.hd-corp-nav-link:hover {
  background: var(--hd-bg-tint);
  color: var(--hd-blue) !important;
}
.hd-corp-nav-link.is-active {
  background: var(--hd-blue-soft);
  color: var(--hd-blue) !important;
}
.hd-corp-hero {
  margin-bottom: 1.35rem;
}
.hd-corp-title {
  margin: 0 0 0.55rem;
  color: var(--hd-navy);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hd-corp-lead {
  margin: 0;
  color: var(--hd-text);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 42rem;
}
.hd-corp-article,
.hd-corp-main .hd-contact-grid {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 16px;
  padding: 1.6rem 1.75rem;
  box-shadow: 0 10px 28px rgba(23, 43, 112, 0.05);
}
.hd-corp-main .hd-contact-grid {
  margin-bottom: 1.25rem;
}
.hd-corp-prose {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.75;
}
.hd-corp-prose > *:first-child { margin-top: 0; }
.hd-corp-prose h2 {
  margin: 2rem 0 0.75rem;
  color: var(--hd-navy);
  font-size: 1.35rem;
  font-weight: 800;
}
.hd-corp-prose h3 {
  margin: 1.25rem 0 0.5rem;
  color: var(--hd-navy);
  font-size: 1.05rem;
  font-weight: 700;
}
.hd-corp-prose p { margin: 0 0 1rem; }
.hd-corp-prose ul { margin: 0 0 1.15rem; padding-left: 1.2rem; }
.hd-corp-prose li { margin-bottom: 0.4rem; }
.hd-corp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
}
.hd-corp-table th,
.hd-corp-table td {
  border: 1px solid var(--hd-border);
  padding: 0.7rem 0.8rem;
  vertical-align: top;
  text-align: left;
}
.hd-corp-table th {
  background: var(--hd-bg-tint);
  color: var(--hd-navy);
  font-weight: 700;
  width: 28%;
}
.hd-corp-table td { color: #334155; line-height: 1.55; }
@media (max-width: 767px) {
  .hd-corp-table,
  .hd-corp-table thead,
  .hd-corp-table tbody,
  .hd-corp-table th,
  .hd-corp-table td,
  .hd-corp-table tr { display: block; width: 100%; }
  .hd-corp-table thead { display: none; }
  .hd-corp-table tr { margin-bottom: 0.75rem; border: 1px solid var(--hd-border); border-radius: 10px; overflow: hidden; }
  .hd-corp-table td { border: 0; border-top: 1px solid var(--hd-border); }
  .hd-corp-table td:first-child { border-top: 0; background: var(--hd-bg-tint); font-weight: 700; color: var(--hd-navy); }
}
.hd-corp-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.hd-corp-card-soft {
  background: var(--hd-bg-tint);
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
}
.hd-corp-card-soft h3 { margin-top: 0; }
.hd-corp-card-soft p:last-child { margin-bottom: 0; }
.hd-corp-quote {
  margin: 1.25rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--hd-blue);
  background: var(--hd-blue-soft);
  border-radius: 0 12px 12px 0;
  color: var(--hd-navy);
  font-weight: 600;
  font-size: 0.98rem;
}
.hd-corp-checklist {
  list-style: none;
  padding: 0 !important;
}
.hd-corp-checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.65rem;
}
.hd-corp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--hd-blue);
}
.hd-corp-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #EAF1FF, #F0FBF5);
  border: 1px solid var(--hd-border);
  text-align: center;
}
.hd-corp-cta h2 {
  margin: 0 0 0.45rem;
  color: var(--hd-navy);
  font-size: 1.3rem;
  font-weight: 800;
}
.hd-corp-cta p {
  margin: 0 0 1rem;
  color: var(--hd-text);
}
.hd-corp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.hd-bank-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.hd-bank-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  padding: 1.15rem 1.35rem;
  margin: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.hd-bank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
}
.hd-bank-logo img {
  max-width: 100%;
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.hd-bank-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hd-bank-field {
  min-width: 0;
}
.hd-bank-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hd-text-light);
  margin: 0 0 0.25rem;
}
.hd-bank-value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  color: var(--hd-navy);
  font-weight: 600;
  font-size: 0.9rem;
}
.hd-bank-value code {
  font-size: 0.92rem;
  word-break: break-all;
  background: transparent;
  padding: 0;
  color: #1e293b;
  font-weight: 700;
}
.hd-bank-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem 1rem;
}
.hd-bank-field--iban .hd-bank-value code {
  font-size: 1rem;
}
.hd-bank-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: var(--hd-blue);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.hd-bank-copy:hover,
.hd-bank-copy.is-copied {
  background: var(--hd-blue);
  border-color: var(--hd-blue);
  color: #fff;
}
@media (max-width: 991px) {
  .hd-corp-layout { grid-template-columns: 1fr; }
  .hd-corp-sidebar-inner { position: static; }
  .hd-corp-two { grid-template-columns: 1fr; }
  .hd-bank-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hd-bank-logo { justify-content: flex-start; }
  .hd-bank-meta { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hd-bank-row { padding: 1rem; }
}


/* ---------- Kurumsal E-Posta (odeaweb tarz?) ---------- */
.hd-em-hero {
  position: relative;
  padding: 3.2rem 0 3.5rem;
  background: linear-gradient(180deg, #F7FBFF 0%, #fff 70%);
  overflow: hidden;
}
.hd-em-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.hd-em-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hd-blue);
}
.hd-em-hero-copy h1,
.hd-em-create h2,
.hd-em-local h2,
.hd-em-tab-panel h2 {
  margin: 0 0 0.85rem;
  color: var(--hd-navy);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hd-em-lead,
.hd-em-create p,
.hd-em-local p,
.hd-em-tab-panel p {
  margin: 0 0 1.25rem;
  color: var(--hd-text);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36rem;
}
.hd-em-hero-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}
.hd-em-hero-feat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.hd-em-ico {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 0.95rem;
}
.hd-em-ico.is-muted { background: var(--hd-bg-tint); color: var(--hd-text); }
.hd-em-hero-feat strong {
  display: block;
  color: var(--hd-navy);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.hd-em-hero-feat small {
  display: block;
  margin-top: 0.15rem;
  color: var(--hd-text-light);
  font-size: 0.78rem;
  line-height: 1.35;
}
.hd-em-cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hd-em-hero-visual,
.hd-em-create-visual,
.hd-em-migrate-visual,
.hd-em-local-map,
.hd-em-tab-visual {
  position: relative;
  min-height: 320px;
}
.hd-em-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 28%,
      #9BB8FF 0%,
      var(--hd-blue) 42%,
      var(--hd-blue-hover) 72%,
      #0F2F8A 100%);
  box-shadow:
    inset -10px -14px 28px rgba(15, 47, 138, 0.45),
    inset 8px 10px 18px rgba(255, 255, 255, 0.28),
    0 14px 32px rgba(37, 104, 239, 0.28);
  opacity: 1;
  filter: none;
}
.hd-em-orb-a { width: 150px; height: 150px; top: 4%; right: 6%; }
.hd-em-orb-b { width: 110px; height: 110px; bottom: 10%; left: 2%; }
.hd-em-photo-frame {
  position: relative;
  z-index: 1;
  margin: 1.5rem auto 0;
  width: min(100%, 340px);
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--hd-bg-tint-2);
  box-shadow: var(--hd-shadow-md);
}
.hd-em-photo-frame.is-tall { aspect-ratio: 3/4.2; }
.hd-em-photo-fallback {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--hd-navy);
  background: linear-gradient(160deg, #EAF1FF, var(--hd-blue-soft));
  font-weight: 700;
}
.hd-em-photo-fallback i { font-size: 2.8rem; color: var(--hd-blue); }
.hd-em-photo-fallback.is-alt,
.hd-em-photo-fallback.is-mig { background: linear-gradient(160deg, #EEF4FF, #F5F8FE); }

.hd-em-float {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  box-shadow: var(--hd-shadow-md);
  padding: 0.85rem 1rem;
}
.hd-em-float-clients { left: 0; top: 18%; width: 160px; }
.hd-em-float-clients strong,
.hd-em-float-quota strong { display: block; margin-bottom: 0.45rem; color: var(--hd-navy); font-size: 0.82rem; }
.hd-em-float-clients ul { margin: 0; padding: 0; list-style: none; }
.hd-em-float-clients li { display: flex; gap: 0.4rem; align-items: center; font-size: 0.8rem; color: var(--hd-text); margin-bottom: 0.25rem; }
.hd-em-float-clients i { color: var(--hd-blue); font-size: 0.75rem; }
.hd-em-float-quota { right: 0; bottom: 12%; width: 190px; }
.hd-em-bar { height: 8px; border-radius: 99px; background: #E8EEF8; overflow: hidden; margin-bottom: 0.55rem; }
.hd-em-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--hd-blue), var(--hd-blue-hover)); border-radius: 99px; }
.hd-em-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--hd-text);
}
.hd-em-toggle em,
.hd-em-step-inner .hd-em-toggle {
  width: 36px;
  height: 20px;
  border-radius: 99px;
  background: #CBD5E1;
  position: relative;
  flex: 0 0 auto;
}
.hd-em-toggle em.is-on,
.hd-em-toggle.is-on {
  background: var(--hd-blue);
}
.hd-em-toggle em.is-on::after,
.hd-em-toggle.is-on::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}

.hd-em-sec-head { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
.hd-em-sec-head h2 {
  margin: 0 0 0.6rem;
  color: var(--hd-navy);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
}
.hd-em-sec-head p { margin: 0; color: var(--hd-text); line-height: 1.6; }

.hd-em-pricing { padding: 3rem 0 2.5rem; background: #fff; }
.hd-em-pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.75rem;
}
.hd-em-pricing-grid.hd-em-pricing-grid-4 {
  grid-template-columns: minmax(180px, 0.95fr) repeat(4, minmax(0, 1fr));
}
.hd-em-pricing-grid.hd-em-pricing-grid-plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0.85rem;
  align-items: stretch;
}
.hd-em-pricing-grid.hd-em-pricing-grid-plans.is-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hd-em-pricing-grid.hd-em-pricing-grid-plans.is-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hd-em-pricing-grid-plans .hd-pkg {
  min-width: 0;
}
.hd-pkg-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #D5DCE8;
  color: var(--hd-navy);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  background: #fff;
}
.hd-pkg.is-featured .hd-pkg-num {
  border-color: var(--hd-blue);
  color: var(--hd-blue);
  box-shadow: 0 0 0 3px rgba(37, 104, 239, 0.12);
}
.hd-em-pricing-head {
  margin-bottom: 1.35rem;
}
.hd-em-pricing-head a {
  color: var(--hd-blue);
  font-weight: 700;
  text-decoration: none;
}
.hd-em-pricing-head a:hover { text-decoration: underline; }
.hd-em-pricing-intro {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-sm);
  padding: 1.5rem;
}
.hd-em-pricing-intro h2 { margin: 0 0 0.6rem; color: var(--hd-navy); font-size: 1.35rem; font-weight: 800; }
.hd-em-pricing-intro p { margin: 0 0 0.75rem; color: var(--hd-text); font-size: 0.92rem; line-height: 1.55; }
.hd-em-check { display: flex; gap: 0.45rem; align-items: center; color: var(--hd-navy) !important; font-weight: 600; }
.hd-em-check i { color: var(--hd-blue); }
.hd-em-pricing-cta-txt { font-weight: 700; color: var(--hd-navy) !important; }
.hd-em-plan {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-sm);
  padding: 1.25rem 1.1rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hd-em-plan.is-featured { border-color: var(--hd-blue); box-shadow: 0 10px 28px rgba(37, 104, 239, 0.14); }
.hd-em-plan header { display: flex; justify-content: space-between; align-items: flex-start; }
.hd-em-plan h3 { margin: 0; color: var(--hd-navy); font-size: 1.05rem; font-weight: 700; }
.hd-em-plan-ring {
  width: 28px; height: 28px; border-radius: 50%;
  background: conic-gradient(var(--hd-blue) calc(var(--p) * 1%), #E8EEF8 0);
}
.hd-em-plan-price s { display: block; color: var(--hd-text-light); font-size: 0.82rem; }
.hd-em-plan-price strong { display: block; color: var(--hd-navy); font-size: 2rem; font-weight: 800; line-height: 1; }
.hd-em-plan-price small { color: var(--hd-text); font-size: 0.82rem; }
.hd-em-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--hd-bg-tint);
  color: var(--hd-navy);
  font-size: 0.78rem;
  font-weight: 600;
  width: fit-content;
}
.hd-em-plan .btn-block { width: 100%; }
.hd-em-plan .btn-dark { background: #1E293B; border-color: #1E293B; color: #fff; }
.hd-em-plan.is-featured .btn-primary {
  background: linear-gradient(90deg, var(--hd-blue), var(--hd-blue-hover));
  border-color: transparent;
}
.hd-em-plan-feats { list-style: none; margin: 0; padding: 0; }
.hd-em-plan-feats li {
  display: flex; gap: 0.45rem; align-items: flex-start;
  font-size: 0.84rem; color: var(--hd-text); margin-bottom: 0.35rem;
}
.hd-em-plan-feats i { color: var(--hd-blue); margin-top: 0.15rem; }
.hd-em-plan-empty {
  grid-column: 2 / -1;
  border: 1px dashed var(--hd-border);
  border-radius: var(--hd-radius);
  padding: 2rem;
  text-align: center;
  color: var(--hd-text);
}

.hd-em-compare {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  overflow: hidden;
}
.hd-em-compare-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--hd-border);
  align-items: center;
  color: var(--hd-text);
  font-size: 0.92rem;
}
.hd-em-compare-row:last-child { border-bottom: 0; }
.hd-em-compare-head { background: var(--hd-bg-tint); font-weight: 700; color: var(--hd-navy); }
.hd-em-compare-row > div:first-child { display: flex; gap: 0.5rem; align-items: center; }
.hd-em-compare-row > div:first-child i { color: var(--hd-blue); }
.hd-em-yes { text-align: center; color: var(--hd-blue); font-size: 1.05rem; }

.hd-em-common { padding: 3rem 0; background: #fff; }
.hd-em-common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hd-border);
  border-bottom: 1px solid var(--hd-border);
}
.hd-em-common-grid ul {
  list-style: none; margin: 0; padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--hd-border);
}
.hd-em-common-grid ul:last-child { border-right: 0; }
.hd-em-common-grid li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  margin-bottom: 0.75rem; color: var(--hd-text); font-size: 0.92rem; line-height: 1.45;
}
.hd-em-common-grid i { color: var(--hd-blue); margin-top: 0.2rem; }

.hd-em-steps { padding: 2.5rem 0 3rem; background: var(--hd-bg-tint); }
.hd-em-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hd-em-step-card { position: relative; padding-top: 1rem; }
.hd-em-step-card::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  top: 0;
  right: 10%;
  z-index: 0;
  background:
    radial-gradient(circle at 32% 28%,
      #9BB8FF 0%,
      var(--hd-blue) 42%,
      var(--hd-blue-hover) 72%,
      #0F2F8A 100%);
  box-shadow:
    inset -8px -10px 20px rgba(15, 47, 138, 0.4),
    inset 6px 8px 14px rgba(255, 255, 255, 0.25),
    0 10px 22px rgba(37, 104, 239, 0.22);
  opacity: 0.9;
}
.hd-em-step-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-sm);
  padding: 1rem 1.1rem;
}
.hd-em-step-inner strong { display: block; color: var(--hd-navy); font-size: 0.95rem; }
.hd-em-step-inner p { margin: 0.2rem 0 0; color: var(--hd-text-light); font-size: 0.8rem; }
.hd-em-step-ok,
.hd-em-step-plus {
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hd-blue-soft);
  color: var(--hd-blue);
  font-size: 0.75rem;
}

.hd-em-tabs { padding: 3rem 0; background: #fff; }
.hd-em-tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 999px;
  box-shadow: var(--hd-shadow-sm);
  padding: 0.4rem;
  max-width: 980px;
  margin: 0 auto 2rem;
}
.hd-em-tablist button {
  border: 0;
  background: transparent;
  color: var(--hd-text);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.hd-em-tablist button.is-active {
  background: var(--hd-bg-tint);
  color: var(--hd-navy);
  box-shadow: var(--hd-shadow-sm);
}
.hd-em-tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hd-em-tab-panel.is-active { display: grid; }
.hd-em-tab-visual {
  background: var(--hd-bg-tint);
  border-radius: var(--hd-radius-lg, 16px);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.hd-em-tab-visual::before,
.hd-em-tab-visual::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  z-index: 0;
  background:
    radial-gradient(circle at 32% 28%,
      #9BB8FF 0%,
      var(--hd-blue) 42%,
      var(--hd-blue-hover) 72%,
      #0F2F8A 100%);
  box-shadow:
    inset -10px -14px 26px rgba(15, 47, 138, 0.45),
    inset 8px 10px 16px rgba(255, 255, 255, 0.28),
    0 12px 28px rgba(37, 104, 239, 0.28);
  opacity: 1;
}
.hd-em-tab-visual::before { top: 12px; left: 14px; }
.hd-em-tab-visual::after { bottom: 12px; right: 14px; }
.hd-em-mock-panel {
  position: relative;
  z-index: 2;
  width: min(86%, 320px);
  aspect-ratio: 16/10;
  background: #1E293B;
  border-radius: 12px 12px 4px 4px;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  box-shadow: var(--hd-shadow-lg);
}
.hd-em-mock-panel span {
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  min-height: 42px;
}

.hd-em-create { padding: 3rem 0; background: #fff; }
.hd-em-create-grid,
.hd-em-local-grid,
.hd-em-migrate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hd-em-float-accounts { left: -4%; top: 22%; width: 200px; }
.hd-em-float-accounts small { display: block; color: var(--hd-text-light); font-size: 0.7rem; letter-spacing: 0.04em; }
.hd-em-float-accounts strong { display: block; color: var(--hd-navy); font-size: 0.92rem; margin: 0.2rem 0; }
.hd-em-float-accounts em { color: var(--hd-blue); font-style: normal; font-size: 0.82rem; font-weight: 600; }
.hd-em-float-create { right: 0; bottom: 10%; width: 210px; }
.hd-em-float-create span { display: flex; gap: 0.45rem; align-items: center; color: var(--hd-navy); font-size: 0.84rem; font-weight: 600; margin-bottom: 0.55rem; }
.hd-em-float-create button {
  width: 100%; border: 0; border-radius: 8px; padding: 0.55rem 0.75rem;
  background: var(--hd-blue); color: #fff; font-weight: 700; font-size: 0.84rem;
}

.hd-em-local { padding: 2.5rem 0 3rem; background: var(--hd-bg-tint); }
.hd-em-local-map {
  background: #fff;
  border-radius: var(--hd-radius);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hd-border);
  box-shadow: var(--hd-shadow-sm);
  isolation: isolate;
}
.hd-em-local-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 32% 28%,
      #9BB8FF 0%,
      var(--hd-blue) 42%,
      var(--hd-blue-hover) 72%,
      #0F2F8A 100%);
  box-shadow:
    inset -10px -14px 28px rgba(15, 47, 138, 0.45),
    inset 8px 10px 18px rgba(255, 255, 255, 0.28),
    0 14px 30px rgba(37, 104, 239, 0.25);
  opacity: 0.85;
}
.hd-em-local-blob-a {
  width: 168px;
  height: 168px;
  top: 18px;
  right: 22px;
}
.hd-em-local-blob-b {
  width: 128px;
  height: 128px;
  bottom: 20px;
  left: 20px;
  opacity: 0.7;
}
.hd-em-float-kvkk {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  z-index: 1;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: auto;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 1rem 1.15rem;
}
.hd-em-float-kvkk .hd-em-flag {
  font-size: 1.35rem;
  line-height: 1;
  flex: 0 0 auto;
}
.hd-em-float-kvkk strong { display: block; color: var(--hd-navy); font-size: 0.95rem; }
.hd-em-float-kvkk small { display: block; margin-top: 0.15rem; color: var(--hd-text-light); font-size: 0.78rem; }

.hd-em-gridfeats { padding: 3rem 0; background: #fff; }
.hd-em-feat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.hd-em-feat-cards article {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-sm);
  padding: 1.25rem 1.15rem;
}
.hd-em-feat-cards h3 {
  margin: 0.85rem 0 0.4rem;
  color: var(--hd-navy);
  font-size: 0.98rem;
  font-weight: 700;
}
.hd-em-feat-cards p { margin: 0; color: var(--hd-text); font-size: 0.86rem; line-height: 1.5; }

.hd-em-migrate { padding: 3rem 0; background: #fff; }
.hd-em-migrate-copy p { color: var(--hd-text); line-height: 1.65; margin: 0 0 0.9rem; }
.hd-em-float-host { left: 0; top: 18%; width: 170px; }
.hd-em-float-host strong,
.hd-em-float-corp strong { display: block; color: var(--hd-navy); font-size: 0.88rem; }
.hd-em-float-host small,
.hd-em-float-corp small { color: var(--hd-text-light); font-size: 0.78rem; }
.hd-em-float-corp { right: 0; bottom: 12%; width: 200px; }
.hd-em-float-corp em {
  display: block;
  margin-top: 0.55rem;
  border: 1px solid var(--hd-blue);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  color: var(--hd-blue);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
}

.hd-em-faq { padding-bottom: 3.5rem; }

@media (max-width: 1100px) {
  .hd-em-pricing-grid,
  .hd-em-pricing-grid.hd-em-pricing-grid-4,
  .hd-em-pricing-grid.hd-em-pricing-grid-plans,
  .hd-em-pricing-grid.hd-em-pricing-grid-plans.is-3,
  .hd-em-pricing-grid.hd-em-pricing-grid-plans.is-4 { grid-template-columns: 1fr 1fr; }
  .hd-em-pricing-intro { grid-column: 1 / -1; }
  .hd-em-feat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .hd-em-hero-grid,
  .hd-em-create-grid,
  .hd-em-local-grid,
  .hd-em-migrate-grid,
  .hd-em-tab-panel.is-active,
  .hd-em-steps-grid,
  .hd-em-common-grid { grid-template-columns: 1fr; }
  .hd-em-common-grid ul { border-right: 0; border-bottom: 1px solid var(--hd-border); }
  .hd-em-common-grid ul:last-child { border-bottom: 0; }
  .hd-em-hero-visual { min-height: 360px; }
  .hd-em-tablist { border-radius: 16px; }
}
@media (max-width: 575px) {
  .hd-em-hero-feats { grid-template-columns: 1fr; }
  .hd-em-pricing-grid,
  .hd-em-feat-cards { grid-template-columns: 1fr; }
  .hd-em-compare-row { grid-template-columns: 1fr 48px; }
  .hd-em-float-clients,
  .hd-em-float-quota { position: relative; left: auto; right: auto; top: auto; bottom: auto; margin: 0.5rem auto; width: min(100%, 220px); }
  .hd-em-hero-visual { display: flex; flex-direction: column; align-items: center; }
}

/* Alan ad? ? kurumsal e-posta ile ayn? dil, arama + TLD chip?ler */
.hd-em-domain-search {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
  margin: 1.25rem 0 1.5rem;
  max-width: 34rem;
}
.hd-em-domain-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  padding: 0.85rem 1.05rem;
  font-size: 1rem;
  color: var(--hd-navy);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.hd-em-domain-search input:focus {
  outline: none;
  border-color: var(--hd-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.hd-em-domain-search .btn {
  border-radius: 12px;
  padding-inline: 1.25rem;
  white-space: nowrap;
}
.hd-em-tld-more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0.5rem;
}
.hd-em-tld-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: var(--hd-navy);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.hd-em-tld-chip:hover {
  border-color: var(--hd-blue);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--hd-navy);
}
.hd-em-tld-chip b {
  font-weight: 700;
  font-size: 0.95rem;
}
.hd-em-tld-chip em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--hd-text-light);
}
.hd-em-pricing-grid-tld .hd-em-plan h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
@media (max-width: 575px) {
  .hd-em-domain-search { flex-direction: column; max-width: none; }
  .hd-em-domain-search .btn { width: 100%; }
}

/* Alan ad? alt sayfalar ? fiyat tablosu + transfer formu */
.hd-dm-subhero { padding-bottom: 2.5rem; }
.hd-dm-price-table-sec { padding-top: 1rem; }
.hd-dm-price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  background: #fff;
  box-shadow: var(--hd-shadow-sm);
}
.hd-dm-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.hd-dm-price-table th,
.hd-dm-price-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--hd-border);
  color: var(--hd-text);
  font-size: 0.94rem;
}
.hd-dm-price-table th {
  background: var(--hd-bg-tint);
  color: var(--hd-navy);
  font-weight: 700;
  white-space: nowrap;
}
.hd-dm-price-table tbody tr:last-child td { border-bottom: 0; }
.hd-dm-price-table tbody tr:hover { background: rgba(37, 99, 235, 0.03); }
.hd-dm-price-table td:last-child { text-align: right; white-space: nowrap; }
.hd-dm-price-table strong {
  color: var(--hd-navy);
  font-size: 1.05rem;
}
.hd-dm-transfer-form {
  margin-top: 1.25rem;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hd-dm-transfer-fields {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hd-dm-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
}
.hd-dm-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hd-navy);
}
.hd-dm-field input {
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  padding: 0.85rem 1.05rem;
  font-size: 1rem;
  color: var(--hd-navy);
  background: #fff;
}
.hd-dm-field input:focus {
  outline: none;
  border-color: var(--hd-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.hd-dm-whois-form { max-width: 36rem; }

/* Transfer sorgu sonucu kart? */
.hd-dm-result-sec {
  padding: 0 0 2.5rem;
  background: #fff;
}
.hd-dm-result {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-sm);
  padding: 1.5rem 1.6rem;
  background: #fff;
  max-width: 720px;
  margin: -1rem auto 0;
  position: relative;
  z-index: 2;
}
.hd-dm-result.is-available,
.hd-dm-result.is-blocked {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}
.hd-dm-result.is-registered {
  border-color: rgba(37, 99, 235, 0.28);
}
.hd-dm-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.hd-dm-result-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hd-text-light);
}
.hd-dm-result h2 {
  margin: 0;
  color: var(--hd-navy);
  font-size: 1.55rem;
  font-weight: 800;
  word-break: break-all;
}
.hd-dm-result-badge {
  flex: 0 0 auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--hd-bg-tint);
  color: var(--hd-navy);
}
.hd-dm-result.is-available .hd-dm-result-badge,
.hd-dm-result.is-blocked .hd-dm-result-badge {
  background: rgba(37, 99, 235, 0.12);
  color: var(--hd-blue);
}
.hd-dm-result.is-registered .hd-dm-result-badge {
  background: var(--hd-navy);
  color: #fff;
}
.hd-dm-result-status {
  margin: 0 0 0.5rem;
  color: var(--hd-text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.hd-dm-result-msg {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #FFF7ED;
  color: #9A3412;
  font-size: 0.9rem;
  line-height: 1.45;
}
.hd-dm-result-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}
.hd-dm-price-pill {
  background: var(--hd-bg-tint);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.hd-dm-price-pill small {
  display: block;
  color: var(--hd-text-light);
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
}
.hd-dm-price-pill strong {
  color: var(--hd-navy);
  font-size: 1.2rem;
  font-weight: 800;
}
.hd-dm-result-actions { margin-top: 0.5rem; }
.hd-dm-result-hint {
  margin: 0;
  color: var(--hd-text);
  font-size: 0.9rem;
}
.hd-dm-btn-loader { margin-left: 0.35rem; }
@media (max-width: 575px) {
  .hd-dm-result-prices { grid-template-columns: 1fr; }
  .hd-dm-result-head { flex-direction: column; }
}

/* Paket kar??la?t?rma tablosu */
.hd-cmp {
  padding: 2.5rem 0 3rem;
  background: var(--hd-bg-tint, #F5F7FB);
}
.hd-cmp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.hd-cmp-head h2 {
  margin: 0 0 0.35rem;
  color: var(--hd-navy);
  font-size: 1.45rem;
  font-weight: 800;
}
.hd-cmp-head p {
  margin: 0;
  color: var(--hd-text);
  font-size: 0.95rem;
}
.hd-cmp-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: var(--hd-navy);
  font-size: 0.82rem;
  font-weight: 600;
}
.hd-cmp-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-sm);
}
.hd-cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.hd-cmp-table th,
.hd-cmp-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--hd-border);
  vertical-align: middle;
  text-align: center;
  color: var(--hd-text);
  font-size: 0.92rem;
}
.hd-cmp-table thead th {
  padding-top: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--hd-border);
  font-weight: 400;
}
.hd-cmp-feat-col { width: 18%; min-width: 140px; }
.hd-cmp-table thead th small {
  display: block;
  color: var(--hd-text-light);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.hd-cmp-table thead th strong {
  display: block;
  color: var(--hd-navy);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.hd-cmp-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 7.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: #EEF3FB;
}
.hd-cmp-price s {
  color: var(--hd-text-light);
  font-size: 0.78rem;
}
.hd-cmp-price b {
  color: var(--hd-blue);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}
.hd-cmp-price em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hd-blue);
  opacity: 0.85;
}
.hd-cmp-table tbody th[scope="row"] {
  text-align: left;
  color: var(--hd-navy);
  font-weight: 600;
  white-space: nowrap;
}
.hd-cmp-feat {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
}
.hd-cmp-feat > i {
  flex: 0 0 auto;
  width: 1.15rem;
  color: var(--hd-navy);
  font-size: 0.95rem;
  text-align: center;
}
.hd-cmp-feat-txt { min-width: 0; }
.hd-cmp-tip {
  flex: 0 0 auto;
  margin: 0;
  color: #94A3B8;
  font-size: 0.85rem;
  cursor: help;
  line-height: 1;
}
.hd-cmp-tip:hover,
.hd-cmp-tip:focus { color: var(--hd-blue); outline: none; }
.hd-cmp-table tbody tr:last-child th,
.hd-cmp-table tbody tr:last-child td { border-bottom: 0; }
.hd-cmp-x,
.hd-cmp-ok {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  font-size: 0.72rem;
}
.hd-cmp-x {
  background: #F1F5F9;
  color: #94A3B8;
  border: 1px solid var(--hd-border);
}
.hd-cmp-ok {
  background: rgba(37, 99, 235, 0.12);
  color: var(--hd-blue);
}
.hd-cmp-cta-row td { padding-top: 1.1rem; padding-bottom: 1.25rem; }
.hd-em-pricing-cta-txt a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.hd-em-pricing-cta-txt a:hover { color: var(--hd-blue); }
@media (max-width: 767.98px) {
  .hd-cmp-head { flex-direction: column; align-items: stretch; }
}


/* SEO sa?-sol split bloklar (web hosting vb.) */
.hd-split {
  padding: 3rem 0 2.5rem;
  background: #fff;
}
.hd-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.25rem;
}
.hd-split-row:last-child { margin-bottom: 0; }
.hd-split-row.is-reverse .hd-split-copy { order: 2; }
.hd-split-row.is-reverse .hd-split-media { order: 1; }
.hd-split-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hd-text-light);
}
.hd-split-copy h2 {
  margin: 0 0 0.85rem;
  color: var(--hd-navy);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
}
.hd-split-copy p {
  margin: 0 0 1.15rem;
  color: var(--hd-text);
  font-size: 1rem;
  line-height: 1.7;
}
.hd-split-media {
  position: relative;
  min-height: 280px;
  border-radius: var(--hd-radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.72)),
    radial-gradient(circle at 30% 20%, #94a3b8 0, transparent 45%),
    radial-gradient(circle at 80% 70%, #64748b 0, transparent 40%),
    #1e293b;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.hd-split-media.is-alt {
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.7)),
    radial-gradient(circle at 70% 30%, #cbd5e1 0, transparent 42%),
    radial-gradient(circle at 20% 80%, #475569 0, transparent 38%),
    #334155;
}
.hd-split-media.is-panel,
.hd-split-media.is-cta {
  background: var(--hd-bg-tint);
  border: 1px solid var(--hd-border);
}
.hd-split-media > span {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 16ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hd-split-media.is-panel > span,
.hd-split-media.is-cta > span {
  color: var(--hd-navy);
  text-shadow: none;
  position: absolute;
  inset: auto 1rem 1rem;
  max-width: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.hd-split-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  width: min(100%, 220px);
  margin-bottom: 2rem;
}
.hd-split-mock i {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--hd-border);
  box-shadow: var(--hd-shadow-sm);
}
.hd-split-cta-card {
  background: #fff;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: var(--hd-shadow-md);
  min-width: 180px;
  margin-bottom: 2.5rem;
}
.hd-split-cta-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--hd-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hd-split-cta-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--hd-navy);
  font-size: 1.05rem;
}
.hd-split-cta-card em {
  display: inline-block;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hd-blue);
}
@media (max-width: 991.98px) {
  .hd-split-row,
  .hd-split-row.is-reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hd-split-row.is-reverse .hd-split-copy,
  .hd-split-row.is-reverse .hd-split-media { order: unset; }
  .hd-split-media { min-height: 220px; }
}

/* ---------- Giri? / Auth (split: form | promo) ---------- */
body.hd-auth .hd-promo,
body.hd-auth .hd-topbar,
body.hd-auth #header,
body.hd-auth .hd-partners,
body.hd-auth #footer,
body.hd-auth .master-breadcrumb {
  display: none !important;
}
body.hd-auth {
  background: #fff;
}
body.hd-auth #main-body {
  background: #fff;
  padding: 0;
  min-height: 100vh;
}
body.hd-auth #main-body > .row {
  margin: 0;
}
body.hd-auth #main-body > .row > [class*="col-"] {
  padding: 0;
  max-width: 100%;
  flex: 0 0 100%;
}
body.hd-auth .primary-content {
  padding: 0 !important;
  max-width: none !important;
  width: 100%;
}
.hd-login {
  width: 100%;
  min-height: 100vh;
}
.hd-login-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  min-height: 100vh;
  width: 100%;
  background: #fff;
}
.hd-login-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3.5rem) clamp(1.25rem, 3.5vw, 2.95rem);
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.hd-login-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.hd-login-brandbar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex: 1 1 auto;
}
.hd-login-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: #f1f3f7;
  color: var(--hd-navy);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.hd-login-back:hover {
  background: #e6eaf2;
  color: var(--hd-blue);
  text-decoration: none;
}
.hd-login-logo {
  display: block;
  min-width: 0;
  max-width: min(280px, 100%);
}
.hd-login-logo img {
  height: 52px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.hd-login-welcome {
  text-align: right;
  flex: 0 1 auto;
  max-width: 260px;
}
.hd-login-hello {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hd-navy);
  line-height: 1.25;
}
.hd-login-signup {
  margin: 0;
  font-size: 0.82rem;
  color: var(--hd-text-light);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.hd-login-signup a {
  font-weight: 700;
  color: var(--hd-blue);
  text-decoration: none;
  white-space: nowrap;
}
.hd-login-signup a:hover {
  color: var(--hd-blue-hover);
  text-decoration: underline;
}
.hd-login-form { width: 100%; }
.hd-login-field { margin-bottom: 1.15rem; }
.hd-login-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hd-navy);
}
.hd-login-input {
  position: relative;
  display: flex;
  align-items: center;
}
.hd-login-input .form-control {
  height: 52px;
  width: 100%;
  padding: 0.7rem 2.75rem 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f3f5f8;
  color: var(--hd-navy);
  font-size: 0.95rem;
  box-shadow: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.hd-login-input .form-control::placeholder {
  color: #9aa3b2;
}
.hd-login-input .form-control:focus {
  background: #fff;
  border-color: var(--hd-blue);
  box-shadow: 0 0 0 3px rgba(37, 104, 239, 0.12);
  outline: 0;
}
.hd-login-mail-ico {
  position: absolute;
  right: 0.85rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffe8e8;
  color: #e11d48;
  font-size: 0.7rem;
  pointer-events: none;
}
.hd-login-reveal {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8b95a8;
  border-radius: 8px;
  z-index: 2;
}
.hd-login-reveal:hover {
  color: var(--hd-navy);
  background: rgba(0, 0, 0, 0.04);
}
.hd-login-captcha {
  margin: 0.25rem 0 1rem;
}
.hd-login-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.35rem 0 1.35rem;
  flex-wrap: wrap;
}
.hd-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hd-text);
  cursor: pointer;
}
.hd-login-remember input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--hd-blue);
}
.hd-login-forgot {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hd-blue);
  text-decoration: none;
  white-space: nowrap;
}
.hd-login-forgot:hover {
  color: var(--hd-blue-hover);
  text-decoration: underline;
}
.hd-login-submit {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 1.25rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  letter-spacing: 0.01em;
}
.hd-login-panel .providerLinkingFeedback,
.hd-login-panel .social-signin {
  margin-top: 1.35rem;
}

/* Auth promo slider */
.hd-login-promo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, #eef3fb 0%, #f5f8fc 42%, #e8f0ff 100%);
  overflow: hidden;
}
.hd-auth-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hd-auth-viewport {
  position: relative;
  width: 100%;
  height: 460px;
}
.hd-auth-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  pointer-events: none;
}
.hd-auth-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.hd-auth-mock {
  position: relative;
  height: 230px;
  flex-shrink: 0;
}
.hd-auth-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(19, 36, 95, 0.07);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(19, 36, 95, 0.1);
}
.hd-auth-card--list {
  top: 12px;
  left: 0;
  width: 168px;
  padding: 0.95rem 0.9rem 0.85rem;
  z-index: 2;
}
.hd-auth-card-brand {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hd-text-light);
}
.hd-auth-card--list ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.hd-auth-card--list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hd-navy);
}
.hd-auth-card--list li i {
  font-size: 0.45rem;
  color: var(--hd-blue);
  opacity: 0.75;
}
.hd-auth-card-badge {
  display: block;
  text-align: center;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.25;
}
.hd-auth-card--hero {
  top: 36px;
  right: 0;
  left: 92px;
  padding: 1rem 1rem 0.95rem;
  z-index: 1;
}
.hd-auth-card-hero-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef1f6;
}
.hd-auth-card-ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dbe7ff, #8eb6ff);
  color: var(--hd-navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hd-auth-card-hero-top strong {
  display: block;
  font-size: 0.95rem;
  color: var(--hd-navy);
  line-height: 1.2;
}
.hd-auth-card-hero-top em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--hd-text-light);
}
.hd-auth-card-hero-bot strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.86rem;
  color: var(--hd-navy);
}
.hd-auth-card-hero-bot span {
  display: block;
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--hd-text-light);
}
.hd-auth-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hd-auth-title {
  margin: 0 0 0.6rem;
  min-height: 2.6em;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--hd-navy);
}
.hd-auth-lead {
  margin: 0 0 1.15rem;
  min-height: 3.2em;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #6b7285;
}
.hd-auth-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.4rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.hd-auth-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.hd-auth-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5d0e6;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.hd-auth-dots button.is-active {
  width: 1.2rem;
  background: var(--hd-blue);
}
@media (max-width: 991.98px) {
  .hd-login-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hd-login { min-height: 0; }
  body.hd-auth #main-body { min-height: 0; }
  .hd-login-panel {
    max-width: none;
    padding: 1.5rem 1.25rem 2rem;
    min-height: auto;
  }
  .hd-login-top {
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    margin-bottom: 1.5rem;
  }
  .hd-login-welcome { text-align: left; max-width: none; }
  .hd-login-signup { align-items: flex-start; }
  .hd-login-promo {
    min-height: 0;
    padding: 2rem 1.25rem 2.25rem;
  }
  .hd-auth-stage {
    max-width: 420px;
    margin: 0 auto;
  }
  .hd-auth-viewport { height: 430px; }
  .hd-auth-mock { height: 210px; }
  .hd-auth-title,
  .hd-auth-lead { min-height: 0; }
}

/* Register form */
.hd-login.is-register .hd-login-shell {
  min-height: 100vh;
  align-items: stretch;
}
.hd-login.is-register .hd-login-panel {
  max-width: 640px;
  justify-content: flex-start;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 2.5rem;
  overflow-y: auto;
}
.hd-login.is-register .hd-login-promo {
  position: sticky;
  top: 0;
  align-self: start;
}
.hd-reg-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.35rem;
  margin: 0 0 1.35rem;
  background: #f1f3f7;
  border-radius: 999px;
}
.hd-reg-type-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7b8494;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.hd-reg-type-btn i { font-size: 0.95rem; }
.hd-reg-type-btn.is-active {
  background: #fff;
  color: var(--hd-blue);
  box-shadow: 0 4px 14px rgba(19, 36, 95, 0.1);
}
.hd-corp-fields {
  display: none;
  margin: 0 0 1.15rem;
  padding: 1rem 0 0.15rem;
  border-top: 1px solid #e8ecf2;
}
.hd-corp-fields.is-open { display: block; }
.hd-reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin-bottom: 0.35rem;
}
.hd-reg-grid .hd-login-field { margin-bottom: 0; }
.hd-reg-span2 { grid-column: 1 / -1; }
.hd-reg-extra { margin-top: 1rem; }
.hd-login-input--cf input,
.hd-login-input--cf select,
.hd-login-input--cf textarea,
.hd-reg-form .hd-login-input select.form-control,
.hd-reg-form .hd-login-input select.field {
  height: 52px;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f3f5f8;
  color: var(--hd-navy);
  font-size: 0.95rem;
  box-shadow: none;
}
.hd-login-input--cf textarea {
  height: auto;
  min-height: 52px;
  padding-top: 0.75rem;
}
.hd-login-input--cf input:focus,
.hd-login-input--cf select:focus,
.hd-reg-form .hd-login-input select:focus {
  background: #fff;
  border-color: var(--hd-blue);
  box-shadow: 0 0 0 3px rgba(37, 104, 239, 0.12);
  outline: 0;
}
.hd-reg-form .field-help-text {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--hd-text-light);
}
.hd-reg-marketing {
  margin: 1.15rem 0;
  padding: 1rem 0 0;
  border-top: 1px solid #e8ecf2;
  font-size: 0.9rem;
  color: var(--hd-text);
}
.hd-reg-marketing-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--hd-navy);
}
.hd-reg-tos {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.85rem 0 1.15rem;
  font-size: 0.88rem;
  color: var(--hd-text);
  cursor: pointer;
}
.hd-reg-tos input {
  margin-top: 0.2rem;
  accent-color: var(--hd-blue);
}
.hd-reg-tos a {
  color: var(--hd-blue);
  font-weight: 600;
}
.hd-reg-form .generate-password {
  height: 40px;
  border-radius: 10px;
}
.hd-reg-form .password-strength-meter { margin-top: 0.35rem; }
@media (max-width: 991.98px) {
  .hd-login.is-register .hd-login-promo {
    position: relative;
    height: auto;
    min-height: 360px;
  }
}
@media (max-width: 575.98px) {
  .hd-reg-grid { grid-template-columns: 1fr; }
  .hd-reg-type {
    border-radius: 14px;
    grid-template-columns: 1fr;
  }
  .hd-reg-type-btn { border-radius: 10px; }
}

/* ---------- ?ifre olu?tur modal ---------- */
.hd-pw-modal.modal {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hd-pw-modal.modal.show {
  display: flex !important;
}
.hd-pw-modal .modal-dialog {
  margin: auto;
  width: 100%;
  max-width: 440px;
}
.hd-pw-modal-content {
  border: 1px solid rgba(19, 36, 95, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(19, 36, 95, 0.18);
  overflow: hidden;
  background: #fff;
}
.hd-pw-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem 1rem;
  border-bottom: 1px solid #eef1f6;
  background: #fff;
}
.hd-pw-modal-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}
.hd-pw-modal-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dbe7ff, #8eb6ff);
  color: var(--hd-navy);
  flex-shrink: 0;
}
.hd-pw-modal-header .modal-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hd-navy);
  line-height: 1.3;
}
.hd-pw-modal-sub {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--hd-text-light);
}
.hd-pw-modal-close {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #f3f5f8;
  color: var(--hd-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.hd-pw-modal-close:hover {
  background: #e8ecf2;
  color: var(--hd-blue);
}
.hd-pw-modal-body {
  padding: 1.25rem 1.35rem 0.85rem;
}
.hd-pw-modal-alert {
  border-radius: 10px;
  margin-bottom: 1rem;
}
.hd-pw-field {
  margin-bottom: 1rem;
}
.hd-pw-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--hd-navy);
}
.hd-pw-length {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hd-pw-length .form-control {
  width: 5.5rem;
  height: 44px;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  background: #f7f8fb;
  color: var(--hd-navy);
  font-weight: 700;
  text-align: center;
  box-shadow: none;
}
.hd-pw-length .form-control:focus {
  background: #fff;
  border-color: var(--hd-blue);
  box-shadow: 0 0 0 3px rgba(37, 104, 239, 0.12);
}
.hd-pw-length-hint {
  font-size: 0.8rem;
  color: var(--hd-text-light);
}
.hd-pw-output {
  height: 48px !important;
  border: 1px solid #e4e8ef !important;
  border-radius: 10px !important;
  background: #f7f8fb !important;
  color: var(--hd-navy) !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em;
  box-shadow: none !important;
}
.hd-pw-output:focus {
  background: #fff !important;
  border-color: var(--hd-blue) !important;
  box-shadow: 0 0 0 3px rgba(37, 104, 239, 0.12) !important;
}
.hd-pw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}
.hd-pw-btn-ghost {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.45rem 0.9rem !important;
  border: 1px solid #e4e8ef !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--hd-navy) !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.hd-pw-btn-ghost:hover {
  background: #f7f8fb !important;
  border-color: #d5dbe6 !important;
  color: var(--hd-blue) !important;
}
.hd-pw-modal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 1rem 1.35rem 1.25rem;
  border-top: 1px solid #eef1f6;
  background: #fafbfd;
}
.hd-pw-btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1.1rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
}
@media (max-width: 480px) {
  .hd-pw-modal .modal-dialog { max-width: 100%; }
  .hd-pw-modal-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .hd-pw-btn-primary,
  .hd-pw-modal-footer .hd-pw-btn-ghost {
    width: 100%;
  }
}

/* Domain Sorgulama ? sidebars?z sonu? alan? */
.hd-ds-results-wrap #order-standard_cart.hd-domain-sorgulama {
  max-width: 100%;
}
.hd-ds-results-wrap #order-standard_cart.hd-domain-sorgulama .hd-dompage {
  grid-template-columns: 1fr !important;
}
.hd-ds-results-wrap #order-standard_cart.hd-domain-sorgulama .hd-dompage-side {
  display: none !important;
}

/* ========== Domain Sorgulama SEO Landing ========== */
body.hd-landing .master-breadcrumb:has(+ * .hd-ds-page),
body.hd-landing:has(.hd-ds-page) .master-breadcrumb {
  display: none !important;
}

.hd-ds-page {
  --hd-ds-max: 1100px;
  background: #fff;
  color: var(--hd-navy, #172B70);
}

.hd-ds-hero {
  position: relative;
  padding: 3.25rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(37, 104, 239, 0.45), transparent 55%),
    linear-gradient(135deg, #0f1f4d 0%, #172B70 45%, #1a3a8f 100%);
  color: #fff;
  overflow: hidden;
}
.hd-ds-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hd-ds-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hd-ds-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hd-ds-hero h1 {
  margin: 0 0 0.65rem;
  color: #fff !important;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.hd-ds-lead {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hd-ds-search {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.hd-ds-search .domain-checker-bg {
  padding: 0 !important;
  background: none !important;
}
.hd-ds-input-wrap {
  display: flex !important;
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
  padding: 0.4rem !important;
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 40px rgba(8, 18, 48, 0.28) !important;
  overflow: hidden;
}
.hd-ds-input-wrap .form-control {
  border: 0 !important;
  box-shadow: none !important;
  min-height: 56px !important;
  font-size: 1.08rem !important;
  color: var(--hd-navy) !important;
  border-radius: 12px !important;
  padding-left: 1.1rem !important;
}
.hd-ds-input-wrap .form-control:focus {
  box-shadow: none !important;
}
.hd-ds-input-wrap .btn.domain-check-availability,
.hd-ds-input-wrap .btn-primary {
  min-height: 56px !important;
  min-width: 160px;
  margin: 0 !important;
  padding: 0 1.35rem !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--hd-green) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.98rem !important;
  box-shadow: 0 8px 18px rgba(42, 199, 105, 0.35) !important;
  white-space: nowrap;
}
.hd-ds-input-wrap .btn.domain-check-availability:hover,
.hd-ds-input-wrap .btn-primary:hover {
  background: #22b55c !important;
}

.hd-ds-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.35rem;
  margin-top: 1.25rem;
}
.hd-ds-quicklinks a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
}
.hd-ds-quicklinks a i {
  margin-right: 0.35rem;
  opacity: 0.85;
}
.hd-ds-quicklinks a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

.hd-ds-results-wrap {
  padding: 1.75rem 0 0.5rem;
  background: #F5F7FB;
}
.hd-ds-results-wrap .container {
  max-width: var(--hd-ds-max);
}
.hd-ds-results-wrap .hd-domain-sorgulama,
.hd-ds-results-wrap .hd-cart-wrap {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.hd-ds-results-wrap #DomainSearchResults {
  margin: 0;
}
.hd-ds-results-wrap .hd-dom-hero.is-available {
  margin-top: 0;
}

.hd-ds-sec-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.hd-ds-sec-head h2 {
  margin: 0 0 0.55rem;
  color: var(--hd-navy);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hd-ds-sec-head p {
  margin: 0;
  color: #64748B;
  font-size: 1rem;
  line-height: 1.55;
}

.hd-ds-features {
  padding: 3.5rem 0;
  background: #fff;
}
.hd-ds-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
}
.hd-ds-feat-grid article {
  text-align: left;
}
.hd-ds-feat-grid h3 {
  margin: 0.75rem 0 0.4rem;
  color: var(--hd-navy);
  font-size: 1.02rem;
  font-weight: 750;
}
.hd-ds-feat-grid p {
  margin: 0;
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.5;
}
.hd-ds-ico {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
}
.hd-ds-ico.is-blue { background: #2568EF; }
.hd-ds-ico.is-pink { background: #E85D8E; }
.hd-ds-ico.is-orange { background: #F08A3A; }
.hd-ds-ico.is-green { background: #2AC769; }
.hd-ds-ico.is-purple { background: #7B61FF; }
.hd-ds-ico.is-teal { background: #14B8A6; }
.hd-ds-ico.is-navy { background: #172B70; }
.hd-ds-ico.is-red { background: #EF4444; }
.hd-ds-ico.is-gray { background: #64748B; }

.hd-ds-split {
  padding: 1rem 0 3rem;
  background: #fff;
}
.hd-ds-split-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.25rem 0;
  border-top: 1px solid #EEF2F7;
}
.hd-ds-split-row.is-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.hd-ds-split-row.is-reverse .hd-ds-split-copy { order: 2; }
.hd-ds-split-row.is-reverse .hd-ds-split-visual { order: 1; }
.hd-ds-split-copy h2 {
  margin: 0 0 0.75rem;
  color: var(--hd-navy);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hd-ds-split-copy p {
  margin: 0 0 1rem;
  color: #64748B;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 34rem;
}
.hd-ds-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--hd-blue) !important;
  font-weight: 700;
  text-decoration: none !important;
}
.hd-ds-link:hover {
  color: var(--hd-blue-hover) !important;
}
.hd-ds-illus {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 20px;
  background: linear-gradient(160deg, #EEF4FF, #F8FBFF);
  color: var(--hd-blue);
  font-size: 3.2rem;
  box-shadow: 0 12px 28px rgba(23, 43, 112, 0.06);
}
.hd-ds-illus.is-mail { color: #F08A3A; background: linear-gradient(160deg, #FFF4E8, #FFFBF5); }
.hd-ds-illus.is-host { color: #2568EF; }
.hd-ds-illus.is-ssl { color: #2AC769; background: linear-gradient(160deg, #E8F9EF, #F5FDF8); }

.hd-ds-prices {
  padding: 3rem 0 3.5rem;
  background: #F5F7FB;
}
.hd-ds-price-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hd-ds-seo {
  padding: 3.25rem 0;
  background: #fff;
  border-top: 1px solid #EEF2F7;
}
.hd-ds-seo-copy {
  max-width: 46rem;
  margin: 0 auto;
}
.hd-ds-seo-copy p {
  margin: 0 0 1.15rem;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.75;
}
.hd-ds-seo-copy p:last-child {
  margin-bottom: 0;
}

/* ========== WHOIS sonu?lar? ========== */
.hd-whois-results {
  padding: 2.5rem 0 1rem;
  background: #F5F7FB;
}
.hd-whois-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.hd-whois-head h2 {
  margin: 0 0 0.45rem;
  color: var(--hd-navy);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
}
.hd-whois-domain {
  margin: 0 0 1rem;
  color: var(--hd-blue);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hd-whois-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.hd-whois-tabs button {
  border: 1px solid #E2E8F0;
  background: #fff;
  color: #475569;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.hd-whois-tabs button.is-active {
  background: #EEF4FF;
  border-color: #C7DBFF;
  color: var(--hd-blue);
}
.hd-whois-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.hd-whois-card {
  background: #fff;
  border: 1px solid #E7EDF8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(23, 43, 112, 0.04);
}
.hd-whois-card header {
  background: var(--hd-navy);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.hd-whois-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) 1.4fr;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-top: 1px solid #F1F5F9;
  font-size: 0.9rem;
}
.hd-whois-row:nth-child(even) {
  background: #FAFBFD;
}
.hd-whois-row span {
  color: #64748B;
  font-weight: 600;
}
.hd-whois-row em {
  color: var(--hd-navy);
  font-style: normal;
  font-weight: 600;
  word-break: break-word;
}
.hd-whois-card-raw {
  grid-column: 1 / -1;
}
.hd-whois-raw {
  margin: 0;
  padding: 1rem;
  max-height: 280px;
  overflow: auto;
  background: #0F172A;
  color: #E2E8F0;
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.hd-whois-dns-table-wrap {
  background: #fff;
  border: 1px solid #E7EDF8;
  border-radius: 14px;
  overflow: auto;
}
.hd-whois-dns-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
.hd-whois-dns-table th,
.hd-whois-dns-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #EEF2F7;
  text-align: left;
  font-size: 0.9rem;
}
.hd-whois-dns-table th {
  background: #F8FAFC;
  color: #64748B;
  font-weight: 700;
}
.hd-whois-alert,
.hd-whois-available,
.hd-whois-empty {
  background: #fff;
  border: 1px solid #E7EDF8;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}
.hd-whois-available .hd-whois-domain {
  color: var(--hd-green);
}

/* ========== 404 ========== */
body.hd-error-page .master-breadcrumb,
body:has(.hd-404) .master-breadcrumb {
  display: none !important;
}
body.hd-error-page #main-body,
body:has(.hd-404) #main-body {
  padding: 0 !important;
  background: transparent !important;
}
.hd-404 {
  min-height: calc(100vh - 220px);
  padding: 3.5rem 0 4rem;
  background: linear-gradient(160deg, #172B70 0%, #1B54C9 55%, #143fa0 100%);
  color: #fff;
}
.hd-404-hero {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.hd-404-code {
  margin: 0;
  font-size: clamp(4rem, 12vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.95;
}
.hd-404-hero h1 {
  margin: 0.35rem 0 0.65rem;
  color: #fff !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}
.hd-404-lead {
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}
.hd-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hd-404-btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  padding: 0.7rem 1.25rem !important;
}
.hd-404-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.hd-404-btn-solid {
  border: 0 !important;
  background: var(--hd-green) !important;
  color: #fff !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  padding: 0.7rem 1.25rem !important;
  box-shadow: 0 10px 22px rgba(42, 199, 105, 0.28);
}
.hd-404-btn-solid:hover {
  background: #22b55c !important;
}
.hd-404-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 980px;
  margin: 0 auto;
}
.hd-404-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.05rem;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(8, 18, 48, 0.16);
  transition: transform .15s ease;
}
.hd-404-card:hover {
  transform: translateY(-2px);
}
.hd-404-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #EEF4FF;
  color: var(--hd-blue);
  flex-shrink: 0;
}
.hd-404-card-txt {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.hd-404-card-txt strong {
  color: var(--hd-navy);
  font-size: 0.95rem;
  font-weight: 800;
}
.hd-404-card-txt small {
  color: #64748B;
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .hd-whois-grid,
  .hd-404-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .hd-whois-grid,
  .hd-404-grid {
    grid-template-columns: 1fr;
  }
  .hd-whois-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (max-width: 991px) {
  .hd-ds-feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hd-ds-split-row,
  .hd-ds-split-row.is-reverse {
    grid-template-columns: 1fr;
  }
  .hd-ds-split-row.is-reverse .hd-ds-split-copy,
  .hd-ds-split-row.is-reverse .hd-ds-split-visual { order: initial; }
}
@media (max-width: 640px) {
  .hd-ds-hero { padding: 2.25rem 0 2.5rem; }
  .hd-ds-feat-grid { grid-template-columns: 1fr; }
  .hd-ds-input-wrap {
    flex-direction: column;
    padding: 0.55rem !important;
  }
  .hd-ds-input-wrap .btn.domain-check-availability,
  .hd-ds-input-wrap .btn-primary {
    width: 100%;
    min-width: 0;
  }
  .hd-ds-quicklinks { gap: 0.65rem 1rem; }
}

/* —— HD Alert Modal (inline WHMCS hataları → popup) —— */
.hd-alert-modal-open { overflow: hidden; }
.hd-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hd-alert-modal[hidden] { display: none !important; }
.hd-alert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
}
.hd-alert-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hd-border, #E7EDF8);
  box-shadow: 0 18px 48px rgba(23, 43, 112, 0.2);
  padding: 1.15rem 1.2rem 1.2rem;
}
.hd-alert-modal-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.hd-alert-modal-ico {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fef2f2;
  color: #dc2626;
}
.hd-alert-modal.is-warning .hd-alert-modal-ico { background: #fff7ed; color: #ea580c; }
.hd-alert-modal.is-success .hd-alert-modal-ico { background: #ecfdf5; color: #059669; }
.hd-alert-modal.is-info .hd-alert-modal-ico { background: #eff6ff; color: #2563eb; }
.hd-alert-modal-head h2 {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--hd-navy, #172B70);
  line-height: 1.3;
}
.hd-alert-modal-x {
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
}
.hd-alert-modal-x:hover { color: #64748b; }
.hd-alert-modal-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}
.hd-alert-modal-body p { margin: 0 0 0.5rem; }
.hd-alert-modal-body ul { margin: 0.35rem 0 0; padding-left: 1.15rem; }
.hd-alert-modal-body li { margin: 0.25rem 0; }
.hd-alert-modal-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}
.hd-alert-modal-ok {
  border: 0;
  border-radius: 10px;
  background: var(--hd-blue, #2568EF);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 1.15rem;
  cursor: pointer;
}
.hd-alert-modal-ok:hover { background: var(--hd-blue-hover, #1B54C9); }
.hd-alert-consumed { display: none !important; }
