/* =============================================================================
   Pitbull Corporate Security Theme — light, trust-inspiring palette
   Loaded after app.css to override legacy dark styles
   ============================================================================= */

:root {
  --pb-bg: #f8fafc;
  --pb-surface: #ffffff;
  --pb-muted: #f1f5f9;
  --pb-border: #e2e8f0;
  --pb-text: #0f172a;
  --pb-text-muted: #475569;
  --pb-trust: #1d4ed8;
  --pb-trust-light: #eff6ff;
  --pb-secure: #059669;
  --pb-secure-light: #ecfdf5;
  --pb-footer: #1e293b;
}

/* Global base */
body {
  background-color: var(--pb-bg) !important;
  color: var(--pb-text);
}

/* Glass panels → corporate cards */
.glass-panel {
  background: var(--pb-surface) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: var(--pb-border) !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* Subtle grid — trust blue instead of neon green */
.cyber-grid {
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px) !important;
}
.cyber-grid-container { opacity: 0.35 !important; }

.center-glow {
  background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, rgba(248, 250, 252, 0) 70%) !important;
}

/* Corporate buttons */
.btn-pb-primary,
.btn-cyber-flow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  border: 1px solid #047857;
  box-shadow: 0 1px 2px rgba(5, 150, 105, 0.15), 0 4px 14px rgba(5, 150, 105, 0.22);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-pb-primary:hover,
.btn-cyber-flow:hover {
  background: linear-gradient(180deg, #047857 0%, #065f46 100%) !important;
  border-color: #065f46 !important;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.32) !important;
  transform: translateY(-1px);
}
.btn-pb-primary:active,
.btn-cyber-flow:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(5, 150, 105, 0.2) !important;
}

.btn-pb-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  background: #fff;
  color: #065f46 !important;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
  border: 2px solid #6ee7b7;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-pb-secondary:hover {
  background: #ecfdf5;
  border-color: #059669;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.12);
}

.btn-pb-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  background: transparent;
  color: #065f46 !important;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid #a7f3d0;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-pb-ghost:hover {
  background: #ecfdf5;
  border-color: #059669;
}

.btn-pb-primary--sm,
.btn-pb-secondary--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: 0.5rem;
}

.btn-pb-primary--block { display: flex; width: 100%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, #059669 0%, #047857 100%) !important;
  color: #fff !important;
  border: 1px solid #047857;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.22);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #047857 0%, #065f46 100%) !important;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.32);
  transform: translateY(-1px);
}

/* Koyu yeşil vurgu metinleri — badge, tagline, açıklama */
.pb-accent-text {
  color: #475569;
}
.pb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pb-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #059669;
  flex-shrink: 0;
}

.glow-text { text-shadow: none; color: var(--pb-trust); }

.menu-link-hover::after { background-color: var(--pb-secure); }

/* Platform marquee */
.platform-marquee-item {
  border-color: var(--pb-border) !important;
  background: var(--pb-surface) !important;
  color: var(--pb-text-muted) !important;
}
.platform-marquee-item:hover {
  color: var(--pb-secure) !important;
  border-color: #a7f3d0 !important;
  background: var(--pb-secure-light) !important;
}

/* Breadcrumb */
.site-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  color: #64748b;
  font-family: ui-monospace, monospace;
}
.site-breadcrumb a { color: #475569; text-decoration: none; transition: color 0.15s; }
.site-breadcrumb a:hover { color: var(--pb-secure); }
.site-breadcrumb-sep { color: #cbd5e1; }
.site-breadcrumb-current { color: var(--pb-trust); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Nav CTAs */
.site-nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.5rem 0.85rem; border-radius: 0.5rem; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; transition: all 0.2s;
}
.site-nav-cta--primary {
  color: #fff;
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
  border: 1px solid #047857;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.28);
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}
.site-nav-cta--primary:hover {
  background: linear-gradient(180deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}
.site-nav-cta--ghost { color: #334155; background: #fff; border: 1px solid var(--pb-border); }
.site-nav-cta--ghost:hover { border-color: #a7f3d0; color: var(--pb-secure); }
.site-nav-scroll { scrollbar-width: thin; scrollbar-color: rgba(5,150,105,0.35) transparent; }

@media (max-width: 1279px) {
  .site-nav-item, .site-nav-link { padding: 0.4rem 0.5rem; font-size: 0.75rem; min-height: 2.25rem; }
}

/* ── Modern site header layout ── */
.site-header-stack {
  --site-header-top-h: 2.5rem;
  --site-header-main-h: 4.25rem;
  --site-header-total-h: calc(var(--site-header-top-h) + var(--site-header-main-h));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
@media (min-width: 1024px) {
  .site-header-stack { --site-header-main-h: 4.5rem; }
}

.site-header-top {
  position: relative;
  z-index: 60;
  height: var(--site-header-top-h);
  background: linear-gradient(90deg, #0f172a 0%, #134e4a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 1024px) {
  .site-header-top__inner { padding-inline: 1.5rem; }
}
.site-header-top__left,
.site-header-top__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.site-header-top__right {
  flex-shrink: 0;
  margin-left: auto;
}
.site-header-top__divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.site-header-top__blog,
.site-header-top__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.site-header-top__blog:hover,
.site-header-top__phone:hover {
  color: #6ee7b7;
}
.site-header-top__icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.site-lang-toggle--top {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  min-height: 1.75rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.6875rem;
}
.site-lang-toggle--top:hover,
.site-lang-toggle--top.is-open {
  border-color: rgba(110, 231, 183, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #ecfdf5;
}
.site-lang-toggle--top .site-nav-chevron { color: rgba(255, 255, 255, 0.65); }
.site-lang-toggle--top.is-open .site-nav-chevron { color: #6ee7b7; }

.site-lang-switch {
  display: inline-flex;
  align-items: stretch;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.site-lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.25rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.15s ease, background 0.15s ease;
}
.site-lang-switch__btn + .site-lang-switch__btn {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.site-lang-switch__btn:hover {
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.1);
}
.site-lang-switch__btn.is-active {
  color: #ecfdf5;
  background: rgba(16, 185, 129, 0.35);
}
.site-lang-switch--top {
  flex-shrink: 0;
}

.site-nav-cta--top {
  min-height: 1.75rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
}
.site-nav-cta--top-primary {
  color: #fff;
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
  border: 1px solid rgba(110, 231, 183, 0.35);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.site-nav-cta--top-primary:hover {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}
.site-nav-cta--top-ghost {
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.site-nav-cta--top-ghost:hover {
  border-color: rgba(110, 231, 183, 0.5);
  color: #ecfdf5;
}

.site-header-main {
  position: relative;
  top: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--pb-border) !important;
  overflow: visible;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.75rem;
  height: 4.25rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    height: 4.5rem;
    padding-inline: 1.5rem;
  }
}
.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  min-width: 0;
  overflow: visible;
}
@media (min-width: 1024px) {
  .site-nav { display: flex; }
}
.site-header__actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .site-header__actions { display: flex; }
}
.site-nav-item,
.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: #475569;
  min-height: 2.25rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.site-nav-item:hover,
.site-nav-item.is-open,
.site-nav-link:hover {
  color: #047857;
  background: #f8fafc;
}
.site-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  padding-top: 0.5rem;
  z-index: 50;
}
.site-nav-dropdown--start {
  left: 0;
  right: auto;
  transform-origin: top left;
}
.site-nav-dropdown--end {
  right: 0;
  left: auto;
  transform-origin: top right;
}
.site-nav-dropdown--submenu {
  top: 0;
  left: calc(100% - 2px);
  padding-top: 0;
  padding-left: 0.375rem;
}
.site-nav-dropdown-panel {
  background: var(--pb-surface);
  border: 1px solid var(--pb-border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.12);
}
.site-nav-dropdown-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--pb-border);
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: normal;
  text-transform: none;
}
.site-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid var(--pb-border);
  background: #fff;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background-color 0.15s;
}
.site-lang-toggle:hover,
.site-lang-toggle.is-open {
  border-color: #cbd5e1;
  color: #047857;
  background: #f8fafc;
}
.site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--pb-border);
  background: #fff;
  color: #334155;
  transition: border-color 0.15s, background-color 0.15s;
}
.site-header__menu-btn:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
@media (min-width: 1024px) {
  .site-header__menu-btn { display: none; }
}
.site-mobile-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: min(80vh, 640px);
  overflow-y: auto;
  background: #fff;
  border-top: 1px solid var(--pb-border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.site-mobile-drawer__inner {
  padding: 0.75rem 1rem 1.5rem;
}
.site-mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--pb-border);
}
.site-mobile-lang a {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  color: #64748b;
  border: 1px solid var(--pb-border);
  background: #f8fafc;
}
.site-mobile-lang a.is-active {
  color: #047857;
  border-color: #a7f3d0;
  background: #ecfdf5;
}

/* Mobile nav */
.mobile-nav-drawer { -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.mobile-nav-section { border-bottom: 1px solid var(--pb-border); }
.mobile-nav-trigger {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 0.9rem 0.25rem; font-size: 0.875rem; font-weight: 600;
  color: #334155; text-align: left; background: transparent; border: none;
  text-decoration: none;
}
.mobile-nav-trigger.is-open { color: var(--pb-secure); }
.mobile-nav-panel { padding: 0 0 0.75rem 0.5rem; }
.mobile-nav-label {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #94a3b8; margin: 0.75rem 0 0.35rem; padding-left: 0.75rem;
}
.mobile-nav-link {
  display: block; padding: 0.55rem 0.75rem; margin-bottom: 0.15rem; font-size: 0.8125rem;
  font-weight: 500; color: #64748b; border-left: 2px solid var(--pb-border);
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--pb-secure); border-left-color: #6ee7b7; }

/* Header */
.site-nav-item--modern,
.site-nav-link.site-nav-item--modern {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: #64748b;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  transition: color 0.15s, background-color 0.15s;
}
.site-nav-item--modern:hover,
.site-nav-item--modern.is-open,
.site-nav-link.site-nav-item--modern:hover {
  color: var(--pb-secure);
  background: var(--pb-secure-light);
}


/* Header marka logosu */
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-brand:hover {
  opacity: 0.9;
}
.site-brand__logo {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-brand__text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}
.site-brand__title {
  display: block;
  color: #0f172a;
  font-family: var(--font-display, ui-sans-serif, system-ui, sans-serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.site-brand__subtitle {
  display: block;
  margin-top: 0.2rem;
  color: var(--pb-secure, #059669);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .site-brand {
    gap: 0.75rem;
  }
  .site-brand__logo {
    height: 3.875rem;
  }
  .site-brand__text {
    display: flex;
  }
  .site-brand__title {
    font-size: 1.125rem;
  }
  .site-brand__subtitle {
    font-size: 0.5625rem;
  }
}
@media (min-width: 1024px) {
  .site-brand__logo {
    height: 4.25rem;
  }
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.site-footer-brand__logo {
  height: 3.75rem;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-footer-brand__title {
  display: block;
  color: #fff;
  font-family: var(--font-display, ui-sans-serif, system-ui, sans-serif);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}
.site-footer-brand__subtitle {
  display: block;
  margin-top: 0.25rem;
  color: #34d399;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav-dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #475569;
  transition: color 0.15s, background-color 0.15s;
}
.site-nav-dropdown-link:hover {
  color: var(--pb-secure);
  background: var(--pb-secure-light);
}
.site-nav-chevron {
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.25rem;
  transition: transform 0.2s;
}
.site-nav-chevron.is-open { transform: rotate(180deg); color: var(--pb-secure); }

/* Home */
.home-hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  padding: 1.5rem 1rem 2rem;
}
.home-hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 5% 10% 15%;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.14), transparent 68%);
  pointer-events: none;
}
.home-hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 16rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.1));
}
@media (min-width: 640px) {
  .home-hero-logo {
    width: min(100%, 20rem);
  }
}
@media (min-width: 1024px) {
  .home-hero-logo-wrap {
    max-width: none;
    margin-inline: 0;
    padding: 2rem 0 2rem 1rem;
  }
  .home-hero-logo {
    width: min(100%, 26rem);
  }
}
.home-hero-phone__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  flex-shrink: 0;
}
.home-hero-card {
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
}
.home-card {
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

/* Enterprise feature cards */
.enterprise-feature-card {
  position: relative;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.enterprise-feature-card:hover {
  border-color: #6ee7b7;
  box-shadow: 0 12px 32px -8px rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}
.enterprise-feature-card--featured {
  border-color: #e2e8f0;
  background: linear-gradient(145deg, #f8fafc 0%, #fff 60%);
}
.enterprise-feature-card--hero {
  padding: 2rem 2.25rem;
}
.enterprise-feature-card--hero .enterprise-feature-card__icon {
  font-size: 2.5rem;
}
.enterprise-feature-card--hero .enterprise-feature-card__title {
  font-size: 1.05rem;
}
.enterprise-feature-card__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.25s ease;
}
.enterprise-feature-card:hover .enterprise-feature-card__icon {
  transform: scale(1.08);
}
.enterprise-feature-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.625rem;
  font-family: var(--font-display, inherit);
  line-height: 1.35;
}
.enterprise-feature-card__desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.6;
}
.enterprise-feature-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}
.enterprise-feature-card__version {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}

/* Release notes timeline */
.release-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.release-timeline__item {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 1rem;
}
.release-timeline--compact .release-timeline__item {
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.75rem;
}
.release-timeline__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.35rem;
}
.release-timeline--compact .release-timeline__marker {
  padding-top: 1.1rem;
}
.release-timeline__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: #fff;
  border: 2px solid #6ee7b7;
  flex-shrink: 0;
  z-index: 1;
}
.release-timeline__item--latest .release-timeline__dot {
  background: #059669;
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.release-timeline__line {
  position: absolute;
  top: 1.75rem;
  bottom: -0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, #a7f3d0, #e2e8f0);
}
.release-timeline__item:last-child .release-timeline__line {
  display: none;
}
.release-timeline__card {
  margin-bottom: 1.25rem;
}
.release-timeline__item--latest .release-timeline__card {
  border-color: #e2e8f0;
  background: linear-gradient(145deg, #f8fafc 0%, #fff 55%);
}
.release-timeline__version {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}
.release-timeline__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
}

/* Advanced Delivery Ops — solid dark panel (gradient Tailwind utils not in build) */
.ado-section-panel {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  border: 1px solid #334155;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.35);
}
.ado-section-panel__header {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
@media (min-width: 640px) {
  .ado-section-panel__header { padding: 2.5rem 2rem 1.75rem; }
}
@media (min-width: 1024px) {
  .ado-section-panel__header { padding: 2.5rem 2.5rem 1.75rem; }
}
.ado-section-panel__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.35);
  padding: 0.3rem 0.65rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.ado-section-panel__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  font-family: var(--font-display, inherit);
  line-height: 1.25;
  color: #f8fafc;
  margin: 0 0 0.75rem;
}
.ado-section-panel__intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 48rem;
  margin: 0;
}
.ado-section-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .ado-section-panel__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .ado-section-panel__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 2.5rem;
    gap: 1.15rem;
  }
}
.ado-section-card {
  padding: 1.25rem 1.35rem;
  border-radius: 0.875rem;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.22);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.ado-section-card:hover {
  border-color: rgba(110, 231, 183, 0.45);
  background: rgba(30, 41, 59, 1);
  transform: translateY(-1px);
}
.ado-section-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ado-section-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.ado-section-card__title {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display, inherit);
  line-height: 1.35;
  color: #f8fafc;
  margin: 0;
}
.ado-section-card__body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0 0 1rem;
}
.ado-section-card__quote {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #a7f3d0;
  font-style: italic;
  margin: 0;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(52, 211, 153, 0.55);
}

/* Forensic logging section */
.forensic-section {
  position: relative;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  border: 1px solid #334155;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.35);
  color: #e2e8f0;
}
.forensic-section__inner {
  position: relative;
  padding: 2rem 1.25rem;
}
@media (min-width: 640px) {
  .forensic-section__inner { padding: 2.5rem 2rem; }
}
@media (min-width: 1024px) {
  .forensic-section__inner { padding: 3rem 2.5rem; }
}
.forensic-section__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.forensic-section__header {
  position: relative;
  margin-bottom: 2rem;
}
.forensic-section__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.forensic-section__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #f8fafc;
  font-family: var(--font-display, inherit);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  max-width: 42rem;
}
.forensic-section__desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 48rem;
  margin-bottom: 1.5rem;
}
.forensic-section__terminal {
  max-width: 28rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #334155;
  background: rgba(15, 23, 42, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.forensic-section__terminal-bar {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}
.forensic-section__terminal-bar span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #475569;
}
.forensic-section__terminal-bar span:first-child { background: #f87171; }
.forensic-section__terminal-bar span:nth-child(2) { background: #fbbf24; }
.forensic-section__terminal-bar span:nth-child(3) { background: #34d399; }
.forensic-section__terminal-body {
  padding: 0.85rem 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  line-height: 1.8;
}
.forensic-section__terminal-line {
  color: #cbd5e1;
}
.forensic-section__prompt {
  color: #34d399;
  margin-right: 0.35rem;
}
.forensic-section__status {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  border-radius: 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
}
.forensic-section__status--ok {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.15);
}
.forensic-section__status--warn {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.12);
}
.forensic-section__status--info {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
}
.forensic-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .forensic-section__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .forensic-section__grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.forensic-card {
  padding: 1.25rem 1.35rem;
  border-radius: 0.875rem;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid #334155;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.forensic-card:hover {
  border-color: rgba(110, 231, 183, 0.45);
  background: rgba(30, 41, 59, 0.9);
  transform: translateY(-1px);
}
.forensic-card__icon {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.forensic-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
  font-family: var(--font-display, inherit);
  line-height: 1.35;
}
.forensic-card__desc {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.65;
}
.forensic-section__footer {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .forensic-section__footer {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
    gap: 2rem;
  }
}
.forensic-section__punchline {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid #34d399;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 0 0.75rem 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.7;
  font-style: normal;
}
.forensic-benefits__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6ee7b7;
  margin-bottom: 0.85rem;
}
.forensic-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.forensic-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.forensic-benefits__check {
  color: #34d399;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.forensic-faq {
  padding-top: 1.5rem;
  border-top: 1px solid #334155;
}
.forensic-faq__title {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  font-family: var(--font-display, inherit);
  margin-bottom: 1rem;
}
.forensic-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.forensic-faq__item {
  border-radius: 0.75rem;
  border: 1px solid #334155;
  background: rgba(30, 41, 59, 0.5);
  overflow: hidden;
}
.forensic-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.forensic-faq__trigger:hover {
  background: rgba(51, 65, 85, 0.45);
}
.forensic-faq__chevron {
  width: 1rem;
  height: 1rem;
  color: #64748b;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.forensic-faq__chevron--open {
  transform: rotate(180deg);
  color: #6ee7b7;
}
.forensic-faq__panel {
  padding: 0 1rem 1rem;
}
.forensic-faq__panel p {
  margin: 0;
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.7;
}

/* ESP solutions section */
.esp-section__header {
  margin-bottom: 2rem;
}
.esp-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .esp-section__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .esp-section__grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.esp-card__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.esp-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: var(--font-display, inherit);
  line-height: 1.35;
}
.esp-card__desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.65;
}
.esp-section__punchline {
  border-left: 3px solid #059669;
  background: linear-gradient(145deg, #f0fdf4 0%, #fff 60%);
}
.esp-section__provider-logo {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid #e2e8f0;
}
.esp-section__provider-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
}

/* ESP segment illustrated panels */
.esp-visuals__diagram {
  position: relative;
}
.esp-visuals__diagram-img {
  display: block;
  max-height: 340px;
  object-fit: contain;
  background: #0f172a;
}
.esp-provider-card {
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.esp-provider-card:hover {
  box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.12);
}
.esp-provider-card--ok {
  border-color: #d1fae5;
}
.esp-provider-card--warn {
  border-color: #fde68a;
  background: linear-gradient(145deg, #fffbeb 0%, #fff 55%);
}
.esp-provider-card--info {
  border-color: #bfdbfe;
  background: linear-gradient(145deg, #eff6ff 0%, #fff 55%);
}
.esp-provider-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
}
.esp-provider-summary__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
}
.esp-provider-summary--ok .esp-provider-summary__dot { background: #10b981; }
.esp-provider-summary--warn .esp-provider-summary__dot { background: #fbbf24; }
.esp-provider-summary--info .esp-provider-summary__dot { background: #60a5fa; }
.esp-provider-filter {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  transition: all 0.15s ease;
  cursor: pointer;
}
.esp-provider-filter:hover {
  border-color: #a7f3d0;
  color: #047857;
}
.esp-provider-filter--active {
  border-color: #059669;
  background: #ecfdf5;
  color: #047857;
}
.esp-ops-card__img-wrap {
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc 0%, #ecfdf5 100%);
  border-bottom: 1px solid #e2e8f0;
}
.esp-ops-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}
.esp-ops-card:hover .esp-ops-card__img {
  transform: scale(1.03);
}

/* Compare pages */
.compare-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.compare-card:hover {
  transform: translateY(-2px);
}
.compare-table__row {
  transition: background-color 0.15s ease;
}
.compare-table__row:hover {
  background-color: #f8fafc;
}
.compare-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
}
.compare-cell--yes {
  color: #059669;
}
.compare-cell--no {
  color: #f87171;
}
.compare-cell--partial {
  font-size: 0.7rem;
  font-weight: 600;
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}
.compare-cell--text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}

/* Marketing page utilities */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #059669;
  animation: pulse 2s infinite;
}
.page-divider {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--pb-secure), transparent);
  border-radius: 9999px;
  margin-top: 1.5rem;
}
.page-divider--center { margin-left: auto; margin-right: auto; }

/* Sayfa header + modül banner (platform vb.) */
.page-hero-with-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .page-hero-with-banner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }
}
.page-hero-with-banner__text {
  min-width: 0;
}
.page-hero-banner {
  min-width: 0;
  width: 100%;
}
.page-hero-banner .glass-panel {
  margin-bottom: 0 !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 8px 30px -8px rgba(15, 23, 42, 0.1) !important;
}
/* Softer mockup palette — less eye-straining white/green */
.page-hero-banner .glass-panel > .border-b {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%) !important;
  border-color: #e2e8f0 !important;
}
.page-hero-banner .glass-panel .bg-white {
  background: #fafbfc !important;
}
.page-hero-banner .glass-panel [class*="from-emerald-50"],
.page-hero-banner .glass-panel [class*="to-emerald-50"],
.page-hero-banner .glass-panel [class*="from-blue-50"],
.page-hero-banner .glass-panel [class*="to-blue-50"],
.page-hero-banner .glass-panel [class*="from-indigo-50"],
.page-hero-banner .glass-panel [class*="to-indigo-50"],
.page-hero-banner .glass-panel [class*="from-amber-50"],
.page-hero-banner .glass-panel [class*="from-violet-50"],
.page-hero-banner .glass-panel [class*="from-slate-50"] {
  --tw-gradient-from: #f8fafc var(--tw-gradient-from-position) !important;
  --tw-gradient-to: #eef2f7 var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.page-hero-banner .glass-panel .bg-emerald-50,
.page-hero-banner .glass-panel [class*="bg-emerald-50"] {
  background-color: #f1f5f9 !important;
}
.page-hero-banner .glass-panel .border-emerald-100,
.page-hero-banner .glass-panel .border-emerald-200,
.page-hero-banner .glass-panel [class*="border-emerald"] {
  border-color: #e2e8f0 !important;
}
.page-hero-banner .glass-panel .text-emerald-800,
.page-hero-banner .glass-panel .text-emerald-700 {
  color: #334155 !important;
}
.page-hero-banner .glass-panel .text-emerald-600 {
  color: #047857 !important;
}
.page-hero-mockup.glass-panel > .border-b,
.page-hero-mockup.border-b {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%) !important;
}
.home-hero-section {
  background: linear-gradient(180deg, #f1f5f9 0%, var(--pb-bg) 55%) !important;
}
.home-hero-section .home-hero-card .bg-emerald-50 {
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
}
.home-hero-phone__icon {
  background: #f1f5f9 !important;
  color: #047857 !important;
}
@media (max-width: 1023px) {
  .page-hero-banner {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-page-hero .page-hero-banner {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-hero-left .page-hero-with-banner__text,
.page-hero-left .site-breadcrumb,
.blog-page-hero .page-hero-with-banner__text,
.blog-page-hero .breadcrumb,
.blog-page-hero nav[aria-label="Breadcrumb"] {
  text-align: left;
}
@media (max-width: 1023px) {
  .page-hero-left .page-hero-banner {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Admin theme moved to public/assets/css/admin-theme.css */

/* ── Register account type tabs ── */
.register-type-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.25rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.register-type-tab {
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.register-type-tab:hover {
  color: #0f172a;
}

.register-type-tab.is-active {
  background: #ffffff;
  color: #047857;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

[x-cloak] {
  display: none !important;
}

/* Prose — blog/articles on light theme */
.prose pre {
  background: #1e293b !important;
  color: #e2e8f0;
  border-color: #e2e8f0 !important;
}
.prose code {
  background: #f1f5f9 !important;
  color: #059669 !important;
}

/* ── Blog (WordPress-style) ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
  }
}
.blog-main { min-width: 0; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover {
  border-color: #a7f3d0;
  box-shadow: 0 12px 32px rgba(6, 95, 70, 0.08);
}
.blog-card__image-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; background: #f1f5f9; }
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card__image { transform: scale(1.03); }
.blog-card__body { padding: 1.25rem 1.35rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cats { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.65rem; }
.blog-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s;
}
.blog-card__cat:hover { background: #d1fae5; }
.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  font-family: var(--font-display, system-ui);
}
.blog-card__title a { color: #0f172a; text-decoration: none; }
.blog-card__title a:hover { color: #065f46; }
.blog-card__excerpt {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  flex: 1;
}
.blog-card__meta {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.65rem;
}
.blog-card__dot { margin: 0 0.35rem; }
.blog-card__more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
}
.blog-card__more:hover { color: #065f46; }
.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.blog-sidebar { position: sticky; top: 6.5rem; }
.blog-widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1.15rem 1.25rem;
}
.blog-widget__title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f172a;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #065f46;
}
.blog-widget__list { list-style: none; margin: 0; padding: 0; }
.blog-widget__list li + li { margin-top: 0.15rem; }
.blog-widget__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.blog-widget__link:hover,
.blog-widget__link.is-active {
  background: #ecfdf5;
  color: #065f46;
  font-weight: 600;
}
.blog-widget__count {
  font-size: 0.7rem;
  background: #f1f5f9;
  color: #64748b;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-weight: 700;
}
.blog-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-tag-cloud--inline { margin-top: 0.25rem; }
.blog-tag {
  font-size: 0.75rem;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.6rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.15s;
}
.blog-tag:hover,
.blog-tag.is-active {
  background: #065f46;
  border-color: #065f46;
  color: #fff;
}
.blog-popular-list { list-style: none; margin: 0; padding: 0; }
.blog-popular-item + .blog-popular-item { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #f1f5f9; }
.blog-popular-item__link {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-decoration: none;
}
.blog-popular-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ecfdf5, #dbeafe);
}
.blog-popular-item__thumb--placeholder { display: block; }
.blog-popular-item__body { min-width: 0; }
.blog-popular-item__title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.2rem;
}
.blog-popular-item__link:hover .blog-popular-item__title { color: #065f46; }
.blog-popular-item__meta { font-size: 0.7rem; color: #94a3b8; }
.blog-single { min-width: 0; }
.blog-single__featured {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
  aspect-ratio: 21/9;
  background: #f1f5f9;
}
.blog-single__featured-img { width: 100%; height: 100%; object-fit: cover; }
.blog-single__cats { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.blog-single__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  font-family: var(--font-display, system-ui);
}
.blog-single__meta {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.blog-single__lead {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.blog-single__content {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
}
@media (min-width: 640px) {
  .blog-single__content { padding: 2rem 2.25rem; }
}
.blog-single__footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.blog-single__footer-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.blog-single__nav { margin-top: 2rem; }

/* Resource article hero (no featured image) */
.resource-article__hero {
  background: linear-gradient(135deg, #ecfdf5 0%, #dbeafe 55%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.resource-article__hero-inner {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #a7f3d0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(6, 95, 70, 0.1);
}
.resource-article__hero-icon { font-size: 2rem; line-height: 1; }
.resource-article__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #ecfdf5, #dbeafe) !important;
}
.blog-widget--cta {
  background: linear-gradient(160deg, #ecfdf5 0%, #fff 45%);
  border-color: #a7f3d0;
}
.blog-related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.blog-related__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.25rem;
  font-family: var(--font-display, system-ui);
}
.blog-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .blog-related__grid { grid-template-columns: repeat(2, 1fr); }
}
.blog-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-related-card:hover {
  border-color: #a7f3d0;
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.07);
}
.blog-related-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #ecfdf5, #dbeafe);
}
.blog-related-card__img--placeholder { display: block; min-height: 100px; }
.blog-related-card__title {
  padding: 0.85rem 1rem 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.blog-related-card:hover .blog-related-card__title { color: #065f46; }
.blog-related-card__meta {
  padding: 0 1rem 0.85rem;
  font-size: 0.7rem;
  color: #94a3b8;
}
.blog-empty { background: #fff; }

/* Homepage & compatibility platform logos */
.home-platform-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 28px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.home-platform-logo--hero {
  height: 40px;
  max-width: 160px;
}
.home-platform-logo--card {
  height: 28px;
  max-width: 96px;
}
.compat-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 3.25rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid #e2e8f0;
}
.compat-platform-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 2rem;
  object-fit: contain;
}
.home-platform-card:hover .home-platform-logo,
.group:hover .home-platform-logo,
.group:hover .compat-platform-logo {
  opacity: 1;
}
