/* UltraMail Design System */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --success: #10b981;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 80px rgba(37, 99, 235, 0.16);
  --font: 'Manrope', system-ui, sans-serif;
  --display: 'Sora', 'Manrope', sans-serif;
}

body.ultramail-body,
body.ultramail-body.primary-bg-color {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

.ultramail-body #main-body {
  background: transparent;
  padding: 0;
  min-height: 40vh;
}

.ultramail-body .master-breadcrumb {
  display: none;
}

.ultramail-body:not(.page-homepage) .master-breadcrumb {
  display: block;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  margin: 0;
  padding: 0.85rem 0;
}

/* Standart içerik sayfaları — full-bleed / auth / clientarea / support sayfalarında üst boşluk yok */
.ultramail-body:not(.page-homepage):not(.page-cart):not(.page-contact):not(.page-domain-pricing):not(.page-fiyatlandirma):not(.page-login):not(.page-register):not(.page-password-reset-container):not(.page-clientarea):not(.page-support) #main-body {
  padding: 2rem 0 3rem;
  background: var(--gray-50);
}

.ultramail-body:not(.page-homepage):not(.page-cart):not(.page-contact):not(.page-domain-pricing):not(.page-fiyatlandirma):not(.page-login):not(.page-register):not(.page-password-reset-container):not(.page-clientarea):not(.page-support) .primary-content {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* Top bar */
.um-topbar {
  background: linear-gradient(90deg, #0b1220 0%, #0f172a 50%, #111827 100%);
  color: rgba(255,255,255,0.88);
  font-size: 0.8125rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1300; /* sticky header (1200) üstünde kalsın — dil/para dropdown */
  overflow: visible;
}

.um-topbar a { color: rgba(255,255,255,0.88); }
.um-topbar a:hover { color: #fff; text-decoration: none; }

.um-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.um-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.um-topbar-left i {
  opacity: 0.75;
  margin-right: 0.3rem;
}

.um-topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
}

/* Locale dropdowns */
.um-locale {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  z-index: 2;
}

.um-dd {
  position: relative;
  z-index: 1;
}
.um-dd.is-open {
  z-index: 5;
}

.um-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.28rem 0.55rem 0.28rem 0.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: var(--font);
}

.um-locale-dark .um-dd-trigger {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}

.um-locale-dark .um-dd-trigger:hover,
.um-locale-dark .um-dd.is-open .um-dd-trigger {
  background: rgba(255,255,255,0.12);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.um-locale-light .um-dd-trigger {
  background: #fff;
  border-color: var(--gray-200);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(15,23,42,0.04);
}

.um-locale-light .um-dd-trigger:hover,
.um-locale-light .um-dd.is-open .um-dd-trigger {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
}

.um-dd-ico {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.um-flag {
  color: #fff;
}

.um-flag-tr { background: linear-gradient(135deg, #e11d48, #be123c) !important; }
.um-flag-en { background: linear-gradient(135deg, #1d4ed8, #1e3a8a) !important; }
.um-flag-de { background: linear-gradient(135deg, #111827, #374151) !important; }

.um-locale-light .um-dd-ico {
  background: var(--gray-100);
}

.um-dd-ico-curr {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary-light);
  background: rgba(37, 99, 235, 0.18) !important;
}

.um-locale-light .um-dd-ico-curr {
  background: rgba(37, 99, 235, 0.1) !important;
  color: var(--primary);
}

.um-dd-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}

.um-dd-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
}

.um-dd-value {
  font-size: 0.82rem;
  font-weight: 700;
  max-width: 7.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.um-dd-code {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
  letter-spacing: 0.02em;
}

.um-locale-light .um-dd-code {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-dark);
}

.um-dd-caret {
  font-size: 0.65rem;
  opacity: 0.65;
  transition: transform 0.2s ease;
}

.um-dd.is-open .um-dd-caret {
  transform: rotate(180deg);
}

.um-dd-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(280px, calc(100vw - 2rem));
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transform-origin: top right;
  transition: 0.18s ease;
  z-index: 20;
}

/* Topbar beyaz metin renginin panele sızmasını engelle */
.um-topbar .um-dd-panel,
.um-topbar .um-dd-panel a,
.um-topbar .um-dd-panel button {
  color: var(--dark);
}
.um-topbar .um-dd-panel a:hover {
  color: var(--dark);
  text-decoration: none;
}

.um-dd.is-open .um-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.um-dd-panel-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0.45rem 0.7rem 0.55rem;
}

.um-dd-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.7rem;
  border: 0;
  background: transparent;
  border-radius: 12px;
  text-align: left;
  color: var(--dark);
  text-decoration: none !important;
  cursor: pointer;
  transition: 0.15s ease;
  font-family: var(--font);
}

.um-dd-item:hover {
  background: var(--gray-50);
  color: var(--dark);
}

.um-dd-item.is-active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
}

.um-dd-item-flag,
.um-dd-item-symbol {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--gray-100);
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}

.um-dd-item-symbol {
  font-size: 0.95rem;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
}

.um-dd-item-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  line-height: 1.15;
}

.um-dd-item-text strong {
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--gray-800);
}

.um-dd-item-text small {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 600;
}

.um-dd-item:hover .um-dd-item-text strong,
.um-dd-item.is-active .um-dd-item-text strong {
  color: var(--gray-800);
}

.um-dd-item-code {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gray-600);
  background: var(--gray-100);
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
}

.um-dd-check {
  font-size: 0.75rem;
  color: var(--primary);
  opacity: 0;
}

.um-dd-item.is-active .um-dd-check {
  opacity: 1;
}

.um-dd-item.is-active .um-dd-item-code {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-dark);
}

.um-dd.is-loading .um-dd-trigger {
  opacity: 0.7;
  pointer-events: none;
}

.um-dd.is-loading .um-dd-caret {
  animation: um-spin 0.7s linear infinite;
}

@keyframes um-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
  .um-topbar {
    padding: 0.4rem 0;
  }
  .um-topbar-inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-width: 0;
  }
  .um-topbar-left {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .um-topbar-left a {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.75rem;
  }
  .um-topbar-left span:last-child { display: none; }
  .um-topbar-sep { display: none; }

  .um-locale {
    flex: 0 0 auto;
    gap: 0.35rem;
    max-width: 100%;
  }
  .um-dd-trigger {
    min-height: 34px;
    gap: 0.3rem;
    padding: 0.18rem 0.35rem 0.18rem 0.22rem;
    border-radius: 11px;
  }
  .um-dd-ico {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 0.62rem;
  }
  .um-dd-ico-curr { font-size: 0.78rem; }
  /* Kompakt: uzun "Türkçe / Türk Lirası" metinlerini gizle */
  .um-dd-meta { display: none !important; }
  .um-dd-value { max-width: 4.8rem; font-size: 0.78rem; }
  .um-dd-label { display: none; }
  .um-dd-code {
    font-size: 0.68rem;
    padding: 0.16rem 0.38rem;
  }
  .um-dd-caret { font-size: 0.58rem; }
  .um-dd-panel {
    width: min(260px, calc(100vw - 1.25rem));
    right: 0;
    left: auto;
  }
  .um-dd[data-um-dd="lang"] .um-dd-panel {
    right: auto;
    left: 0;
  }
}

@media (max-width: 480px) {
  .um-topbar-left { display: none; }
  .um-topbar-inner {
    justify-content: flex-end;
  }
  .um-locale {
    width: 100%;
    justify-content: flex-end;
  }
  .um-dd-trigger {
    min-height: 32px;
    padding: 0.15rem 0.3rem 0.15rem 0.18rem;
  }
  .um-dd-ico {
    width: 24px;
    height: 24px;
  }
  /* Para biriminde kod + caret yeterli */
  .um-locale .um-dd-caret { margin-left: -0.05rem; }
}

/* Pricing toolbar locale on mobile */
@media (max-width: 767px) {
  .um-toolbar {
    gap: 0.55rem;
  }
  .um-toolbar .um-locale {
    width: 100%;
    justify-content: center;
  }

  /* Yatay taşma / sağda boşluk — genel mobil koruma */
  .um-header,
  .um-nav,
  .um-hero,
  .um-footer,
  .container {
    max-width: 100%;
  }
  .um-nav {
    gap: 0.55rem;
    min-width: 0;
  }
  .um-nav-actions {
    flex-shrink: 0;
    gap: 0.35rem !important;
  }
  .um-cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    max-width: none;
    width: auto;
  }
  .um-cookie-banner-inner {
    max-width: 100%;
    box-sizing: border-box;
  }
  .um-float-chip {
    max-width: calc(100% - 1rem);
  }
  .um-header-cart .um-cart-preview,
  .um-dd-panel {
    max-width: calc(100vw - 1rem);
  }
}

/* ========== Mobile page gutters (tüm sayfalar) ========== */
@media (max-width: 991px) {
  body.ultramail-body .container,
  body.ultramail-body .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.ultramail-body .um-topbar .container,
  body.ultramail-body .um-header .container,
  body.ultramail-body .um-footer .container,
  body.ultramail-body .um-client-nav > .container,
  body.ultramail-body .um-client-welcome-inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Kart / içerik kenarları ekrana yapışmasın */
  body.ultramail-body:not(.page-homepage):not(.page-cart):not(.page-contact):not(.page-domain-pricing):not(.page-fiyatlandirma):not(.page-login):not(.page-register):not(.page-password-reset-container):not(.page-clientarea):not(.page-support) .primary-content {
    padding: 1.15rem !important;
  }

  body.page-clientarea:not(.page-clientareahome) .primary-content {
    padding: 1.1rem !important;
  }

  body.page-clientarea #main-body {
    padding: 0.85rem 0 2rem !important;
  }

  body.page-login .primary-content,
  body.page-register .primary-content,
  body.page-password-reset-container .primary-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 575px) {
  body.ultramail-body .container,
  body.ultramail-body .container-fluid,
  body.ultramail-body .um-topbar .container,
  body.ultramail-body .um-header .container,
  body.ultramail-body .um-footer .container,
  body.ultramail-body .um-client-nav > .container,
  body.ultramail-body .um-client-welcome-inner {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }

  body.ultramail-body:not(.page-homepage):not(.page-cart):not(.page-contact):not(.page-domain-pricing):not(.page-fiyatlandirma):not(.page-login):not(.page-register):not(.page-password-reset-container):not(.page-clientarea):not(.page-support) .primary-content {
    padding: 1rem !important;
    border-radius: 14px !important;
  }

  body.page-clientarea:not(.page-clientareahome) .primary-content {
    padding: 0.95rem !important;
    border-radius: 12px !important;
  }

  /* Hero / bölüm iç boşlukları */
  .um-hero {
    padding-left: 0;
    padding-right: 0;
  }
  .um-footer {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Legacy switch (kept for rare inline use) */
.um-switchers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.um-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 2px;
  gap: 2px;
}

.um-switch button,
.um-switch a {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.2;
  text-decoration: none;
}

.um-switch button.is-active,
.um-switch a.is-active {
  background: var(--primary);
  color: #fff;
}

/* Header */
.um-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  overflow: visible;
}

.um-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
  overflow: visible;
  position: relative;
}

.um-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.um-logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.um-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  overflow: visible;
}

.um-menu a {
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}

.um-menu a:hover,
.um-menu a.is-active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  text-decoration: none;
}

/* Mega menu */
.um-mega {
  position: relative;
  overflow: visible;
}
.um-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: 0.2s ease;
}
.um-mega-trigger i {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.um-mega.is-open .um-mega-trigger,
.um-mega.is-active .um-mega-trigger,
.um-mega-trigger:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}
.um-mega.is-open .um-mega-trigger i {
  transform: rotate(180deg);
}
.um-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(720px, calc(100vw - 2rem));
  padding-top: 0.65rem; /* trigger ile panel arası hover köprüsü */
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 1500;
}
.um-mega-panel-inner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}
.um-mega.is-open .um-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.um-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.um-mega-col {
  padding: 1.15rem 1.1rem 0.85rem;
}
.um-mega-col + .um-mega-col {
  border-left: 1px solid #eef2f7;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 55%);
}
.um-mega-col h4 {
  margin: 0 0 0.75rem;
  padding: 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2563eb;
}
.um-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.7rem;
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  transition: 0.15s ease;
}
.um-mega-item:hover,
.um-mega-item.is-active {
  background: #eff6ff;
}
.um-mega-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2563eb;
  flex-shrink: 0;
  font-size: 1rem;
}
.um-mega-ico-box { background: linear-gradient(135deg, #ecfeff, #cffafe); color: #0891b2; }
.um-mega-ico-setup { background: linear-gradient(135deg, #f5f3ff, #ede9fe); color: #7c3aed; }
.um-mega-ico-backup { background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: #059669; }
.um-mega-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.um-mega-text strong {
  font-size: 0.92rem;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.25;
}
.um-mega-text em {
  font-style: normal;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
  font-weight: 550;
}
.um-mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border-top: 1px solid #eef2f7;
  background: #0f172a;
  color: #fff;
}
.um-mega-foot strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 750;
}
.um-mega-foot span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 0.15rem;
}
.um-mega-foot .um-btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.um-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.um-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  text-decoration: none !important;
  transition: 0.2s ease;
  cursor: pointer;
  line-height: 1.2;
}

.um-btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.um-btn-primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-1px);
  color: #fff !important;
}

.um-btn-ghost {
  background: transparent;
  color: var(--dark) !important;
  border: 1px solid var(--gray-200);
}

.um-btn-ghost:hover {
  border-color: var(--primary-light);
  color: var(--primary) !important;
}

.um-btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff !important;
}

.um-btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 1rem;
}

.um-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--dark);
}

/* Hero */
.um-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2.75rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(14, 165, 233, 0.16), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 70%);
}

.um-hero-slides {
  position: relative;
  width: 100%;
}

.um-hero-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.um-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}

.um-hero-slide.is-measure {
  position: relative !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  z-index: 0;
}

.um-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.um-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.um-badge-alert {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.28);
}

.um-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.05rem, 3.8vw, 3.35rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--dark);
}

.um-hero h1 span {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.um-hero-lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 36rem;
  margin-bottom: 1.4rem;
  line-height: 1.55;
}

.um-hero-lead .um-hero-em,
.um-hero-lead strong.um-hero-em {
  color: #2563eb;
  font-weight: 800;
}

.um-hero-lead strong {
  color: #0f172a;
  font-weight: 750;
}

.um-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.um-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.um-pill i { color: var(--success); }

.um-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.um-hero-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  position: relative;
}

.um-hero-card--yandex {
  background:
    radial-gradient(circle at 90% 10%, rgba(252, 211, 77, 0.25), transparent 40%),
    linear-gradient(160deg, #fff7ed 0%, #ffffff 55%);
}

.um-yandex-scene {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
  min-height: 280px;
}

.um-yandex-card {
  border-radius: 18px;
  padding: 1.1rem 1rem;
  border: 1px solid var(--gray-200);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  min-height: 240px;
}

.um-yandex-card.is-old {
  background: linear-gradient(165deg, #fff1f2, #fff);
  border-color: #fecaca;
  opacity: 0.92;
  filter: grayscale(0.15);
}

.um-yandex-card.is-new {
  background: linear-gradient(165deg, #eff6ff, #fff);
  border-color: #bfdbfe;
}

.um-yandex-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  font-weight: 800;
  color: #0f172a;
}

.um-yandex-icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.um-yandex-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(253, 185, 19, 0.3);
}

.um-yandex-x {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
}

.um-yandex-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fc3f1d, #ffcc00);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(252, 63, 29, 0.28);
  position: relative;
}

.um-yandex-card.is-old .um-yandex-mark::after {
  display: none;
}

.um-yandex-mark--um {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
  font-size: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.um-yandex-mail {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.um-yandex-closed,
.um-yandex-ok {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.um-yandex-closed {
  background: #fee2e2;
  color: #b91c1c;
}

.um-yandex-ok {
  background: #dcfce7;
  color: #15803d;
}

.um-yandex-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.um-yandex-list li {
  font-size: 0.86rem;
  font-weight: 650;
  color: #334155;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: #f8fafc;
}

.um-yandex-list li.is-strike {
  color: #94a3b8;
  text-decoration: line-through;
  background: #f1f5f9;
}

.um-yandex-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
  animation: um-hero-pulse 1.8s ease-in-out infinite;
}

@keyframes um-hero-pulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.um-mail-preview {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: linear-gradient(160deg, #0f172a, #1e293b);
  color: #fff;
  padding: 1.2rem;
}

.um-mail-preview .um-mail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  opacity: 0.9;
  font-size: 0.85rem;
}

.um-mail-row {
  display: flex;
  gap: 0.8rem;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 0.85rem;
  margin-bottom: 0.65rem;
}

.um-mail-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: grid;
  place-items: center;
  font-weight: 800;
}

.um-mail-row strong { display: block; font-size: 0.9rem; }
.um-mail-row span { font-size: 0.78rem; opacity: 0.7; }

.um-float-chip {
  position: absolute;
  right: -0.5rem;
  bottom: 1.2rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: um-float 3.5s ease-in-out infinite;
}

.um-float-chip i { color: var(--success); }
.um-float-chip--warn i { color: #ea580c; }

.um-hero-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.um-hero-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: #334155;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.15s ease;
}

.um-hero-nav-btn:hover {
  border-color: #bfdbfe;
  color: #1d4ed8;
  background: #eff6ff;
}

.um-hero-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.um-hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
  transition: 0.2s ease;
}

.um-hero-dots button.is-active {
  width: 26px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

@keyframes um-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections */
.um-section {
  padding: 4.5rem 0;
}

.um-section-muted {
  background: linear-gradient(180deg, var(--gray-50), #fff);
}

.um-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.um-section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.um-section-head p {
  color: var(--gray-600);
  margin: 0;
  font-size: 1.05rem;
}

.um-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.um-cycle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.04);
}

.um-cycle button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
}

.um-cycle button.is-active {
  background: var(--dark);
  color: #fff;
}

.um-save-tag {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  margin-left: 0.25rem;
}

/* Pricing cards */
.um-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.um-pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.um-price-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 18px;
  padding: 1.35rem 1.2rem 1.25rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
  overflow: hidden;
}

.um-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.um-price-card.is-featured {
  border: 2px solid var(--primary-light);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.18);
}

.um-ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  width: 130px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  padding: 0.35rem 0;
  transform: rotate(45deg);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
  letter-spacing: 0.02em;
  z-index: 2;
}

.um-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  padding-right: 1.2rem;
}

.um-plan-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.um-plan-ico-bolt { background: rgba(245, 158, 11, 0.14); color: var(--accent-hover); }
.um-plan-ico-shield { background: rgba(16, 185, 129, 0.14); color: #059669; }
.um-plan-ico-sparkles { background: rgba(14, 165, 233, 0.14); color: var(--secondary); }

.um-price-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  line-height: 1.25;
}

.um-price-card .um-tagline {
  color: var(--gray-600);
  font-size: 0.8rem;
  line-height: 1.35;
  min-height: 2.2rem;
}

.um-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 750;
  margin-bottom: 0.85rem;
}

.um-price {
  margin: 0 0 1rem;
}

.um-price-main {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.um-price .amount {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.um-price .period {
  color: var(--gray-400);
  font-weight: 650;
  font-size: 0.9rem;
}

.um-price-sub {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.um-price-sub strong {
  color: var(--dark);
  font-weight: 750;
}

.um-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  flex: 1;
}

.um-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  position: relative;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
  color: var(--gray-800);
  line-height: 1.4;
}

.um-price-card li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2310b981' d='M6.5 11.2L3.3 8l1.1-1.1 2.1 2.1 5-5L12.6 5l-6.1 6.2z'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
  position: static;
  font-size: 0;
  color: transparent;
  font-family: inherit;
  font-weight: normal;
}

.um-price-card .um-btn {
  width: 100%;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

@media (max-width: 1200px) {
  .um-pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .um-pricing-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Services — yatay kutucuklar */
.um-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.um-service-card {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  transition: 0.22s ease;
}

.um-service-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.um-service-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.um-service-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  font-family: var(--display);
}

.um-service-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.4;
}

.um-service-card .um-btn {
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
}

/* Homepage — domain strip */
.um-home-domain {
  padding: 1.75rem 0 0.5rem;
  margin-top: -0.5rem;
}

.um-home-domain-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 50%, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
}

.um-home-domain-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 0.35rem;
}

.um-home-domain-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.um-home-domain-copy h2 span {
  color: #93c5fd;
}

.um-home-domain-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
}

.um-home-domain-box > i { color: #94a3b8; }

.um-home-domain-box input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  min-width: 0;
  padding: 0.65rem 0.35rem;
  font-size: 0.95rem;
  color: #0f172a;
}

.um-home-domain-box .um-btn {
  border-radius: 999px;
  white-space: nowrap;
}

.um-home-domain-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.um-home-domain-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.um-home-domain-links a:hover { color: #fff; }
.um-home-domain-links i { margin-right: 0.35rem; opacity: 0.8; }

/* Homepage — soft stats */
.um-home-stats {
  padding: 2rem 0 0.5rem;
}

.um-home-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
}

.um-home-stat {
  text-align: center;
  padding: 1.35rem 0.75rem;
  border-right: 1px solid #e8eef5;
}

.um-home-stat:last-child { border-right: 0; }

.um-home-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.um-home-stat span {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.86rem;
}

/* Homepage — discover (dark) */
.um-home-discover {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.28), transparent 38%),
    radial-gradient(circle at 88% 80%, rgba(14, 165, 233, 0.16), transparent 42%),
    linear-gradient(160deg, #0b1220 0%, #0f172a 45%, #111827 100%);
  color: #fff;
}

.um-home-discover .um-section-head h2 {
  color: #fff;
}

.um-home-discover .um-section-head p {
  color: rgba(226, 232, 240, 0.78);
}

.um-discover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.um-discover-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  text-decoration: none !important;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.22s ease;
  backdrop-filter: blur(6px);
}

.um-discover-item:hover {
  border-color: rgba(147, 197, 253, 0.45);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.um-discover-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.22);
  color: #93c5fd;
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.um-discover-item strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
}

.um-discover-item em {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.45;
}

/* Homepage — why open layout */
.um-home-why {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.um-home-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.um-home-why-intro h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.85rem;
}

.um-home-why-intro p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin: 0 0 1.35rem;
  max-width: 28rem;
}

.um-home-why-list {
  display: grid;
  gap: 0;
}

.um-home-why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid #e8eef5;
}

.um-home-why-item:first-child { padding-top: 0; }
.um-home-why-item:last-child { border-bottom: 0; padding-bottom: 0; }

.um-home-why-item > i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.12);
  color: var(--secondary);
  font-size: 1.05rem;
}

.um-home-why-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.um-home-why-item p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

/* Testimonials — stage / carousel */
.um-testimonials {
  background: #fff;
}

.um-testimonial-stage {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 220px;
}

.um-testimonial-slide {
  display: none;
  text-align: center;
  padding: 0.5rem 0.5rem 0;
}

.um-testimonial-slide.is-active {
  display: block;
  animation: um-t-fade 0.35s ease;
}

@keyframes um-t-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.um-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.um-testimonial-slide blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  color: #1e293b;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.um-testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.um-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.um-testimonial-author strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
}

.um-testimonial-author em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 550;
  margin-top: 0.1rem;
}

.um-testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* Homepage explore band */
.um-home-explore {
  padding: 4rem 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.18), transparent 35%),
    linear-gradient(135deg, #0f172a, #1e3a8a 60%, #2563eb);
  color: #fff;
}

.um-home-explore-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.um-home-explore-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 0.65rem;
}

.um-home-explore h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.um-home-explore p {
  margin: 0 0 1.25rem;
  opacity: 0.88;
  font-size: 1.05rem;
  max-width: 34rem;
}

.um-home-explore-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.um-home-explore-points li {
  font-weight: 650;
  font-size: 0.92rem;
}

.um-home-explore-points i {
  color: #86efac;
  margin-right: 0.35rem;
}

.um-home-explore-visual {
  display: flex;
  justify-content: center;
}

.um-home-explore-panel {
  width: min(100%, 320px);
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.um-home-explore-panel strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.um-home-explore-panel > span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 1.15rem;
}

.um-home-explore-bars {
  display: grid;
  gap: 0.55rem;
}

.um-home-explore-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.um-home-explore-bars span:nth-child(1) { width: 92%; background: rgba(147, 197, 253, 0.55); }
.um-home-explore-bars span:nth-child(2) { width: 74%; }
.um-home-explore-bars span:nth-child(3) { width: 58%; }

/* FAQ */
.um-faq details {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.7rem;
}

.um-faq--flat details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e8eef5;
  border-radius: 0;
  padding: 1.05rem 0;
  margin-bottom: 0;
}

.um-faq--flat details:first-child {
  border-top: 1px solid #e8eef5;
}

.um-faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.um-faq summary::-webkit-details-marker { display: none; }
.um-faq summary::after { content: '+'; color: var(--primary); font-weight: 800; }
.um-faq details[open] summary::after { content: '–'; }
.um-faq details p {
  margin: 0.85rem 0 0;
  color: var(--gray-600);
}

/* CTA band */
.um-cta-band {
  margin: 1rem 0 0;
  border-radius: 28px;
  padding: 2.4rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.18), transparent 30%),
    linear-gradient(135deg, var(--dark), #1e3a8a 55%, var(--primary));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.um-cta-band h2 {
  font-family: var(--display);
  margin: 0 0 0.45rem;
  font-size: 1.8rem;
}

.um-cta-band p { margin: 0; opacity: 0.88; }

/* Footer — Oweb-inspired dark layout */
.um-footer {
  background: #0b0f14;
  color: rgba(255,255,255,0.78);
  padding: 2.25rem 0 1.35rem;
  margin-top: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.um-footer a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.18s ease;
}
.um-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.um-footer-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.um-footer-contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  background: #151a21;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  min-height: 74px;
}
.um-footer-contact-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
  background: #181e27;
}
.um-footer-contact-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.12);
  color: #93c5fd;
  font-size: 1.05rem;
}
.um-footer-contact-card em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.15rem;
}
.um-footer-contact-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.um-footer-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.um-footer-brand {
  max-width: 40rem;
}
.um-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.um-footer-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.um-footer-logo-fallback {
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}
.um-footer-logo-fallback i {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}
.um-footer-logo-fallback strong {
  font-family: var(--display);
  font-size: 1.25rem;
}
.um-footer-logo-fallback span { color: var(--primary-light); }

.um-footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 36rem;
}

.um-footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.um-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a212b;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.um-footer-social a:hover {
  color: #fff;
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.18);
}

.um-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.um-footer-col h4 {
  color: var(--primary-light);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.um-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.um-footer-links li {
  margin-bottom: 0.55rem;
  position: relative;
  padding-left: 0.85rem;
}
.um-footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.um-footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}
.um-footer-links a:hover { color: #fff; }

.um-footer-links li.is-footer-extra { display: none; }
.um-footer-col.is-expanded .um-footer-links li.is-footer-extra { display: list-item; }

.um-footer-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.um-footer-more i {
  font-size: 0.7rem;
  transition: transform 0.18s ease;
}
.um-footer-col.is-expanded .um-footer-more i {
  transform: rotate(180deg);
}

.um-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.um-footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
}
.um-footer-legal i {
  color: var(--primary-light);
  font-size: 0.8rem;
}
.um-footer-legal a:hover { color: #fff; }

.um-footer-bottom {
  padding-top: 1.15rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
}

@media (max-width: 991px) {
  .um-footer-contact { grid-template-columns: 1fr 1fr; }
  .um-footer-brand-row { flex-direction: column; }
  .um-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .um-footer-contact { grid-template-columns: 1fr; }
  .um-footer-grid { grid-template-columns: 1fr; }
  .um-footer-legal { justify-content: flex-start; gap: 0.75rem 1rem; }
}

/* Mobile */
@media (max-width: 1100px) {
  .um-menu a { padding: 0.5rem 0.65rem; font-size: 0.9rem; }
  .um-discover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .um-mkt-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .um-services { grid-template-columns: 1fr; }
  .um-service-card {
    grid-template-columns: auto 1fr;
  }
  .um-service-card .um-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .um-burger { display: inline-grid; place-items: center; }
  .um-menu {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    box-shadow: var(--shadow);
    z-index: 1300;
  }
  .um-menu.is-open { display: flex; }
  .um-nav { position: relative; }
  .um-mega { width: 100%; }
  .um-mega-trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }
  .um-mega-panel {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 0.35rem;
    padding-top: 0;
    box-shadow: none;
    border-radius: 0;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    border: 0;
    overflow: hidden;
  }
  .um-mega.is-open .um-mega-panel {
    max-height: 720px;
    pointer-events: auto;
    transform: none;
  }
  .um-mega-panel-inner {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
  }
  .um-mega-grid { grid-template-columns: 1fr; }
  .um-mega-col + .um-mega-col {
    border-left: 0;
    border-top: 1px solid #eef2f7;
    background: #fff;
  }
  .um-mega-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .um-hero-grid,
  .um-pricing-grid,
  .um-services,
  .um-discover-grid,
  .um-home-why-grid,
  .um-home-explore-grid,
  .um-home-domain-inner,
  .um-home-stats-row,
  .um-cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .um-home-domain-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
  }
  .um-home-stat {
    border-right: 0;
    border-bottom: 1px solid #e8eef5;
  }
  .um-home-stat:last-child { border-bottom: 0; }
  .um-home-domain-box { border-radius: 18px; flex-wrap: wrap; padding: 0.7rem; }
  .um-home-domain-box .um-btn { width: 100%; }
  .um-float-chip { right: 0.5rem; bottom: -0.8rem; }
  .um-yandex-scene {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .um-yandex-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .um-yandex-card { min-height: 0; }
}

@media (max-width: 575px) {
  .um-logo img {
    height: 34px;
    max-width: 140px;
  }
  .um-nav-actions .um-btn-ghost span,
  .um-nav-actions .um-btn-primary span { display: none; }
  .um-nav-actions .um-btn { padding: 0.7rem 0.85rem; }
}

/* Hide default twenty-one chrome when UltraMail chrome is present */
.ultramail-body > header.header { display: none !important; }
.ultramail-body > footer.footer { display: none !important; }

/* Loading state for prices */
.um-price.is-updating .amount {
  opacity: 0.45;
  filter: blur(0.5px);
  transition: 0.2s ease;
}

/* ========== Auth pages (login / register) ========== */
body.page-login .master-breadcrumb,
body.page-register .master-breadcrumb,
body.page-password-reset-container .master-breadcrumb {
  display: none !important;
}

body.page-login #main-body,
body.page-register #main-body,
body.page-password-reset-container #main-body {
  background:
    radial-gradient(circle at 10% 10%, rgba(37,99,235,0.08), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(14,165,233,0.08), transparent 26%),
    var(--gray-50);
  padding: 2.5rem 0 3.5rem !important;
}

body.page-login .primary-content,
body.page-register .primary-content,
body.page-password-reset-container .primary-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.um-auth {
  width: min(460px, 100%);
  margin: 0 auto;
}

.um-auth-register {
  width: min(720px, 100%);
}

.um-auth-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.um-auth-hero {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(37,99,235,0.08), rgba(248,250,252,0.2) 70%, #fff);
  border-bottom: 1px solid var(--gray-100);
}

.um-auth-hero-art {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
  opacity: 0.35;
  color: var(--primary);
}

.um-auth-hero-art i {
  font-size: 1.15rem;
}

.um-auth-hero h1,
.um-auth-heading h1 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--dark);
}

.um-auth-hero p,
.um-auth-heading p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.um-auth-heading {
  text-align: center;
  padding: 1.8rem 1.5rem 0.5rem;
}

.um-auth-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.um-ssl-banner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: #047857;
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 650;
  margin-bottom: 1.25rem;
}

.um-auth-form .um-field {
  margin-bottom: 1rem;
}

.um-auth-form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.um-auth-form label em {
  color: #ef4444;
  font-style: normal;
}

.um-input {
  position: relative;
}

.um-input > i:first-child {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.9rem;
  z-index: 2;
  pointer-events: none;
}

.um-input .form-control,
.um-input .field,
.um-input input,
.um-input select {
  height: 48px;
  border-radius: 12px !important;
  border: 1px solid var(--gray-200) !important;
  padding-left: 2.4rem !important;
  padding-right: 2.5rem !important;
  box-shadow: none !important;
  background: #fff;
  font-size: 0.95rem;
  color: var(--dark);
}

.um-input-plain .form-control,
.um-input-plain input,
.um-input-plain select,
.um-input-plain textarea {
  padding-left: 0.9rem !important;
  height: 48px;
  border-radius: 12px !important;
  border: 1px solid var(--gray-200) !important;
  width: 100%;
}

.um-input .form-control:focus,
.um-input .field:focus,
.um-input input:focus,
.um-input select:focus {
  border-color: var(--primary-light) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

/* intl-tel-input (ülke kodu) — bayrak + kod yan yana */
.um-input-phone {
  position: relative;
}
.um-input-phone .intl-tel-input {
  width: 100%;
  display: block;
}
.um-input-phone .intl-tel-input .flag-container {
  z-index: 3;
}
.um-input-phone .intl-tel-input.separate-dial-code .selected-flag {
  height: 100%;
  border-radius: 12px 0 0 12px;
  display: table;
  background: #f8fafc;
}
.um-input-phone .intl-tel-input.separate-dial-code .selected-dial-code {
  display: table-cell;
  vertical-align: middle;
  padding-left: 30px;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--dark);
  white-space: nowrap;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
  width: 74px;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  width: 84px;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
  width: 94px;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
  width: 104px;
}
.um-input-phone .intl-tel-input input,
.um-input-phone .intl-tel-input input.form-control,
.um-input-phone .intl-tel-input input.field,
.um-input .intl-tel-input input,
.um-input .intl-tel-input input.form-control,
.um-input .intl-tel-input input.field {
  height: 48px;
  border-radius: 12px !important;
  padding-right: 1rem !important;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,
.um-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input {
  padding-left: 82px !important;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,
.um-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input {
  padding-left: 92px !important;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
.um-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input {
  padding-left: 102px !important;
}
.um-input-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,
.um-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input {
  padding-left: 112px !important;
}
.um-input-phone .intl-tel-input .country-list {
  z-index: 20;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--gray-200);
  max-height: 240px;
}

.um-reveal {
  position: absolute !important;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--gray-400);
  width: 36px;
  height: 36px;
  z-index: 3;
}

.um-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.35rem 0 1.1rem;
}

.um-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-600);
  font-weight: 600;
  cursor: pointer;
}

.um-check input {
  width: 16px;
  height: 16px;
}

.um-link {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none !important;
}

.um-link:hover { color: var(--primary-dark) !important; }

.um-btn-block {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px !important;
  font-size: 1rem;
}

.um-auth-switch {
  text-align: center;
  margin: 1rem 0 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.um-auth-switch a {
  color: var(--primary);
  font-weight: 750;
  text-decoration: none;
}

.um-auth-footer-links {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--gray-200);
}

.um-auth-footer-links .um-auth-switch {
  margin: 0 0 0.85rem;
}

.um-auth-alt-actions {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.um-auth-alt-actions .um-btn-ghost {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}

.um-auth-alt-actions .um-btn-ghost:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: #eff6ff;
}

.um-auth-alt-actions .um-auth-forgot {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--primary);
  text-decoration: none;
}

.um-auth-alt-actions .um-auth-forgot:hover {
  text-decoration: underline;
}

.um-auth-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.um-auth-trust > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.7rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-600);
  text-align: center;
}

.um-auth-trust i { color: var(--primary); }

.um-form-section {
  margin-bottom: 1.4rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--primary);
}

.um-form-section h2 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--dark);
}

.um-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.um-field-full { grid-column: 1 / -1; }

.um-corp-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.um-switch-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  margin: 0;
}

.um-switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.um-switch-toggle span {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}

.um-switch-toggle span::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s ease;
  box-shadow: 0 2px 6px rgba(15,23,42,0.15);
}

.um-switch-toggle input:checked + span {
  background: var(--primary);
}

.um-switch-toggle input:checked + span::before {
  transform: translateX(20px);
}

.um-company-wrap {
  display: none;
}

.um-company-wrap.is-open {
  display: block;
}

.um-captcha {
  margin: 0.5rem 0 1rem;
}

.um-reset-lead {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0 0 1.1rem;
}

.um-reset-success {
  color: var(--gray-600);
  text-align: center;
  margin: 0.75rem 0 0.25rem;
  font-size: 0.95rem;
}

.um-auth-register .um-auth-trust {
  width: 100%;
}

.um-auth .card-footer,
.um-auth .card {
  border: 0;
  background: transparent;
}

@media (max-width: 700px) {
  .um-form-grid { grid-template-columns: 1fr; }
  .um-auth-trust { grid-template-columns: 1fr; }
  .um-auth-body { padding: 1.15rem; }
}

/* ========== Domain page ========== */
body.page-domain-pricing .master-breadcrumb { display: none !important; }
body.page-domain-pricing #main-body {
  background: transparent;
  padding: 0 !important;
}
body.page-domain-pricing .primary-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.um-domain-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(37,99,235,0.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(14,165,233,0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff, #ffffff 70%);
}

.um-domain-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.um-domain-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

.um-domain-hero h1 span {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.um-domain-lead {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.um-domain-search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.1rem;
  box-shadow: var(--shadow-lg);
}

.um-domain-search-box > i { color: var(--gray-400); }
.um-domain-search-box input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1rem;
  min-width: 0;
  padding: 0.7rem 0.4rem;
}

.um-domain-search-box .um-btn {
  border-radius: 999px;
  white-space: nowrap;
}

.um-domain-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1rem 0 1.2rem;
}

.um-domain-quick a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.um-domain-quick a i { margin-right: 0.3rem; }

.um-domain-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 650;
}

.um-domain-proof i { color: var(--success); margin-right: 0.3rem; }

.um-domain-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.um-dfeat {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}

.um-dfeat-wide { grid-column: 1 / -1; }

.um-dfeat-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(37,99,235,0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.um-dfeat strong { display: block; font-size: 0.92rem; }
.um-dfeat span { color: var(--gray-600); font-size: 0.8rem; }

.um-tld-strip {
  background: linear-gradient(180deg, #eff6ff, #f8fafc);
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.um-tld-carousel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.um-tld-chip {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1rem 0.85rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15,23,42,0.04);
}

.um-tld-chip.has-badge { border-color: rgba(37,99,235,0.35); }
.um-tld-chip strong { display: block; font-size: 1.15rem; margin-bottom: 0.35rem; }
.um-tld-chip .reg { color: var(--primary); font-weight: 800; font-size: 1rem; }
.um-tld-chip small { color: var(--gray-400); }

.um-tld-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  margin-left: 0.35rem;
}

.um-tld-chip .um-tld-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  margin: 0;
}

.um-tld-badge-popular { background: rgba(37,99,235,0.12); color: var(--primary-dark); }
.um-tld-badge-cheap { background: rgba(14,165,233,0.14); color: #0369a1; }
.um-tld-badge-dev { background: rgba(16,185,129,0.14); color: #047857; }

.um-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.um-tld-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.um-tld-filter-search {
  position: relative;
  min-width: min(260px, 100%);
}

.um-tld-filter-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.um-tld-filter-search input {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  padding: 0 1rem 0 2.2rem;
  outline: none;
}

.um-tld-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.um-tld-filters button {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray-600);
  cursor: pointer;
}

.um-tld-filters button.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.um-tld-table-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.um-tld-table {
  width: 100%;
  border-collapse: collapse;
}

.um-tld-table th,
.um-tld-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}

.um-tld-table th {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  background: var(--gray-50);
}

.um-tld-name {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.um-tld-name strong { font-size: 1.05rem; }
.um-price-cell { color: var(--primary); font-weight: 750; }
.um-price-cell small { color: var(--gray-400); font-weight: 600; }
.um-btn-sm { padding: 0.5rem 0.9rem; font-size: 0.82rem; border-radius: 999px; }

.um-domain-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.um-domain-steps article {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 1.4rem;
  border-left: 4px solid var(--primary);
}

.um-domain-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.um-domain-steps h3 { font-size: 1.05rem; margin: 0 0 0.4rem; font-family: var(--display); }
.um-domain-steps p { margin: 0; color: var(--gray-600); font-size: 0.9rem; }

.um-domain-dark {
  background: linear-gradient(135deg, var(--dark), #1e3a8a);
  color: #fff;
  padding: 3.5rem 0;
}

.um-section-head-light h2 { color: #fff; }
.um-domain-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.um-domain-dark-grid > div {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.um-domain-dark-grid i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(245,158,11,0.2);
  color: var(--accent);
}

@media (max-width: 1100px) {
  .um-tld-carousel { grid-template-columns: repeat(3, 1fr); }
  .um-domain-dark-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .um-domain-hero-grid,
  .um-domain-steps { grid-template-columns: 1fr; }
  .um-domain-search-box { flex-wrap: wrap; border-radius: 18px; padding: 0.7rem; }
  .um-domain-search-box .um-btn { width: 100%; }
}

@media (max-width: 640px) {
  .um-tld-carousel,
  .um-domain-features,
  .um-domain-dark-grid { grid-template-columns: 1fr; }
  .um-tld-table th:nth-child(3),
  .um-tld-table td:nth-child(3) { display: none; }
}

/* ========== Header cart ========== */
/* NOTE: do NOT use .um-cart-wrap here — that class is the cart PAGE content container */
.um-header-cart,
.um-notify-wrap,
.um-account-chip-wrap {
  display: inline-flex;
  align-items: center;
  align-self: center;
  position: relative;
  overflow: visible;
  line-height: 0;
  vertical-align: middle;
}

.um-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--dark) !important;
  text-decoration: none !important;
  transition: 0.2s ease;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}

.um-cart-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.um-cart-btn.has-items {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary-dark) !important;
}

.um-header-cart {
  position: relative;
  overflow: visible;
}
.um-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: visible;
}
.um-cart-preview {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  width: min(340px, calc(100vw - 1.5rem));
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  z-index: 95;
  overflow: hidden;
}
.um-header-cart:hover .um-cart-preview,
.um-header-cart.is-open .um-cart-preview {
  display: block;
}
.um-cart-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid #eef2f7;
}
.um-cart-preview-head strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
}
.um-cart-preview-head span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}
.um-cart-preview-list {
  max-height: 280px;
  overflow-y: auto;
}
.um-cart-preview-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.um-cart-preview-item:last-child {
  border-bottom: 0;
}
.um-cart-preview-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #2563eb;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.um-cart-preview-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.um-cart-preview-body strong {
  font-size: 0.86rem;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.3;
}
.um-cart-preview-body em {
  font-style: normal;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 550;
}
.um-cart-preview-foot {
  padding: 0.75rem 1rem 0.9rem;
  border-top: 1px solid #eef2f7;
  background: #f8fafc;
}
.um-cart-preview-foot .um-btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  border-radius: 12px;
}

.um-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
  z-index: 2;
  pointer-events: none;
}

.um-cart-count.is-empty {
  display: none !important;
}

/* Currency switching — light indicator only (no full-page overlay) */
.um-dd.is-loading .um-dd-trigger {
  opacity: 0.65;
}
#order-standard_cart.um-currency-refreshing {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

/* ========== Contact page ========== */
body.page-contact .master-breadcrumb {
  display: none !important;
}
body.page-contact #main-body {
  background: var(--gray-50);
  padding: 0 0 3.5rem !important;
  overflow-x: hidden;
}
body.page-contact .primary-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: none !important;
}

/* ========== Pricing page ========== */
body.page-fiyatlandirma .master-breadcrumb {
  display: none !important;
}
body.page-fiyatlandirma #main-body {
  background: #fff;
  padding: 0 0 3rem !important;
  overflow-x: hidden;
  min-height: 0 !important;
}
body.page-fiyatlandirma .primary-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: none !important;
}

.um-pricing-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.um-pricing-banner {
  background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
  color: #fff;
  padding: 2.25rem 0;
  margin: 0 0 0.5rem;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0 !important;
}
.um-pricing-banner::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.um-pricing-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.um-pricing-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.um-pricing-banner h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #fff;
}
.um-pricing-banner p {
  margin: 0.35rem 0 0;
  opacity: 0.88;
  font-size: 0.95rem;
  max-width: 40rem;
  line-height: 1.5;
}

/* Marketing inner pages share pricing layout shell */
body.page-marketing .um-mkt-banner,
.um-mkt-banner {
  background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
  color: #fff;
  padding: 2.25rem 0;
  margin: 0 0 0.5rem;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.um-mkt-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.um-mkt-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.um-mkt-banner h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #fff;
}
.um-mkt-banner p {
  margin: 0.35rem 0 0;
  opacity: 0.88;
  font-size: 0.95rem;
  max-width: 40rem;
  line-height: 1.5;
}
.um-mkt-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}
.um-mkt-intro h2,
.um-mkt-split h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
}
.um-mkt-intro p,
.um-mkt-split > div > p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-size: 0.98rem;
}
.um-mkt-checklist {
  list-style: none;
  margin: 0;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}
.um-mkt-checklist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0;
  font-weight: 650;
  color: #334155;
  font-size: 0.92rem;
}
.um-mkt-checklist li + li {
  border-top: 1px solid #f1f5f9;
}
.um-mkt-checklist i { color: #2563eb; }

.um-mkt-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.um-mkt-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.1rem 0.2rem;
}

.um-mkt-benefit > i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 1.05rem;
}

.um-mkt-benefit strong {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.um-mkt-benefit p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.5;
}

.um-mkt-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 1.35rem;
  align-items: start;
}
.um-mkt-order-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 1rem;
}
.um-mkt-order-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2563eb;
  background: #eff6ff;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}
.um-mkt-order-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
@media (max-width: 900px) {
  .um-mkt-intro,
  .um-mkt-split,
  .um-mkt-benefits {
    grid-template-columns: 1fr;
  }
  .um-mkt-order-card { position: static; }
}

@media (max-width: 700px) {
  .um-pricing-banner-inner {
    align-items: flex-start;
  }
}

.um-seo-copy {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.um-seo-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  padding: 1.75rem 1.85rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.um-seo-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}
.um-seo-panel-head {
  margin-bottom: 1.15rem;
  padding-left: 0.35rem;
}
.um-seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.um-seo-panel h2 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.um-seo-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #475569;
  font-weight: 550;
  max-width: 46rem;
}
.um-seo-body {
  padding-left: 0.35rem;
  margin-bottom: 1.25rem;
}
.um-seo-body p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}
.um-seo-body p:last-child {
  margin-bottom: 0;
}
.um-seo-body strong {
  color: #1e293b;
  font-weight: 750;
}
.um-seo-points {
  list-style: none;
  margin: 0;
  padding: 1.05rem 0 0;
  border-top: 1px solid #eef2f7;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}
.um-seo-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: #334155;
  line-height: 1.35;
}
.um-seo-points i {
  color: #2563eb;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.um-pricing-faq {
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .um-seo-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .um-seo-panel {
    padding: 1.35rem 1.2rem 1.25rem;
  }
  .um-seo-points {
    grid-template-columns: 1fr;
  }
}

.um-contact {
  width: 100%;
  margin: 0;
  padding: 0;
}

.um-contact-banner {
  background: linear-gradient(120deg, #2563eb 0%, #1d4ed8 45%, #0ea5e9 100%);
  color: #fff;
  padding: 2rem 0;
  margin: 0 0 1.75rem;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0 !important;
}
.um-contact-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.um-contact-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.um-contact-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}
.um-contact-banner h1 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
}
.um-contact-banner p {
  margin: 0;
  opacity: 0.92;
  font-size: 0.95rem;
  max-width: 42rem;
  line-height: 1.5;
  color: #fff;
}

.um-contact-body {
  padding-bottom: 0.5rem;
}

.um-contact-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.um-contact-aside {
  display: grid;
  gap: 0.9rem;
}

.um-contact-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.um-contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.um-contact-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 750;
  margin: 0 0 0.25rem;
  color: var(--dark);
}
.um-contact-card p {
  margin: 0 0 0.55rem;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.45;
}
.um-contact-card a,
.um-contact-card strong {
  color: var(--primary);
  font-weight: 750;
  text-decoration: none;
  font-size: 0.95rem;
}
.um-contact-card a:hover {
  text-decoration: underline;
}
.um-contact-mini-btn {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--primary-dark) !important;
  font-size: 0.86rem !important;
  text-decoration: none !important;
}
.um-contact-mini-btn:hover {
  background: #dbeafe;
}

.um-contact-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}
.um-contact-panel-head {
  margin-bottom: 1.15rem;
}
.um-contact-panel-head h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--dark);
}
.um-contact-panel-head p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.um-contact-form .um-btn {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.um-input-textarea textarea {
  min-height: 160px;
  height: auto !important;
  padding: 0.9rem 1rem !important;
  resize: vertical;
  line-height: 1.5;
}

.um-contact-success {
  text-align: center;
  padding: 2rem 1rem;
}
.um-contact-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: #059669;
  font-size: 1.4rem;
}
.um-contact-success h2 {
  font-family: var(--display);
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.um-contact-success p {
  color: var(--gray-600);
  margin: 0 0 1.2rem;
}

@media (max-width: 900px) {
  .um-contact-wrap {
    grid-template-columns: 1fr;
  }
  .um-contact-aside {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .um-contact-banner {
    padding: 1.5rem 0;
  }
  .um-contact-banner-inner {
    align-items: flex-start;
  }
  .um-contact-aside {
    grid-template-columns: 1fr;
  }
  .um-contact-panel {
    padding: 1.2rem 1rem 1.35rem;
  }
}

/* ========== Header notifications ========== */
.um-notify-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.15s ease;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 1;
  flex-shrink: 0;
}
.um-notify-btn:hover,
.um-notify-wrap.is-open .um-notify-btn {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}
.um-notify-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
  z-index: 2;
  pointer-events: none;
}
.um-notify-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  width: min(380px, calc(100vw - 1.5rem));
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  z-index: 90;
  overflow: hidden;
}
.um-notify-wrap.is-open .um-notify-panel {
  display: block;
}
.um-notify-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eef2f7;
  background: #f8fafc;
}
.um-notify-panel-head strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}
.um-notify-panel-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.um-notify-panel-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.um-notify-mark-all {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 750;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  line-height: 1.2;
}
.um-notify-mark-all:hover {
  background: #eff6ff;
  color: #1d4ed8;
}
.um-notify-mark-all.is-loading {
  opacity: 0.55;
  pointer-events: none;
}
.um-notify-empty {
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: #64748b;
}
.um-notify-empty i {
  font-size: 1.6rem;
  color: #10b981;
  margin-bottom: 0.55rem;
  display: block;
}
.um-notify-empty p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.um-notify-list {
  max-height: 360px;
  overflow-y: auto;
}
.um-notify-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  text-decoration: none !important;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}
.um-notify-item:last-child {
  border-bottom: 0;
}
.um-notify-item:hover {
  background: #f8fafc;
}
.um-notify-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  background: #eff6ff;
  color: #2563eb;
}
.um-notify-item.tone-danger .um-notify-ico {
  background: #fef2f2;
  color: #ef4444;
}
.um-notify-item.tone-warning .um-notify-ico {
  background: #fffbeb;
  color: #d97706;
}
.um-notify-item.tone-success .um-notify-ico {
  background: #ecfdf5;
  color: #059669;
}
.um-notify-item.tone-info .um-notify-ico {
  background: #eff6ff;
  color: #2563eb;
}
.um-notify-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.um-notify-body strong {
  font-size: 0.86rem;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.3;
}
.um-notify-body em {
  font-style: normal;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 550;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.um-notify-arrow {
  color: #cbd5e1;
  font-size: 0.7rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.um-notify-panel-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #eef2f7;
  background: #f8fafc;
}
.um-notify-panel-foot a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none !important;
  border-right: 1px solid #eef2f7;
}
.um-notify-panel-foot a:last-child {
  border-right: 0;
}
.um-notify-panel-foot a i {
  color: #2563eb;
  font-size: 0.9rem;
}
.um-notify-panel-foot a:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

/* ========== Logged-in account chip ========== */
.um-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
  text-decoration: none !important;
  color: var(--dark);
  transition: 0.15s ease;
}
.um-account-chip:hover,
.um-account-chip-wrap.is-open .um-account-chip {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--dark);
}
.um-account-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.um-account-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.um-account-chip-text strong {
  font-size: 0.9rem;
  font-weight: 750;
}
.um-account-chip-text small {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 650;
}
.um-account-chip-caret {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-left: 0.15rem;
}
.um-account-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: 0.4rem;
  z-index: 80;
}
.um-account-chip-wrap.is-open .um-account-menu {
  display: grid;
}
.um-account-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}
.um-account-menu a:hover {
  background: #f1f5f9;
}
.um-account-menu a.is-danger {
  color: #dc2626;
}
.um-account-menu a i {
  width: 1rem;
  text-align: center;
  color: var(--primary);
}
.um-account-menu a.is-danger i {
  color: #dc2626;
}

/* ========== Client area welcome / nav ========== */
body.page-clientarea {
  overflow-x: hidden;
  background: #f4f6f9;
}
body.page-clientarea .master-breadcrumb {
  display: none !important;
}
body.page-clientarea #main-body {
  background: #f4f6f9 !important;
  padding: 1rem 0 2.5rem !important;
  min-height: 0 !important;
}
body.page-clientarea #main-body > .container {
  max-width: 1140px;
}
body.page-clientarea .um-client-nav > .container,
body.page-clientarea .um-client-welcome-inner {
  max-width: 1140px;
}
body.page-clientarea .main-content {
  min-height: 0 !important;
  margin-bottom: 0 !important;
}
body.page-clientarea .primary-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body.page-clientarea:not(.page-clientareahome) .primary-content {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04) !important;
  padding: 1.25rem 1.35rem !important;
}
body.page-clientarea .sidebar {
  display: none !important;
}

/* Inner page typography / forms */
body.page-clientarea:not(.page-clientareahome) .primary-content > h1,
body.page-clientarea:not(.page-clientareahome) .primary-content > .header-lined h1,
body.page-clientarea .header-lined h1 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eef2f7;
}
.um-ca-pagehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eef2f7;
}
.um-ca-pagehead-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.um-ca-pagehead-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--primary);
  flex-shrink: 0;
}
.um-ca-pagehead h1 {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  font-family: var(--display);
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0f172a;
  line-height: 1.25;
}
.um-ca-pagehead p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 550;
}
.um-ca-pagehead-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 42px;
  padding: 0 1.15rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 750;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.um-ca-pagehead-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff !important;
}
.um-ca-pagehead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.um-ca-pagehead-btn--ghost {
  background: #fff;
  color: #1e40af !important;
  border: 1px solid #bfdbfe;
  box-shadow: none;
}
.um-ca-pagehead-btn--ghost:hover {
  background: #eff6ff;
  color: #1d4ed8 !important;
}
body.page-clientarea .form-control,
body.page-clientarea select.form-control,
body.page-clientarea textarea.form-control {
  height: 42px;
  border-radius: 10px !important;
  border-color: #e2e8f0 !important;
  font-size: 0.9rem;
  box-shadow: none !important;
}
body.page-clientarea textarea.form-control {
  height: auto;
  min-height: 110px;
}
body.page-clientarea .form-control:focus {
  border-color: #93c5fd !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
body.page-clientarea .btn {
  border-radius: 10px !important;
  font-weight: 700 !important;
  min-height: 40px;
  padding: 0.45rem 1rem !important;
}
body.page-clientarea .btn-primary,
body.page-clientarea .btn-success {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #fff !important;
}
body.page-clientarea .btn-default,
body.page-clientarea .btn-secondary {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
  color: #334155 !important;
}
body.page-clientarea .btn-group {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem !important;
}
body.page-clientarea .btn-group > .btn,
body.page-clientarea .btn-group > .btn-group {
  float: none !important;
  margin: 0 !important;
  border-radius: 10px !important;
}
body.page-clientarea .btn-group > .btn + .btn,
body.page-clientarea .btn-group > .btn + .btn-group,
body.page-clientarea .btn-group > .btn-group + .btn,
body.page-clientarea .btn-group > .btn-group + .btn-group {
  margin-left: 0 !important;
}
body.page-clientarea .btn-group > .btn {
  border-radius: 10px !important;
  padding: 0.5rem 1rem !important;
  min-height: 40px;
  box-shadow: none !important;
}
body.page-clientarea .btn-group > .btn-group {
  display: inline-flex;
  gap: 0;
}
body.page-clientarea .btn-group .dropdown-toggle {
  border-radius: 10px !important;
}
body.page-clientarea .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
body.page-clientarea .card,
body.page-clientarea .panel,
body.page-clientarea .tile {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04) !important;
  overflow: hidden;
}
body.page-clientarea .card-header,
body.page-clientarea .panel-heading {
  background: #fff !important;
  border-bottom: 1px solid #eef2f7 !important;
  font-weight: 750;
}
body.page-clientarea .nav-tabs {
  border-bottom: 1px solid #e5e7eb;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
body.page-clientarea .nav-tabs .nav-link {
  border: 0 !important;
  border-radius: 8px !important;
  color: #64748b;
  font-weight: 650;
  padding: 0.55rem 0.9rem;
}
body.page-clientarea .nav-tabs .nav-link.active {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
}
body.page-clientarea .label.status,
body.page-clientarea .status {
  border-radius: 999px !important;
  padding: 0.35rem 0.85rem !important;
  font-weight: 750 !important;
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* Destek talebi durum renkleri (ön yüz) */
body.page-clientarea .um-ticket-status-cell {
  white-space: nowrap;
  vertical-align: middle !important;
}
body.page-clientarea .um-ticket-status,
body.page-clientarea .label.status.status-open,
body.page-clientarea .label.status.status-answered,
body.page-clientarea .label.status.status-customer-reply,
body.page-clientarea .label.status.status-closed,
body.page-clientarea .label.status.status-on-hold,
body.page-clientarea .label.status.status-onhold,
body.page-clientarea .label.status.status-in-progress,
body.page-clientarea .label.status.status-inprogress {
  min-height: 28px;
  padding: 0.4rem 0.95rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.01em;
}

/* Açık / Open → yeşil */
body.page-clientarea .status-open,
body.page-clientarea .label.status.status-open {
  background: #10b981 !important;
  background-color: #10b981 !important;
}

/* Yanıtlandı / Answered → mavi */
body.page-clientarea .status-answered,
body.page-clientarea .label.status.status-answered {
  background: #2563eb !important;
  background-color: #2563eb !important;
}

/* Müşteri cevabı / Customer-Reply → turuncu */
body.page-clientarea .status-customer-reply,
body.page-clientarea .label.status.status-customer-reply {
  background: #f59e0b !important;
  background-color: #f59e0b !important;
}

/* Kapalı / Closed → kırmızı */
body.page-clientarea .status-closed,
body.page-clientarea .label.status.status-closed {
  background: #ef4444 !important;
  background-color: #ef4444 !important;
}

/* Diğer durumlar */
body.page-clientarea .status-on-hold,
body.page-clientarea .status-onhold,
body.page-clientarea .label.status.status-on-hold,
body.page-clientarea .label.status.status-onhold {
  background: #64748b !important;
  background-color: #64748b !important;
}
body.page-clientarea .status-in-progress,
body.page-clientarea .status-inprogress,
body.page-clientarea .label.status.status-in-progress,
body.page-clientarea .label.status.status-inprogress {
  background: #7c3aed !important;
  background-color: #7c3aed !important;
}
body.page-clientarea .status-custom {
  color: #fff !important;
}
body.page-clientarea .alert {
  border-radius: 12px !important;
  border: 0 !important;
}

/* DataTables / list tables */
body.page-clientarea .table-container {
  margin: 0;
}
body.page-clientarea .dataTables_wrapper {
  margin: 0;
}
body.page-clientarea .dataTables_wrapper .dataTables_filter {
  float: none;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.85rem;
}
body.page-clientarea .dataTables_wrapper .dataTables_filter label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}
body.page-clientarea .dataTables_wrapper .dataTables_filter label .form-control {
  background-image: none !important;
  width: 220px;
  max-width: 100%;
  height: 40px;
  padding: 0.45rem 0.85rem !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
}
body.page-clientarea .dataTables_wrapper .dataTables_length {
  float: none;
  margin-top: 0.85rem;
}
body.page-clientarea .dataTables_wrapper .dataTables_length label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}
body.page-clientarea .dataTables_wrapper .dataTables_length select {
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin: 0 0.35rem;
}
body.page-clientarea .dataTables_wrapper .dataTables_info {
  float: none;
  padding: 0.85rem 0 0;
  color: #94a3b8;
  font-size: 0.8rem;
}
body.page-clientarea .dataTables_wrapper .dataTables_paginate {
  float: none;
  display: flex;
  justify-content: flex-end;
  padding-top: 0.85rem;
}
body.page-clientarea .dataTables_wrapper::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 768px) {
  body.page-clientarea .dataTables_wrapper .dataTables_length,
  body.page-clientarea .dataTables_wrapper .dataTables_info {
    display: inline-block;
  }
  body.page-clientarea .dataTables_wrapper .dataTables_paginate {
    display: inline-flex;
    float: right;
    padding-top: 0.85rem;
  }
}
body.page-clientarea .dataTables_wrapper .paginate_button,
body.page-clientarea .pagination .page-link,
body.page-clientarea .pagination > li > a,
body.page-clientarea .pagination > li > span {
  border-radius: 8px !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  margin-left: 0.25rem !important;
  color: #334155 !important;
  background: #f1f5f9 !important;
  min-width: 36px;
  text-align: center;
  font-weight: 650;
}
body.page-clientarea .dataTables_wrapper .paginate_button:hover,
body.page-clientarea .pagination .page-link:hover,
body.page-clientarea .pagination > li > a:hover {
  background: #e2e8f0 !important;
  border: 0 !important;
  color: #0f172a !important;
}
body.page-clientarea .dataTables_wrapper .paginate_button.current,
body.page-clientarea .dataTables_wrapper .paginate_button.current:hover,
body.page-clientarea .pagination > .active > a,
body.page-clientarea .pagination > .active > a:hover,
body.page-clientarea .pagination .page-item.active .page-link {
  background: #2563eb !important;
  border: 0 !important;
  color: #fff !important;
}
body.page-clientarea .dataTables_wrapper table.table-list,
body.page-clientarea table.table-list,
body.page-clientarea table.table {
  margin: 0 !important;
  width: 100% !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
  background: #fff;
}
body.page-clientarea .dataTables_wrapper table.table-list thead th,
body.page-clientarea table.table-list thead th,
body.page-clientarea table.table thead th {
  background: #f8fafc !important;
  border-bottom: 1px solid #e5e7eb !important;
  border-top: 0 !important;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 750 !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.85rem 1rem !important;
  white-space: nowrap;
}
body.page-clientarea .dataTables_wrapper table.table-list thead th.sorting_asc,
body.page-clientarea .dataTables_wrapper table.table-list thead th.sorting_desc {
  background: #eff6ff !important;
  color: #1d4ed8;
}
body.page-clientarea .dataTables_wrapper table.table-list tbody td,
body.page-clientarea table.table-list tbody td,
body.page-clientarea table.table tbody td {
  padding: 0.95rem 1rem !important;
  border-top: 1px solid #eef2f7 !important;
  vertical-align: middle !important;
  font-size: 0.9rem;
  color: #334155;
}
body.page-clientarea .dataTables_wrapper table.table-list tbody tr:hover td,
body.page-clientarea table.table-list tbody tr:hover td {
  background: #f8fafc !important;
}
body.page-clientarea .dataTables_wrapper table.table-list tbody tr td.dataTables_empty,
body.page-clientarea table .dataTables_empty {
  text-align: center !important;
  padding: 2.5rem 1rem !important;
  color: #94a3b8 !important;
  font-weight: 650;
  background: #fff !important;
}
body.page-clientarea #tableLoading {
  padding: 2rem 0;
  color: #94a3b8;
}

/* Support / details extras */
body.page-clientarea .ticket-reply,
body.page-clientarea .markdown-editor-status {
  border-radius: 12px;
}
body.page-clientarea .list-group-item {
  border-color: #eef2f7 !important;
}
body.page-clientarea .list-group-item-action:hover {
  background: #f8fafc !important;
}

.um-client-welcome {
  background: linear-gradient(120deg, #0f172a 0%, #1e293b 55%, #1d4ed8 120%);
  color: #fff;
  padding: 1.35rem 0;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}
.um-client-welcome-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.um-client-welcome-user {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.um-client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.um-client-welcome h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 650;
  color: #fff;
}
.um-client-welcome h1 strong {
  font-weight: 800;
}
.um-client-welcome p {
  margin: 0.2rem 0 0;
  opacity: 0.78;
  font-size: 0.875rem;
  word-break: break-all;
}
.um-client-welcome-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.um-client-balance {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.um-client-balance i {
  color: #93c5fd;
}
.um-client-balance span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.75;
}
.um-client-balance strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}
.um-client-welcome-actions .um-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: 0;
  color: #fff;
  height: 44px;
  min-height: 44px;
  padding: 0 1.1rem;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.um-client-logout {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.um-client-logout:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.um-client-nav {
  background: #f4f6f9;
  border-bottom: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem 0 0;
  box-sizing: border-box;
}
.um-client-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.45rem;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.um-client-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
  height: 42px;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  flex: 1 1 0;
  min-width: 0;
}
.um-client-nav a i {
  color: var(--primary);
  font-size: 0.9rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}
.um-client-nav a:hover {
  background: #f8fafc;
  color: #0f172a;
}
.um-client-nav a.is-active {
  background: #eff6ff;
  color: var(--primary-dark);
  font-weight: 700;
}
.um-client-nav a.is-active i {
  color: var(--primary-dark);
}
@media (max-width: 991px) {
  .um-client-nav-inner {
    justify-content: flex-start;
    gap: 0.35rem;
  }
  .um-client-nav a {
    flex: 0 0 auto;
    padding: 0 0.85rem;
  }
}

/* ---- Client area home dashboard ---- */
.um-ca-home {
  padding-top: 1rem;
}
.um-ca-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.um-ca-stat {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 88px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.um-ca-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.um-ca-stat-icon.is-ticket { background: #2563eb; }
.um-ca-stat-icon.is-service { background: #0ea5e9; }
.um-ca-stat-icon.is-domain { background: #10b981; }
.um-ca-stat-body {
  min-width: 0;
}
.um-ca-stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.15rem;
}
.um-ca-stat-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.um-ca-stat-value em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  color: #64748b;
}
.um-ca-stat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--primary-dark) !important;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.um-ca-stat-btn:hover {
  background: #dbeafe;
  color: var(--primary-dark) !important;
}
.um-ca-stat-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: stretch;
}
.um-ca-stat-btn.is-buy {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff !important;
  gap: 0.3rem;
}
.um-ca-stat-btn.is-buy:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff !important;
}

.um-ca-quickbuy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.15rem;
}
.um-ca-quickbuy-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: 0.16s ease;
}
.um-ca-quickbuy-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.1);
  color: inherit;
}
.um-ca-quickbuy-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #2563eb;
  flex-shrink: 0;
}
.um-ca-quickbuy-ico.is-domain {
  background: #ecfdf5;
  color: #059669;
}
.um-ca-quickbuy-ico.is-transfer {
  background: #fff7ed;
  color: #ea580c;
}
.um-ca-quickbuy-card span:nth-child(2) {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.um-ca-quickbuy-card strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
}
.um-ca-quickbuy-card em {
  font-style: normal;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 550;
}
.um-ca-quickbuy-card > .fa-arrow-right {
  color: #94a3b8;
  font-size: 0.85rem;
}

.um-ca-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.78fr);
  gap: 1rem;
  align-items: start;
}
.um-ca-aside,
.um-ca-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.um-ca-promo {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  text-decoration: none !important;
  color: #fff !important;
  background:
    linear-gradient(120deg, rgba(15,23,42,0.88), rgba(37,99,235,0.72)),
    radial-gradient(circle at 85% 20%, rgba(56,189,248,0.35), transparent 45%),
    #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}
.um-ca-promo-alt {
  background:
    linear-gradient(120deg, rgba(15,23,42,0.9), rgba(14,165,233,0.65)),
    radial-gradient(circle at 15% 80%, rgba(37,99,235,0.35), transparent 40%),
    #0b1220;
}
.um-ca-promo-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.45rem;
}
.um-ca-promo strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
  max-width: 18rem;
  margin-bottom: 0.85rem;
}
.um-ca-promo-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.9rem;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 750;
}
.um-ca-promo:hover .um-ca-promo-btn {
  background: #1d4ed8;
}

.um-ca-card {
  background: #fff;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  margin: 0 !important;
}
.um-ca-card-head,
.um-ca-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.85rem 1.1rem !important;
  background: #fff !important;
  border-bottom: 1px solid #eef2f7 !important;
}
.um-ca-card .card-title,
.um-ca-card-head .card-title {
  margin: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 750 !important;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.um-ca-card .card-title i {
  color: var(--primary);
  font-size: 0.9rem;
}
.um-ca-card-action,
.um-ca-card .card-header .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 30px !important;
  padding: 0 0.7rem !important;
  border-radius: 8px !important;
  background: #eff6ff !important;
  border: 0 !important;
  color: var(--primary-dark) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap;
  float: none !important;
}
.um-ca-card-action:hover,
.um-ca-card .card-header .btn:hover {
  background: #dbeafe !important;
}
.um-ca-card-body,
.um-ca-card .card-body {
  padding: 1rem 1.1rem !important;
  font-size: 0.875rem;
  color: #64748b;
}
.um-ca-card-list .list-group-item {
  border-color: #eef2f7 !important;
  padding: 0.85rem 1.1rem !important;
  font-size: 0.875rem;
}
.um-ca-card-foot,
.um-ca-card .card-footer {
  background: #fff !important;
  border-top: 1px solid #eef2f7 !important;
  padding: 0.75rem 1.1rem !important;
}
.um-ca-card .btn,
.um-ca-card .btn-xs {
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.um-ca-card .bg-color-orange,
.um-ca-card .btn-default.bg-color-orange {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #fff !important;
}

.um-ca-profile-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.um-ca-profile-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 0;
}
.um-ca-profile-row i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.um-ca-profile-row span {
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .um-account-chip-text { display: none; }
  .um-account-chip { padding-right: 0.45rem; }
  .um-account-chip-caret { display: none; }
  .um-ca-stats { grid-template-columns: 1fr; }
  .um-ca-quickbuy { grid-template-columns: 1fr; }
  .um-ca-stat-actions { flex-direction: row; }
  .um-ca-layout { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .um-client-welcome-inner { align-items: flex-start; }
  .um-client-welcome-actions { width: 100%; }
  .um-client-balance { flex: 1; }
  .um-ca-stat {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "icon body"
      "btn btn";
  }
  .um-ca-stat-icon { grid-area: icon; }
  .um-ca-stat-body { grid-area: body; }
  .um-ca-stat-btn { grid-area: btn; width: 100%; margin-top: 0.35rem; }
}

/* ========== Support hub (KB / Announcements / Downloads / Tickets) ========== */
body.page-support .master-breadcrumb { display: none !important; }
body.page-support #main-body {
  background: var(--gray-50);
  padding: 0 0 3.5rem !important;
  overflow-x: hidden;
}
body.page-support .primary-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: none !important;
}
body.page-support .sidebar { display: none !important; }

.um-support { width: 100%; }

.um-support-banner {
  background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
  color: #fff;
  padding: 2.35rem 0;
  margin: 0 0 0.25rem;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.um-support-banner-sm { padding: 1.75rem 0; }
.um-support-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.um-support-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.um-support-banner-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.14);
  font-size: 1.35rem;
  flex-shrink: 0;
}
.um-support-banner h1 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: #fff;
}
.um-support-banner p {
  margin: 0;
  opacity: 0.88;
  font-size: 0.98rem;
  max-width: 40rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
}
.um-support-tag {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 0.78rem;
  font-weight: 600;
}

.um-support-body {
  padding-top: 1.35rem;
}

.um-support-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.um-support-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  color: var(--gray-600);
  font-weight: 650;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.18s ease;
}
.um-support-nav a i { color: var(--primary); opacity: 0.85; }
.um-support-nav a:hover {
  background: rgba(37, 99, 235, 0.07);
  color: var(--primary);
  text-decoration: none;
}
.um-support-nav a.is-active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}
.um-support-nav a.is-active i { color: #fff; opacity: 1; }

.um-support-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.um-support-search > i { color: var(--gray-400); }
.um-support-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1rem;
  min-width: 0;
  padding: 0.55rem 0;
  color: var(--gray-800);
}
.um-support-search .um-btn { flex-shrink: 0; }

.um-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.um-support-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  text-decoration: none !important;
  transition: 0.18s ease;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}
.um-support-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.1);
}
.um-support-card-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}
.um-support-card-body strong {
  display: block;
  color: var(--gray-800);
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}
.um-support-card-body em {
  display: block;
  font-style: normal;
  color: var(--gray-600);
  font-size: 0.86rem;
  line-height: 1.45;
}
.um-support-card-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.um-support-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.um-support-panel-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.um-support-panel-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.um-support-panel-head i { color: var(--primary); }

.um-support-list-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid #eef2f7;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
.um-support-list-item:last-child { border-bottom: 0; }
.um-support-list-item:hover { background: rgba(37, 99, 235, 0.04); }
.um-support-list-item > i {
  margin-top: 0.2rem;
  color: var(--primary);
  opacity: 0.75;
}
.um-support-list-item strong {
  display: block;
  color: var(--gray-800);
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.um-support-list-item em {
  display: block;
  font-style: normal;
  color: var(--gray-600);
  font-size: 0.86rem;
  line-height: 1.5;
}
.um-support-list-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--gray-600);
}
.um-lock {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #dc2626 !important;
  font-size: 0.78rem;
  font-weight: 700;
}

.um-support-empty {
  text-align: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  margin-bottom: 1.25rem;
}
.um-support-empty i {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.um-support-empty h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--gray-800);
}
.um-support-empty p {
  margin: 0 0 1.1rem;
  color: var(--gray-600);
}

.um-support-article {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 1.5rem 1.6rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.um-support-article-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.um-support-article-body {
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.75;
}
.um-support-article-body img { max-width: 100%; height: auto; }
.um-support-vote {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}
.um-support-vote h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}
.um-support-vote form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.um-announce-list {
  display: grid;
  gap: 1rem;
}
.um-announce-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 1.35rem 1.45rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.um-announce-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-600);
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
}
.um-announce-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.um-announce-card h2 a {
  color: var(--gray-800);
  text-decoration: none;
}
.um-announce-card h2 a:hover { color: var(--primary); }
.um-announce-excerpt {
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}
.um-announce-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.um-announce-more:hover { text-decoration: none; color: var(--primary-dark); }

.um-support-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.um-page-link {
  min-width: 38px;
  height: 38px;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 650;
}
.um-page-link.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.um-page-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.um-dept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem;
}
.um-dept-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: #f8fafc;
  text-decoration: none !important;
  transition: 0.18s ease;
}
.um-dept-card:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}
.um-dept-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.um-dept-card strong {
  color: var(--gray-800);
  font-size: 1.05rem;
}
.um-dept-card em {
  font-style: normal;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}
.um-dept-go {
  margin-top: 0.35rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}

.um-ticket-form-body { padding: 1.25rem 1.35rem 1.5rem; }
.um-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}
.um-ticket-grid .um-field label {
  display: block;
  font-weight: 650;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--gray-800);
}
.um-ticket-grid .um-field .form-control,
.um-ticket-grid .um-field select,
.um-ticket-grid .um-field textarea {
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  min-height: 46px;
  box-shadow: none;
}
.um-ticket-grid .um-field textarea { min-height: 180px; }
.um-ticket-grid .um-field-full { grid-column: 1 / -1; }
.um-ticket-captcha { margin: 1rem 0; text-align: center; }
.um-ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.um-support-success {
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.um-support-success-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  font-size: 1.5rem;
}
.um-support-success h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}
.um-support-success h2 a { color: var(--primary); }
.um-support-success p {
  color: var(--gray-600);
  margin: 0 0 1.25rem;
}

.um-support-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .um-support-grid,
  .um-dept-grid,
  .um-ticket-grid { grid-template-columns: 1fr; }
  .um-support-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .um-support-card-meta {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 575px) {
  .um-support-search { flex-wrap: wrap; }
  .um-support-search .um-btn { width: 100%; }
  .um-support-nav a span { display: none; }
  .um-support-nav a { padding: 0.75rem 0.9rem; }
}

/* ========== Legal pages + cookie consent ========== */
.um-legal-page { width: 100%; }
.um-legal-wrap {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0 3rem;
  align-items: start;
}
.um-legal-nav {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1rem 0.85rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.um-legal-nav h3 {
  margin: 0 0.35rem 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 800;
}
.um-legal-nav a,
.um-legal-cookie-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.9rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.um-legal-nav a i,
.um-legal-cookie-btn i { color: var(--primary); width: 1.1rem; text-align: center; }
.um-legal-nav a:hover,
.um-legal-cookie-btn:hover {
  background: rgba(37, 99, 235, 0.07);
  color: var(--primary);
  text-decoration: none;
}
.um-legal-nav a.is-active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}
.um-legal-nav a.is-active i { color: #fff; }

.um-legal-content {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 1.75rem 1.85rem 2rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.um-legal-updated {
  margin: 0 0 1.25rem;
  color: var(--gray-600);
  font-size: 0.88rem;
}
.um-legal-content h2 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
}
.um-legal-content h2:first-of-type { margin-top: 0; }
.um-legal-content p,
.um-legal-content li {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.98rem;
}
.um-legal-content ul { padding-left: 1.2rem; margin: 0.4rem 0 1rem; }
.um-legal-content a { color: var(--primary); font-weight: 650; }
.um-inline-link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.um-footer-cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}
.um-footer-cookie-btn i { color: var(--primary-light); }
.um-footer-cookie-btn:hover { color: #fff; }

.um-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1600;
  max-width: 920px;
  margin: 0 auto;
}
.um-cookie-banner-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #0f172a;
  color: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.um-cookie-banner-text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.um-cookie-banner-text p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.5;
  max-width: 34rem;
}
.um-cookie-banner-text a { color: #93c5fd; }
.um-cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex-shrink: 0;
}
.um-cookie-banner .um-btn-ghost {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
}
.um-cookie-banner .um-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}
.um-cookie-banner .um-btn-primary {
  color: #fff !important;
}

.um-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1700;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.um-cookie-modal[hidden] { display: none !important; }
.um-cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.um-cookie-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}
.um-cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--gray-200);
}
.um-cookie-modal-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}
.um-cookie-modal-x {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-600);
}
.um-cookie-modal-body { padding: 1rem 1.15rem 0.5rem; }
.um-cookie-modal-lead {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 0.92rem;
}
.um-cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid #eef2f7;
  cursor: pointer;
}
.um-cookie-row strong { display: block; color: var(--gray-800); font-size: 0.95rem; }
.um-cookie-row em {
  display: block;
  font-style: normal;
  color: var(--gray-600);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}
.um-cookie-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}
.um-cookie-row.is-locked { opacity: 0.85; cursor: default; }
.um-cookie-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem 1.15rem;
  border-top: 1px solid var(--gray-200);
}
.um-cookie-modal-foot a {
  color: var(--primary);
  font-weight: 650;
  font-size: 0.88rem;
}
body.um-cookie-open { overflow: hidden; }

@media (max-width: 900px) {
  .um-legal-wrap { grid-template-columns: 1fr; }
  .um-legal-nav { position: static; }
  .um-cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .um-cookie-banner-actions { justify-content: stretch; }
  .um-cookie-banner-actions .um-btn { flex: 1; }
}

/* ========== Modern ticket chat view ========== */
.um-ticket-page {
  width: 100%;
}
.um-ticket-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.um-ticket-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 1rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s ease;
}
.um-ticket-action-btn--primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}
.um-ticket-action-btn--primary:hover {
  filter: brightness(1.05);
  color: #fff;
}
.um-ticket-action-btn--danger {
  background: #fff;
  border-color: #fecaca;
  color: #dc2626;
}
.um-ticket-action-btn--danger:hover {
  background: #fef2f2;
}
.um-ticket-action-btn--muted {
  opacity: 0.65;
  cursor: not-allowed;
}

.um-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
}
.um-ticket-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #64748b;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}
.um-ticket-meta-chip i {
  color: #2563eb;
  font-size: 0.75rem;
}
.um-ticket-meta-chip strong {
  color: #0f172a;
  font-weight: 750;
}
.um-ticket-meta-chip.is-closed {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}
.um-ticket-meta-chip.is-closed i,
.um-ticket-meta-chip.is-closed strong {
  color: #b91c1c;
}

.um-ticket-view {
  border: 0 !important;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06) !important;
  border-radius: 20px !important;
  overflow: hidden;
  background: transparent !important;
}
.um-ticket-thread {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.25rem;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(37, 99, 235, 0.06), transparent 50%),
    linear-gradient(180deg, #eef2f7 0%, #f4f6f9 100%);
}

.um-chat-row {
  display: flex;
  width: 100%;
}
.um-chat-row.is-staff {
  justify-content: flex-start;
}
.um-chat-row.is-client {
  justify-content: flex-end;
}

.um-chat-bubble {
  width: min(100%, 720px);
  border-radius: 18px !important;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  position: relative;
}
.um-chat-bubble-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid transparent;
}
.um-chat-bubble-who {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.um-chat-bubble-who .posted-by-name {
  font-size: 0.92rem;
  font-weight: 780;
  color: #0f172a;
  line-height: 1.2;
}
.um-chat-bubble-who .posted-on {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
}
.um-chat-role {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.um-chat-role.is-staff {
  background: #2563eb;
  color: #fff;
}
.um-chat-role.is-client {
  background: #059669;
  color: #fff;
}

.um-ticket-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.um-ticket-avatar.is-staff {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.um-ticket-avatar.is-client {
  background: #059669;
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.25);
}

/* Staff bubble */
.um-chat-bubble.is-staff,
.um-chat-bubble.staff {
  border-color: rgba(37, 99, 235, 0.28);
  border-left: 4px solid #2563eb;
  background: linear-gradient(165deg, #eff6ff 0%, #fff 38%);
  border-radius: 4px 18px 18px 18px !important;
}
.um-chat-bubble.is-staff .um-chat-bubble-head {
  background: rgba(37, 99, 235, 0.07);
  border-bottom-color: rgba(37, 99, 235, 0.1);
}

/* Client bubble */
.um-chat-bubble.is-client {
  border-color: rgba(16, 185, 129, 0.25);
  border-right: 4px solid #10b981;
  border-left: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(195deg, #ecfdf5 0%, #fff 38%);
  border-radius: 18px 4px 18px 18px !important;
}
.um-chat-bubble.is-client .um-chat-bubble-head {
  background: rgba(16, 185, 129, 0.07);
  border-bottom-color: rgba(16, 185, 129, 0.1);
  flex-direction: row-reverse;
  text-align: right;
}
.um-chat-bubble.is-client .um-chat-bubble-who {
  align-items: flex-end;
}

.um-chat-bubble-body,
.um-ticket-reply-body {
  padding: 1rem 1.1rem 1.05rem !important;
  color: #1e293b;
  font-size: 0.95rem;
  line-height: 1.65;
}
.um-chat-ip {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f7;
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}
.um-chat-rating {
  margin-top: 0.75rem;
}
.um-chat-attachments {
  padding: 0.75rem 1.1rem 1rem;
  border-top: 1px solid #eef2f7;
  background: #f8fafc;
  font-size: 0.88rem;
}

.um-ticket-reply-form {
  margin-top: 1.15rem;
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06) !important;
  overflow: hidden;
}
.um-ticket-reply-form-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.um-ticket-reply-form-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #2563eb;
  flex-shrink: 0;
}
.um-ticket-reply-form-head .card-title {
  margin: 0 !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #0f172a;
}
.um-ticket-reply-form-head p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}
.um-ticket-reply-fields label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #475569;
}
.um-ticket-reply-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  padding-top: 0.35rem;
}
.um-ticket-reply-submit .btn-primary {
  min-width: 140px;
}

@media (max-width: 767px) {
  .um-ticket-thread { padding: 0.85rem; gap: 0.85rem; }
  .um-chat-bubble { width: 100%; }
  .um-chat-bubble.is-client .um-chat-bubble-head {
    flex-direction: row;
    text-align: left;
  }
  .um-chat-bubble.is-client .um-chat-bubble-who {
    align-items: flex-start;
  }
  .um-ticket-page-actions { width: 100%; }
  .um-ticket-action-btn { flex: 1; justify-content: center; }
}

/* ========== Product details (clientareaproductdetails) ========== */
body.page-clientareaproductdetails .primary-content > h1,
body.page-clientareaproductdetails .header-lined {
  display: none !important;
}

.um-pd {
  width: 100%;
}

.um-pd-pagehead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.25rem;
}

.um-pd-pagehead-left {
  min-width: 0;
}

.um-pd-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none !important;
  margin-bottom: 0.45rem;
}

.um-pd-back:hover {
  text-decoration: underline !important;
}

.um-pd-pagehead h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.2;
}

.um-pd-pagehead p {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 550;
}

.um-pd-status {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
}

.um-pd-status--active {
  background: #ecfdf5;
  color: #059669;
  border-color: #a7f3d0;
}

.um-pd-status--pending,
.um-pd-status--pending-registration,
.um-pd-status--pending-transfer {
  background: #fff7ed;
  color: #d97706;
  border-color: #fed7aa;
}

.um-pd-status--suspended,
.um-pd-status--fraud,
.um-pd-status--terminated,
.um-pd-status--cancelled {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

.um-pd-status--completed {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.um-pd-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 1.15rem;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 1.15rem;
}

.um-pd-hero-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #eff6ff 0%, #f8fafc 55%, #fff 100%);
  border: 1px solid #e8eef5;
}

.um-pd-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.um-pd-brand-text strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.um-pd-brand-text span {
  display: block;
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}

.um-pd-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.um-pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: 0.18s ease;
  cursor: pointer;
}

.um-pd-btn--primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.um-pd-btn--success {
  background: #059669;
  color: #fff !important;
}

.um-pd-btn--danger {
  background: #fff;
  color: #dc2626 !important;
  border-color: #fecaca;
}

.um-pd-btn--danger:hover {
  background: #fef2f2;
}

.um-pd-btn--danger.is-disabled,
.um-pd-btn--danger.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.um-pd-btn--ghost {
  background: #fff;
  color: #0f172a !important;
  border-color: #dbe3ef;
}

.um-pd-btn--ghost:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: #1d4ed8 !important;
  background: #f8fbff;
}

.um-pd-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: start;
}

.um-pd-fact {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.um-pd-fact span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.um-pd-fact strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 750;
  color: #0f172a;
  word-break: break-word;
}

.um-pd-fact--warn {
  background: #fff7ed;
  border-color: #fed7aa;
}

.um-pd-nav {
  border: 0 !important;
  gap: 0.35rem;
  margin-bottom: 0 !important;
  flex-wrap: wrap;
}

.um-pd-nav .nav-link {
  border: 1px solid #e8eef5 !important;
  border-radius: 999px !important;
  padding: 0.55rem 1rem !important;
  color: #475569 !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  background: #fff !important;
}

.um-pd-nav .nav-link.active {
  background: #0f172a !important;
  border-color: #0f172a !important;
  color: #fff !important;
}

.um-pd-panel {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  margin-top: 0.85rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.um-pd-kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.um-pd-kv-item {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  text-align: left;
}

.um-pd-kv-item--wide {
  grid-column: 1 / -1;
}

.um-pd-kv-item span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.3rem;
}

.um-pd-kv-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

.um-pd-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.um-pd-module {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eef2f7;
}

.um-pd-hook {
  margin-bottom: 1rem;
}

.um-pd-section {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.um-pd-section h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.um-pd-download-list,
.um-pd-addons {
  display: grid;
  gap: 0.75rem;
}

.um-pd-download,
.um-pd-addon {
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: #f8fafc;
}

.um-pd-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.um-pd-download p {
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
}

.um-pd-addon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.um-pd-alert {
  border-radius: 14px !important;
  margin-bottom: 1rem;
}

body.page-clientareaproductdetails .product-details,
body.page-clientareaproductdetails .product-status,
body.page-clientareaproductdetails .product-details-tab-container.bg-white {
  background: transparent;
  border: 0;
  box-shadow: none;
}

@media (max-width: 991px) {
  .um-pd-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .um-pd-pagehead {
    flex-direction: column;
  }
  .um-pd-facts,
  .um-pd-kv {
    grid-template-columns: 1fr;
  }
  .um-pd-download {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Product details — service tabs + module management */
.um-pd-servicetabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
}
.um-pd-servicetab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #e8eef5;
  background: #fff;
  color: #475569 !important;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none !important;
}
.um-pd-servicetab.is-active,
.um-pd-servicetab.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff !important;
}
.um-pd-mgmt {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.15rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}
.um-pd-mgmt-head {
  margin-bottom: 0.95rem;
}
.um-pd-mgmt-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}
.um-pd-mgmt-head p {
  margin: 0.3rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
}
.um-pd-mgmt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.um-pd-mgmt-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  background: #f8fafc;
  text-decoration: none !important;
  color: #0f172a !important;
  transition: 0.15s ease;
}
.um-pd-mgmt-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: #eff6ff;
}
.um-pd-mgmt-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 0.95rem;
}
.um-pd-mgmt-card strong {
  font-size: 0.92rem;
  font-weight: 750;
}
.um-pd-mgmt-arrow {
  color: #94a3b8;
  font-size: 0.75rem;
}
.um-sm-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eef2f7;
  text-align: left;
}
.um-sm-overview-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.2rem;
}
.um-sm-overview-main strong {
  font-size: 1.05rem;
  color: #0f172a;
}
.um-sm-overview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 650;
}
.um-sm-overview-meta i { color: #2563eb; margin-right: 0.25rem; }
.um-sm-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.um-sm-overview-actions form { margin: 0; }
@media (max-width: 700px) {
  .um-pd-mgmt-grid { grid-template-columns: 1fr; }
}

/* ========== Mobile side gutters — dosya sonu (tüm sayfalar, cascade önceliği) ========== */
@media (max-width: 991px) {
  /*
   * İletişim / domain / fiyat / destek / sepet / ana sayfa:
   * #main-body dış container yok + .row -15px + primary-content padding:0
   * → içerik ~1px kenarda kalıyordu. Row negatif margin'i kapat, gutter ver.
   */
  body.page-contact #main-body > div > .row,
  body.page-domain-pricing #main-body > div > .row,
  body.page-fiyatlandirma #main-body > div > .row,
  body.page-support #main-body > div > .row,
  body.page-homepage #main-body > div > .row,
  body.page-cart #main-body > div > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-contact .primary-content,
  body.page-domain-pricing .primary-content,
  body.page-fiyatlandirma .primary-content,
  body.page-support .primary-content,
  body.page-homepage .primary-content,
  body.page-cart .primary-content {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
    max-width: 100% !important;
  }

  /* İç container'larda çift gutter olmasın */
  body.page-contact .um-contact-body.container,
  body.page-domain-pricing .primary-content .container,
  body.page-fiyatlandirma .primary-content .container,
  body.page-support .primary-content .container,
  body.page-homepage .primary-content .container,
  body.page-cart .primary-content .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /*
   * Üst başlık / banner alanları:
   * primary-content padding'ini negatif margin ile iptal edip
   * arka planı kenara kadar uzat, metni içeride tut.
   */
  body.page-contact .um-contact-banner,
  body.page-fiyatlandirma .um-pricing-banner,
  body.page-support .um-support-banner,
  body.page-cart .um-cart-banner,
  body.page-domain-pricing .um-domain-hero {
    width: auto !important;
    max-width: none !important;
    margin-left: -1.15rem !important;
    margin-right: -1.15rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    box-sizing: border-box !important;
  }

  body.page-contact .um-contact-banner > .container,
  body.page-fiyatlandirma .um-pricing-banner > .container,
  body.page-support .um-support-banner > .container,
  body.page-cart .um-cart-banner > .container,
  body.page-domain-pricing .um-domain-hero > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Müşteri paneli karşılama başlığı — kendi container gutter'ı */
  body.page-clientarea .um-client-welcome-inner.container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  body.ultramail-body .container,
  body.ultramail-body .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.page-clientarea:not(.page-clientareahome) .primary-content {
    padding: 1.1rem !important;
  }

  body.ultramail-body:not(.page-homepage):not(.page-cart):not(.page-contact):not(.page-domain-pricing):not(.page-fiyatlandirma):not(.page-login):not(.page-register):not(.page-password-reset-container):not(.page-clientarea):not(.page-support) .primary-content {
    padding: 1.15rem !important;
  }

  .um-legal-nav,
  .um-legal-content {
    margin-left: 0;
    margin-right: 0;
  }

  .um-auth-card {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  body.page-contact .primary-content,
  body.page-domain-pricing .primary-content,
  body.page-fiyatlandirma .primary-content,
  body.page-support .primary-content,
  body.page-homepage .primary-content,
  body.page-cart .primary-content {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  body.page-contact .um-contact-banner,
  body.page-fiyatlandirma .um-pricing-banner,
  body.page-support .um-support-banner,
  body.page-cart .um-cart-banner,
  body.page-domain-pricing .um-domain-hero {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  body.page-clientarea .um-client-welcome-inner.container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  body.ultramail-body .container,
  body.ultramail-body .container-fluid {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }

  body.page-clientarea:not(.page-clientareahome) .primary-content {
    padding: 0.95rem !important;
  }

  body.ultramail-body:not(.page-homepage):not(.page-cart):not(.page-contact):not(.page-domain-pricing):not(.page-fiyatlandirma):not(.page-login):not(.page-register):not(.page-password-reset-container):not(.page-clientarea):not(.page-support) .primary-content {
    padding: 1rem !important;
  }
}