@charset "UTF-8";
/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
.mhr-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  height: var(--navbar-h);
  z-index: 1000;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: none;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, top 0.3s, backdrop-filter 0.35s;
}
@media (min-width: 576px) {
  .mhr-nav {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .mhr-nav {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .mhr-nav {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .mhr-nav {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .mhr-nav {
    max-width: 85%;
  }
}
.mhr-nav.scrolled {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 11, 160, 0.12), 0 2px 8px rgba(0, 11, 160, 0.06);
  top: 10px;
}

.mhr-nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Logo ── */
.mhr-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 36px;
}

.mhr-logo-img {
  height: 46px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ── Menu ── */
.mhr-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.mhr-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.mhr-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  transform: scaleX(0);
  transition: transform 0.22s var(--ease);
}
.mhr-link:hover {
  color: var(--title);
}
.mhr-link.active {
  color: var(--primary);
  font-weight: 600;
}
.mhr-link.active::after {
  transform: scaleX(1);
}

/* ── Dropdown ── */
.mhr-has-drop {
  position: relative;
  list-style: none;
}
.mhr-has-drop:hover .mhr-dropdown, .mhr-has-drop:focus-within .mhr-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}
.mhr-has-drop:hover .mhr-drop-toggle, .mhr-has-drop:focus-within .mhr-drop-toggle {
  color: var(--primary);
  background: rgba(0, 11, 160, 0.06);
}
.mhr-has-drop:hover .mhr-chevron, .mhr-has-drop:focus-within .mhr-chevron {
  transform: rotate(180deg);
}

.mhr-chevron {
  transition: transform 0.22s var(--ease);
}

.mhr-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  width: 300px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 11, 160, 0.1);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0, 11, 160, 0.14), 0 4px 12px rgba(0, 11, 160, 0.07);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  pointer-events: none;
  visibility: hidden;
  z-index: 100;
}

.mhr-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.16s;
}
.mhr-drop-item:hover {
  background: rgba(0, 11, 160, 0.05);
}
.mhr-drop-item:hover .mhr-drop-title {
  color: var(--primary);
}

.mhr-drop-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 11, 160, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.mhr-drop-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--title);
  transition: color 0.16s;
}

.mhr-drop-sub {
  font-size: 0.72rem;
  color: var(--text);
  opacity: 0.6;
  margin-top: 1px;
}

/* ── Right actions ── */
.mhr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.mhr-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.mhr-lang:hover {
  border-color: rgba(0, 11, 160, 0.22);
  color: var(--primary);
  background: rgba(0, 11, 160, 0.04);
}

.mhr-nav-cta {
  padding: 8px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Hamburger ── */
.mhr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.mhr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--title);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.mhr-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mhr-burger.open span:nth-child(2) {
  opacity: 0;
}
.mhr-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ── */
.mhr-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-radius: 0 0 16px 16px;
  padding: 12px 16px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s;
}
.mhr-mobile-menu.open {
  max-height: 600px;
}

.mhr-mob-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
}
.mhr-mob-link:hover {
  background: rgba(0, 11, 160, 0.06);
  color: var(--primary);
}

.mhr-mob-sub {
  padding-left: 28px;
  font-size: 0.83rem;
  opacity: 0.8;
}

.mhr-mob-sep {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 14px 2px;
  opacity: 0.7;
}

.mhr-mob-cta {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .mhr-menu {
    display: none;
  }
  .mhr-burger {
    display: flex;
  }
  .mhr-mobile-menu {
    display: flex;
  }
  .mhr-nav-cta:not(.mhr-mob-cta) {
    display: none;
  }
}
/* ══════════════════════════════════════════════════════════════════
   HERO — World-class futuristic SaaS hero
══════════════════════════════════════════════════════════════════ */
.hr-hero {
  position: relative;
  padding-top: calc(var(--navbar-h) + 64px);
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--bg);
}

/* Background atmosphere */
.hr-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hr-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hr-glow-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(28, 100, 242, 0.18), transparent 70%);
}

.hr-glow-2 {
  width: 500px;
  height: 500px;
  top: 100px;
  right: -60px;
  background: radial-gradient(circle, rgba(0, 11, 160, 0.13), transparent 70%);
}

.hr-glow-3 {
  width: 340px;
  height: 340px;
  bottom: 0;
  left: 40%;
  background: radial-gradient(circle, rgba(28, 100, 242, 0.1), transparent 70%);
}

.hr-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 11, 160, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 11, 160, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

/* Layout — panels top, text bottom */
.hr-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* ① Headline — top */
.hr-hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* ③ Description + CTAs — bottom */
.hr-hero-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  width: 100%;
}

.hr-concept-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 11, 160, 0.18);
  background: rgba(0, 11, 160, 0.05);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
  width: -moz-fit-content;
  width: fit-content;
}

.hr-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 11, 160, 0.12);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 28px;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0, 11, 160, 0.07);
}

.hr-ai-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00733B;
  box-shadow: 0 0 0 2px rgba(0, 115, 59, 0.25);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hr-headline {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--title);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}

.hr-headline-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hr-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 520px;
  margin: 0 0 32px;
}

.hr-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 11, 160, 0.35), 0 1px 3px rgba(0, 11, 160, 0.2);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 11, 160, 0.45), 0 2px 6px rgba(0, 11, 160, 0.25);
  color: #fff;
}

.hr-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 11, 160, 0.14);
  color: var(--title);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 11, 160, 0.07);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.hr-btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 11, 160, 0.12);
  color: var(--title);
}

.hr-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 32px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 11, 160, 0.09);
  border-radius: 16px;
  width: -moz-fit-content;
  width: fit-content;
}

.hr-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hr-stat-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hr-stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.6;
}

.hr-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.hr-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hr-logos-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0.5;
  white-space: nowrap;
}

.hr-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hr-logos span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  opacity: 0.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.hr-logos span:hover {
  opacity: 0.6;
}

/* Hero bottom protection fade */
.hr-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

/* ② Panels */
.hr-hero-right {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Panel wrapper (label + panel stacked vertically) */
.hr-panel-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 235px;
}
.hr-panel-wrap--main {
  flex: 1;
  min-width: 0;
}

/* Panel label — in-flow above each panel */
.hr-panel-lbl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 5px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 14px rgba(0, 11, 160, 0.13);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--title);
  white-space: nowrap;
  align-self: center;
}

.hr-lbl-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Base panel — all same height */
.hr-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 11, 160, 0.09), 0 1px 4px rgba(0, 11, 160, 0.05);
  overflow: hidden;
  height: 420px;
  will-change: transform;
  transform-style: preserve-3d;
  transition: box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.18s ease-out;
}
.hr-panel:hover {
  box-shadow: 0 14px 44px rgba(0, 11, 160, 0.15), 0 4px 12px rgba(0, 11, 160, 0.08);
}

/* Analytics panel */
.hr-panel-an {
  padding: 4px;
  overflow-y: auto;
  scrollbar-width: none;
}
.hr-panel-an::-webkit-scrollbar {
  display: none;
}

/* Main screenshot panel */
.hr-panel-main {
  padding: 4;
  display: flex;
  align-items: flex-start;
}

.hr-screen-img {
  width: 100%;
  height: 100%;
  -o-object-position: top left;
     object-position: top left;
  display: block;
}

/* Profile panel */
.hr-panel-prof {
  padding: 4px;
  overflow-y: auto;
  scrollbar-width: none;
}
.hr-panel-prof::-webkit-scrollbar {
  display: none;
}

/* ── Analytics panel internals ── */
.hr-an-block {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.hr-an-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hr-an-ttl {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}

.hr-an-range {
  font-weight: 400;
  color: var(--text);
  opacity: 0.5;
  font-size: 0.6rem;
}

.hr-an-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 3px;
}

.hr-delta-up {
  font-size: 0.62rem;
  font-weight: 600;
  color: #00733B;
}
.hr-delta-up span {
  font-weight: 400;
  color: var(--text);
  opacity: 0.55;
}

.hr-spark {
  width: 100%;
  height: 52px;
  display: block;
  margin-top: 6px;
}

.hr-spark-sm {
  height: 30px;
}

.hr-dept-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.hr-dl-row {
  display: grid;
  grid-template-columns: 56px 1fr 26px;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  color: var(--text);
}

.hr-dl-bar {
  height: 4px;
  background: rgba(0, 11, 160, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.hr-dl-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  border-radius: 2px;
}

/* ── Main dashboard / Self-Service internals ── */
.hr-md-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.hr-md-breadcrumb {
  font-size: 0.6rem;
  color: var(--text);
  opacity: 0.5;
  margin-bottom: 3px;
}

.hr-md-greet {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--title);
}

.hr-md-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0, 11, 160, 0.08);
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Summary cards */
.hr-ss-ttl {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
}

.hr-ss-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.hr-ss-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}

.hr-ss-card-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.hr-ss-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.hr-ss-card-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--title);
  line-height: 1.2;
}

.hr-ss-card-sub {
  font-size: 0.55rem;
  color: var(--text);
  opacity: 0.5;
}

.hr-ss-card-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hr-ss-card-val span {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.6;
}

.hr-ss-card-row {
  display: flex;
  gap: 10px;
}
.hr-ss-card-row .hr-ss-card-val {
  font-size: 0.82rem;
}

/* Request transactions */
.hr-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.hr-req-tile {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  position: relative;
}

.hr-req-arrow {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.65rem;
  color: var(--text);
  opacity: 0.35;
}

.hr-req-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 0.72rem;
  color: var(--primary);
}

.hr-req-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--title);
  line-height: 1.3;
}

/* Pending requests */
.hr-pend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.hr-pend-item:last-child {
  border-bottom: none;
}

.hr-pend-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.hr-pend-body {
  flex: 1;
  min-width: 0;
}

.hr-pend-name {
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--title);
}

.hr-pend-date {
  font-size: 0.58rem;
  color: var(--text);
  opacity: 0.5;
}

.hr-pend-status {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
}
.hr-pend-status--approved {
  background: rgba(0, 115, 59, 0.1);
  color: #00733B;
}
.hr-pend-status--new {
  background: rgba(0, 11, 160, 0.08);
  color: var(--primary);
}

/* ── Profile panel internals ── */
.hr-ep-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hr-ep-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.hr-ep-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--title);
}

.hr-ep-role {
  font-size: 0.6rem;
  color: var(--text);
  opacity: 0.6;
}

.hr-ep-badge {
  margin-left: auto;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(0, 115, 59, 0.1);
  color: #00733B;
  white-space: nowrap;
}

.hr-ep-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.hr-ep-tab {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.55;
  cursor: default;
  padding: 2px 4px;
}
.hr-ep-tab--active {
  color: var(--primary);
  opacity: 1;
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
}

.hr-ep-rows {
  margin-bottom: 10px;
}

.hr-ep-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 11, 160, 0.05);
}
.hr-ep-row:last-child {
  border-bottom: none;
}

.hr-ep-k {
  font-size: 0.6rem;
  color: var(--text);
  opacity: 0.55;
}

.hr-ep-v {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--title);
  text-align: right;
}

.hr-ep-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.hr-ep-metric-ttl {
  font-size: 0.6rem;
  color: var(--text);
  opacity: 0.55;
  margin-bottom: 2px;
}

.hr-ep-metric-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px;
}
.hr-ep-metric-val span {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text);
  opacity: 0.5;
}

.hr-ep-bar-track {
  height: 5px;
  background: rgba(0, 11, 160, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.hr-ep-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  border-radius: 3px;
}

.hr-ep-stars {
  color: var(--warn);
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.hr-ep-skills-ttl {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 6px;
}

.hr-ep-skills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.hr-ep-skills span {
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(0, 11, 160, 0.07);
  color: var(--primary);
  border: 1px solid rgba(0, 11, 160, 0.12);
}

/* Shared utility */
.hr-leg-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hr-view-all {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.7;
  float: right;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hr-hero-right {
    display: none;
  }
  .hr-hero {
    min-height: auto;
    padding-bottom: 60px;
  }
  .hr-hero-left {
    text-align: center;
  }
}
/* ── Mega Section — shared styles ───────────────────────────────── */
.mega_section {
  padding: 96px 0;
  position: relative;
}
.mega_section .section_label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 11, 160, 0.07);
  border: 1px solid rgba(0, 11, 160, 0.14);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.795rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.mega_section .section_subLabel {
  width: -moz-max-content;
  width: max-content;
  gap: 7px;
  background: var(--surface);
  border: 1px solid rgba(0, 11, 160, 0.14);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.795rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}
.mega_section .section_label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.mega_section .section_label-dot.in {
  opacity: 1;
}
.mega_section .section_title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--title);
  letter-spacing: -0.1rem;
  line-height: 1.15;
  margin: 0 0 14px;
  text-transform: capitalize;
}
.mega_section .section-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 32px;
}
.mega_section .section-description .highlight {
  color: var(--primary);
  font-weight: 600;
}
.mega_section {
  /* ── Feature list — 2-column grid ────────────────────────── */
}
.mega_section .feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mega_section .feature-list .feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  cursor: default;
}
.mega_section .feature-list .feature-item:hover {
  border-color: rgba(0, 11, 160, 0.22);
  box-shadow: 0 6px 20px rgba(0, 11, 160, 0.09);
  transform: translateY(-2px);
}
.mega_section .feature-list .feature-item:hover .feature-icon {
  background: rgba(0, 11, 160, 0.12);
}
.mega_section .feature-list .feature-item .feature-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 11, 160, 0.07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.18s ease;
}
.mega_section .feature-list .feature-item .feature-icon svg {
  display: block;
}
.mega_section .feature-list .feature-item .feature-content {
  flex: 1;
  min-width: 0;
}
.mega_section .feature-list .feature-item .feature-content .feature-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--title);
  margin: 0 0 4px;
  line-height: 1.3;
}
.mega_section .feature-list .feature-item .feature-content .feature-description {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .mega_section .feature-list {
    grid-template-columns: 1fr;
  }
}
.mega_section.bg_white {
  background: radial-gradient(ellipse 68% 52% at calc(12% + var(--sp, 0) * 28%) calc(6% + var(--sp, 0) * 32%), rgba(0, 11, 160, 0.04) 0%, transparent 62%), radial-gradient(ellipse 52% 42% at calc(88% - var(--sp, 0) * 26%) calc(92% - var(--sp, 0) * 30%), rgba(28, 100, 242, 0.03) 0%, transparent 62%), var(--surface);
}
.mega_section.bg_white .feature-list .feature-item {
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0, 11, 160, 0.06), 0 1px 2px rgba(0, 11, 160, 0.04);
}
.mega_section.bg_white .feature-list .feature-item:hover {
  border-color: rgba(0, 11, 160, 0.2);
  box-shadow: 0 8px 24px rgba(0, 11, 160, 0.1), 0 2px 6px rgba(0, 11, 160, 0.06), 0 0 0 1px rgba(0, 11, 160, 0.07);
}
.mega_section.bg_white .window-bar {
  background: var(--bg);
}
.mega_section.bg_white .screen-body {
  background: var(--bg);
}

/* ── Employee Profile mockup (fp-card--emp) ─────────────────────── */
.fp-card--emp {
  padding: 0 !important;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.fp-card--emp .fp-emp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.fp-card--emp .fp-emp-breadcrumb {
  font-size: 10px;
  color: var(--ink-3);
  white-space: nowrap;
}
.fp-card--emp .fp-emp-breadcrumb strong {
  color: var(--primary);
  font-weight: 600;
}
.fp-card--emp .fp-emp-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.fp-card--emp .fp-emp-act {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--ink-3);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.fp-card--emp .fp-emp-act:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.fp-card--emp .fp-emp-act--del {
  color: #e53935;
  border-color: rgba(229, 57, 53, 0.25);
}
.fp-card--emp .fp-emp-titlerow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.fp-card--emp .fp-emp-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(0, 11, 160, 0.08);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.fp-card--emp .fp-emp-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.fp-card--emp .fp-emp-meta {
  display: flex;
  gap: 16px;
  font-size: 10px;
  color: var(--ink-3);
  margin-left: auto;
}
.fp-card--emp .fp-emp-meta strong {
  color: var(--ink);
  font-weight: 600;
}
.fp-card--emp .fp-emp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.fp-card--emp .fp-emp-tabs::-webkit-scrollbar {
  display: none;
}
.fp-card--emp .fp-emp-tab {
  padding: 9px 14px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s, border-color 0.15s;
}
.fp-card--emp .fp-emp-tab:hover {
  color: var(--primary);
}
.fp-card--emp .fp-emp-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}
.fp-card--emp .fp-emp-body {
  padding: 14px;
}
.fp-card--emp .fp-emp-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.fp-card--emp .fp-emp-grid {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fp-card--emp .fp-emp-avatar-wrap {
  flex-shrink: 0;
}
.fp-card--emp .fp-emp-avatar {
  width: 72px;
  height: 86px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 4px;
  color: var(--ink-3);
}
.fp-card--emp .fp-emp-cam {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
}
.fp-card--emp .fp-emp-fields {
  flex: 1;
  min-width: 0;
}
.fp-card--emp .fp-emp-field-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.fp-card--emp .fp-emp-field {
  flex: 1;
  min-width: 80px;
}
.fp-card--emp .fp-emp-label {
  font-size: 9px;
  color: var(--ink-3);
  margin-bottom: 3px;
  font-weight: 500;
}
.fp-card--emp .fp-emp-input {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 10px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-card--emp .fp-emp-input--icon svg {
  color: var(--ink-3);
  flex-shrink: 0;
}
.fp-card--emp .fp-emp-select {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 10px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.fp-card--emp .fp-emp-radios {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fp-card--emp .fp-radio {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 10px;
  color: var(--ink-3);
  cursor: pointer;
  white-space: nowrap;
}
.fp-card--emp .fp-radio--on {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 11, 160, 0.05);
}
.fp-card--emp .fp-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Profile mockup card ─────────────────────────────────────────── */
.fp-col {
  align-self: flex-start;
  position: sticky;
  top: calc(var(--navbar-h) + 24px);
}

.fp-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  position: relative;
}
.fp-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(70% 60% at 50% 50%, rgba(0, 11, 160, 0.07), transparent 70%);
  pointer-events: none;
}

.fp-card {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  /* override screen-body height so it sizes to content */
}
.fp-card .screen-body {
  height: auto !important;
  padding: 22px !important;
}
.fp-card .fp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-bd);
  margin-bottom: 14px;
}
.fp-card .fp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.fp-card .fp-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.fp-card .fp-role {
  font-size: 12px;
  color: var(--ink-3);
}
.fp-card .fp-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(31, 138, 91, 0.12);
  color: #1f8a5b;
  white-space: nowrap;
  flex-shrink: 0;
}
.fp-card .fp-tabs {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  background: var(--track);
  border-radius: 9px;
  padding: 3px;
}
.fp-card .fp-tab {
  flex: 1;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  padding: 7px 6px;
  border-radius: 7px;
  color: var(--ink-3);
  cursor: default;
  transition: background 0.15s, color 0.15s;
}
.fp-card .fp-tab.active {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.fp-card .fp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--card-bd);
  font-size: 13px;
}
.fp-card .fp-row:last-of-type {
  border-bottom: none;
}
.fp-card .fp-row .fp-k {
  color: var(--ink-3);
  font-weight: 500;
}
.fp-card .fp-row .fp-v {
  color: var(--ink);
  font-weight: 600;
}
.fp-card .fp-alert {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(198, 138, 46, 0.1);
  border: 1px solid rgba(198, 138, 46, 0.25);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  color: #c68a2e;
}
.fp-card .fp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.fp-card .fp-stat {
  background: var(--track);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.fp-card .fp-stat .fp-stat-v {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.fp-card .fp-stat .fp-stat-k {
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Platform Features (feat-card) ─────────────────────────────── */
.feat-section {
  padding: 100px 0;
  background: var(--bg);
}

.feat-display {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--title);
  line-height: 1.15;
  margin: 0 0 16px;
}

.feat-divider {
  width: 52px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  margin: 0 auto 24px;
}

.feat-sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 540px;
  line-height: 1.75;
  margin: 0 auto 48px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  height: 100%;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-lg);
}
.feat-card:hover::after {
  transform: scaleX(1);
}
.feat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
}
.feat-card > p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 4px;
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 11, 160, 0.08), rgba(28, 100, 242, 0.13));
}

.feat-bullet-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feat-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
}

.fbl-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(0, 11, 160, 0.08);
  border: 1px solid rgba(0, 11, 160, 0.16);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ── System Modules (mod-card) ──────────────────────────────────── */
.mod-section {
  padding: 100px 0;
  background: var(--surface);
}

.mod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.mod-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}
.mod-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
}
.mod-card p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.mod-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(0, 11, 160, 0.07);
}

.mod-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mod-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.mod-list li:last-child {
  border-bottom: none;
}

.mod-dot {
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Approval Engine (apv) ──────────────────────────────────────── */
.apv-section {
  padding: 100px 0;
}

.apv {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow-lg);
  overflow: hidden;
}

.apv-hd {
  padding: 14px 18px 12px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.apv-hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.apv-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.apv-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 190, 18, 0.12);
  border: 1px solid rgba(239, 190, 18, 0.3);
  color: #7a5a00;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

.apv-rdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warn);
  animation: pulse 1.5s infinite;
}

.apv-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 3px;
}

.apv-id {
  font-size: 0.7rem;
  color: var(--text);
}

.apv-chain {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
}

.apv-step {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  position: relative;
}

.apv-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
}

.apv-done {
  background: rgba(0, 11, 160, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.apv-current {
  background: rgba(239, 190, 18, 0.14);
  border-color: var(--warn);
  color: #7a5a00;
  animation: apv-ring 2s infinite;
}

.apv-deputy {
  border-style: dashed;
}

.apv-vl {
  position: absolute;
  left: 13px;
  top: 36px;
  width: 2px;
  height: 18px;
  z-index: 0;
}

.apv-vl-done {
  background: var(--primary);
}

.apv-vl-pend {
  background: var(--border);
}

.apv-info {
  flex: 1;
  min-width: 0;
}

.apv-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--title);
}

.apv-dept {
  font-weight: 400;
  color: var(--text);
  font-size: 0.72rem;
  margin-left: 4px;
}

.apv-on-leave {
  font-size: 0.65rem;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  background: rgba(239, 190, 18, 0.12);
  color: #7a5a00;
}

.apv-time {
  font-size: 0.7rem;
  color: var(--text);
  margin-top: 1px;
}

.apv-time-live {
  color: var(--warn);
  animation: pulse 1.4s ease-in-out infinite alternate;
}

.apv-dep-tag {
  font-size: 0.68rem;
  color: var(--text);
  margin-top: 2px;
}
.apv-dep-tag span {
  color: var(--primary);
}

.apv-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(0, 11, 160, 0.1);
  color: var(--primary);
}

.apv-spin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-top-color: var(--warn);
  animation: spin 1s linear infinite;
}

.apv-inf {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px dashed var(--border);
}

.apv-inf-ic {
  font-size: 1rem;
  color: var(--primary);
  line-height: 1;
}

.apv-inf-txt {
  font-size: 0.75rem;
  color: var(--text);
}

.apv-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.apv-ft-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--text);
}

.apv-fdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dd-feat-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dd-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}

.dd-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 11, 160, 0.07);
  color: var(--primary);
}

@keyframes apv-ring {
  0%, 100% {
    border-color: var(--warn);
  }
  50% {
    border-color: #fde68a;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .mega_section {
    padding: 64px 0;
  }
  .fp-wrap {
    margin-top: 40px;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.ps-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg);
  height: 100%;
  transition: var(--transition);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ps-persona {
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 16px;
  gap: 0.75rem;
}

.ps-persona-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(0, 11, 160, 0.08);
  color: var(--primary);
  margin-bottom: 12px;
}

.ps-persona h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.ps-problem-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--error);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.ps-problem {
  margin-bottom: 12px;
}

.ps-problem p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
  line-height: 1.65;
}

.ps-solution-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.ps-solution p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
  line-height: 1.65;
}

/* C1 Security */
.c1-security {
  background: var(--title);
  border-radius: 20px;
  padding: 48px;
  margin: 0 0 0;
  color: #fff;
  display: grid;
  gap: 48px;
  align-items: center;
  margin: 0 0 100px;
}

.c1-sec-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.c1-sec-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.c1-sec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.c1-sec-badge {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.c1-sec-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c1-sec-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.c1-sec-feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(28, 100, 242, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.c1-sec-feat-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.c1-sec-feat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* C1 Footer */
.c1-footer {
  background: var(--bg-dark2);
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 48px;
  text-align: center;
  font-size: 13px;
}

.c1-footer strong {
  color: rgba(255, 255, 255, 0.8);
}

/* C1 Full bg sections */
#c1 .full-bg {
  background: var(--bg-white);
}

#c1 .alt-bg {
  background: var(--bg-light);
}

.why-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.why-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: start;
}

.process-sep {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 62px;
}

.process-sep-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 11, 160, 0.3), rgba(28, 100, 242, 0.15));
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-lg);
}

.ps-step-label {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 11, 160, 0.08);
  padding: 3px 9px;
  border-radius: 6px;
}

.ps-step-num {
  font-family: "Inter Tight", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.process-step:hover .ps-step-num {
  opacity: 0.7;
}

.ps-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
}

.ps-step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text);
}

.accordion .accordion-item {
  background-color: var(--bg);
  border: 0;
}
.accordion .accordion-item .accordion-header {
  border: 0 !important;
}
.accordion .accordion-item .accordion-header .accordion-button {
  background-color: var(--bg);
  color: var(--title);
  font-weight: 600;
  border: 0 !important;
}
.accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  content: "\f4fe";
  font-family: "bootstrap-icons";
  color: var(--title);
  background-image: none;
}
.accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\f2ea";
  font-family: "bootstrap-icons";
  background-image: none;
  color: var(--title);
}
.accordion .accordion-item .accordion-header .accordion-button:hover {
  border-color: var(--primary);
}
.accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* ── Window label — larger size ─────────────────────────────────── */
.window-label {
  font-size: 14px;
  font-weight: 600;
}

/* ── Platform Live · Splide slider overrides ────────────────────── */
.plive-slider {
  margin-top: 32px;
}
.plive-slider .splide__pagination {
  bottom: -28px;
}
.plive-slider .splide__pagination li button {
  background: rgba(255, 255, 255, 0.25);
  width: 6px;
  height: 6px;
  transition: background 0.2s, transform 0.2s;
}
.plive-slider .splide__pagination li button.is-active {
  background: #fff;
  transform: scale(1.4);
}
.plive-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
  pointer-events: none;
}

/* ── Section Soul — scroll-reactive ambient glows ──────────────── */
.mega_section:not(.bg_white) {
  background: radial-gradient(ellipse 68% 52% at calc(88% - var(--sp, 0) * 28%) calc(6% + var(--sp, 0) * 32%), rgba(28, 100, 242, 0.07) 0%, transparent 62%), radial-gradient(ellipse 52% 42% at calc(12% + var(--sp, 0) * 26%) calc(92% - var(--sp, 0) * 30%), rgba(0, 11, 160, 0.05) 0%, transparent 62%), var(--bg);
}

/* ── Section Blending — removes hard edges between sections ──── */
.mega_section:not(.bg_white) + .mega_section.bg_white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}

.mega_section.bg_white + .mega_section:not(.bg_white)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to bottom, var(--surface), transparent);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM ELEVATION
══════════════════════════════════════════════════════════════════ */
/* ── Typography scale ──────────────────────────────────────────── */
.section_title {
  font-size: clamp(2rem, 3.2vw, 2.9rem) !important;
  letter-spacing: -0.05em !important;
  line-height: 1.08 !important;
}

.section-description {
  font-size: 1.02rem;
  opacity: 0.85;
}

.section_label {
  font-size: 0.67rem !important;
  letter-spacing: 0.1em !important;
}

/* ── Section rhythm ────────────────────────────────────────────── */
.mega_section {
  padding: 88px 0;
}

@media (max-width: 991.98px) {
  .mega_section {
    padding: 60px 0;
  }
}
/* ── Feature cards — glass elevation ──────────────────────────── */
.feat-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(0, 11, 160, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 20px rgba(0, 11, 160, 0.07), 0 1px 4px rgba(0, 11, 160, 0.04) !important;
}
.feat-card:hover {
  transform: translateY(-10px) !important;
  background: #fff !important;
  box-shadow: inset 0 1px 0 rgb(255, 255, 255), 0 24px 60px rgba(0, 11, 160, 0.14), 0 4px 16px rgba(0, 11, 160, 0.08) !important;
  border-color: rgba(0, 11, 160, 0.13) !important;
}

.feat-icon {
  background: linear-gradient(135deg, rgba(0, 11, 160, 0.09), rgba(28, 100, 242, 0.14)) !important;
  box-shadow: 0 2px 10px rgba(0, 11, 160, 0.1);
}

/* ── mod-cards — elevated hover ────────────────────────────────── */
.mod-card {
  transition: border-color 0.28s, transform 0.28s var(--ease), box-shadow 0.28s !important;
}
.mod-card:hover {
  border-color: rgba(0, 11, 160, 0.22) !important;
  transform: translateY(-5px) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 36px rgba(0, 11, 160, 0.12), 0 2px 8px rgba(0, 11, 160, 0.07) !important;
}

/* ── Why-choose cards — premium bento feel ─────────────────────── */
.why-grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}

.why-card {
  padding: 28px 24px;
  border-radius: 20px !important;
  background: var(--surface);
  border: 1px solid var(--border) !important;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s !important;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.why-card:hover {
  border-color: rgba(0, 11, 160, 0.18) !important;
  transform: translateY(-5px) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 40px rgba(0, 11, 160, 0.11), 0 2px 8px rgba(0, 11, 160, 0.06) !important;
}
.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  font-size: 1.6rem !important;
  margin-bottom: 14px !important;
}

.why-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 0.85rem !important;
  line-height: 1.65 !important;
  opacity: 0.82;
}

/* ── Process steps — cinematic numbers ─────────────────────────── */
.process-step {
  border-radius: 20px !important;
  padding: 36px 28px !important;
  border: 1px solid var(--border) !important;
  background: var(--surface);
  transition: transform 0.3s var(--ease), box-shadow 0.3s !important;
  position: relative;
  overflow: hidden;
}
.process-step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.process-step:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 48px rgba(0, 11, 160, 0.13), 0 4px 12px rgba(0, 11, 160, 0.07) !important;
}
.process-step:hover::after {
  transform: scaleX(1);
}

.ps-step-num {
  font-size: 3.5rem !important;
  opacity: 0.25 !important;
}

.process-step:hover .ps-step-num {
  opacity: 0.6 !important;
}

.ps-step-title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.process-sep-line {
  background: linear-gradient(90deg, rgba(0, 11, 160, 0.2), rgba(28, 100, 242, 0.1)) !important;
  height: 2px !important;
}

/* ── ps-cards — problem/solution storytelling ──────────────────── */
.ps-card {
  border-radius: 20px !important;
  border: 1px solid var(--border) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 20px rgba(0, 11, 160, 0.06) !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s !important;
}
.ps-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: inset 0 1px 0 rgb(255, 255, 255), 0 16px 48px rgba(0, 11, 160, 0.12), 0 4px 12px rgba(0, 11, 160, 0.07) !important;
}

.ps-problem {
  background: rgba(217, 45, 32, 0.04);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.ps-solution {
  background: rgba(0, 115, 59, 0.04);
  border-radius: 12px;
  padding: 12px;
}

/* ── FAQ — premium glass accordion ────────────────────────────── */
.accordion .accordion-item {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 11, 160, 0.08) !important;
  border-radius: 14px !important;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 4px 28px rgba(0, 11, 160, 0.1);
  border-color: rgba(0, 11, 160, 0.16) !important;
}

.accordion .accordion-button {
  border-radius: 14px !important;
  padding: 18px 22px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--title) !important;
  background: transparent !important;
  transition: background 0.2s, color 0.2s !important;
}
.accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 11, 160, 0.03) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}
.accordion .accordion-button:focus {
  box-shadow: none !important;
}

.accordion .accordion-body {
  padding: 4px 22px 20px !important;
  font-size: 0.875rem !important;
  line-height: 1.78 !important;
  color: var(--text) !important;
  opacity: 0.88;
}

/* ── Scroll reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in, .reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.d1 {
  transition-delay: 0.05s;
}

.d2 {
  transition-delay: 0.13s;
}

.d3 {
  transition-delay: 0.21s;
}

.d4 {
  transition-delay: 0.29s;
}

/* ── Splide — always LTR regardless of page direction ── */
#plive-slider,
.plive-slider {
  direction: ltr !important;
}

/* ── plive cinematic upgrade ───────────────────────────────────── */
.plive-section {
  background: linear-gradient(160deg, #000228 0%, #020d8a 50%, #000ba0 100%) !important;
  padding-bottom: 80px !important;
}

.plive-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.08 !important;
}

.plive-badge {
  transition: background 0.2s, border-color 0.2s, transform 0.2s !important;
}
.plive-badge:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Splide pagination dots — styled for the dark section */
.plive-slider .splide__pagination {
  bottom: -28px !important;
  gap: 6px;
}

.plive-slider .splide__pagination__page {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  transition: background 0.25s, transform 0.25s, width 0.25s !important;
  margin: 0 !important;
}
.plive-slider .splide__pagination__page.is-active {
  background: #fff !important;
  width: 24px !important;
  border-radius: 4px !important;
  transform: none !important;
}

.plive-preview {
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 32px 80px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

/* ── Security section ──────────────────────────────────────────── */
.c1-security {
  background: linear-gradient(135deg, var(--title) 0%, #020c72 100%) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(0, 11, 160, 0.25), 0 4px 16px rgba(0, 11, 160, 0.15);
}

.c1-sec-feat-icon {
  background: rgba(28, 100, 242, 0.22) !important;
  box-shadow: 0 2px 10px rgba(28, 100, 242, 0.25);
}

/* ── Unified CTA button — all "Request a Demo" / "Book a Demo" ─── */
.btn-hero-primary,
.hr-btn-primary,
.demo-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 11, 160, 0.32), 0 1px 4px rgba(0, 11, 160, 0.18);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s;
}
.btn-hero-primary svg.cta-arrow, .btn-hero-primary::after,
.hr-btn-primary svg.cta-arrow,
.hr-btn-primary::after,
.demo-submit svg.cta-arrow,
.demo-submit::after {
  flex-shrink: 0;
}
.btn-hero-primary:hover,
.hr-btn-primary:hover,
.demo-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 11, 160, 0.42), 0 2px 8px rgba(0, 11, 160, 0.22);
  color: #fff !important;
  opacity: 1 !important;
}
.btn-hero-primary:active,
.hr-btn-primary:active,
.demo-submit:active {
  transform: translateY(1px);
}

/* ── Request Demo Modal ────────────────────────────────────────── */
.demo-modal-dialog {
  max-width: 720px;
}

.demo-modal-content {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 11, 160, 0.1);
  border-radius: 28px;
  padding: 56px 52px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.9) inset, 0 32px 80px rgba(0, 11, 160, 0.18), 0 8px 24px rgba(0, 11, 160, 0.1);
  position: relative;
}

.demo-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.demo-close:hover {
  background: rgba(0, 11, 160, 0.06);
  border-color: rgba(0, 11, 160, 0.18);
  color: var(--primary);
}

.demo-modal-head {
  text-align: center;
  margin-bottom: 32px;
}

.demo-modal-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 11, 160, 0.1), rgba(28, 100, 242, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 16px;
  box-shadow: 0 2px 12px rgba(0, 11, 160, 0.12);
}

.demo-modal-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.demo-modal-sub {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  opacity: 0.75;
}

.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.demo-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--title);
}
.demo-label span {
  color: var(--primary);
}

.demo-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.demo-input-wrap svg {
  position: absolute;
  left: 13px;
  color: var(--text);
  opacity: 0.45;
  pointer-events: none;
  flex-shrink: 0;
}

.demo-input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-size: 0.875rem;
  color: var(--title);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.demo-input::-moz-placeholder {
  color: var(--text);
  opacity: 0.4;
}
.demo-input::placeholder {
  color: var(--text);
  opacity: 0.4;
}
.demo-input:focus {
  border-color: rgba(0, 11, 160, 0.35);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(0, 11, 160, 0.08);
}

.demo-submit {
  width: 100%;
  margin-top: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 11, 160, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.demo-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 11, 160, 0.45);
}
.demo-submit:active {
  transform: translateY(0);
}

.demo-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text);
  opacity: 0.55;
  margin: 12px 0 0;
}
.demo-note svg {
  flex-shrink: 0;
}

/* ── Submit button states ── */
.demo-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

/* Spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spin-icon {
  animation: spin 0.8s linear infinite;
}

/* Invalid input highlight */
.demo-input--invalid {
  border-color: #D92D20 !important;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12) !important;
}

/* Success state */
.demo-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 0 16px;
  gap: 8px;
}
.demo-success svg {
  animation: pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.demo-success .demo-success-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00733B;
  margin: 0;
}
.demo-success .demo-success-sub {
  font-size: 0.88rem;
  color: var(--ink-3);
  margin: 0;
}

@keyframes pop-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Error state */
.demo-error {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(217, 45, 32, 0.07);
  border: 1px solid rgba(217, 45, 32, 0.2);
  font-size: 0.85rem;
  color: #b91c1c;
  text-align: center;
}
.demo-error a {
  color: #b91c1c;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .demo-form-row {
    grid-template-columns: 1fr;
  }
  .demo-modal-content {
    padding: 28px 20px;
  }
}
/* ── Window bar upgrade ────────────────────────────────────────── */
.window-bar {
  background: linear-gradient(90deg, rgba(0, 11, 160, 0.05), rgba(255, 255, 255, 0));
  border-bottom: 1px solid var(--border);
}

.window-dot {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR PHONE BUTTON
══════════════════════════════════════════════════════════════════ */
/* ── Navbar icon-only button (phone) — matches lang button height ── */
.mhr-nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--primary);
  text-decoration: none;
  background: var(--surface);
  flex-shrink: 0;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
.mhr-nav-icon-btn svg {
  flex-shrink: 0;
}
.mhr-nav-icon-btn:hover {
  border-color: var(--primary);
  background: rgba(0, 11, 160, 0.05);
  color: var(--primary);
  transform: scale(1.06);
}
@media (max-width: 991px) {
  .mhr-nav-icon-btn {
    display: none;
  }
}

/* Ensure mhr-lang, mhr-nav-icon-btn, and mhr-nav-cta are the same height */
.mhr-lang,
.mhr-nav-icon-btn,
.mhr-nav-cta {
  height: 38px;
  box-sizing: border-box;
}

/* Remove unused classes */
.mhr-nav-phone,
.mhr-cta-group {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════
   CTA — attached to footer top
══════════════════════════════════════════════════════════════════ */
.footer-cta {
  padding: 80px 0;
  background: linear-gradient(160deg, #000228 0%, #020d8a 50%, #000ba0 100%);
  position: relative;
  overflow: hidden;
  /* Gridline overlay */
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.footer-cta {
  /* Radial glow on top of grid */
}
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}
.footer-cta .cta-demo-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.footer-cta .cta-demo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
}
.footer-cta .cta-demo-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: pulse 2s infinite;
}
.footer-cta .cta-demo-h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  font-family: "Inter Tight", Inter, sans-serif;
}
.footer-cta .cta-demo-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.footer-cta .cta-demo-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-cta .cta-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.footer-cta .cta-demo-btn svg {
  transition: transform 0.2s;
}
.footer-cta .cta-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
.footer-cta .cta-demo-btn:hover svg {
  transform: translateX(3px);
}
.footer-cta .cta-contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer-cta .cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-cta .cta-contact-link svg {
  flex-shrink: 0;
}
.footer-cta .cta-contact-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-cta .cta-contact-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════════════ */
#contact {
  padding: 96px 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info-side .contact-info-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-info-side .contact-info-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.contact-info-side h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-family: "Inter Tight", Inter, sans-serif;
  line-height: 1.25;
}
.contact-info-side > p {
  font-size: 0.95rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-item .cd-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-detail-item .cd-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-detail-item .cd-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-detail-item .cd-value a {
  color: var(--ink);
  text-decoration: none;
}
.contact-detail-item .cd-value a:hover {
  color: var(--primary);
}
.contact-detail-item .cd-sub {
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-top: 2px;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  font-family: "Inter Tight", Inter, sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 575px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.cf-label span {
  color: #e53e3e;
}

.cf-input-wrap {
  position: relative;
}
.cf-input-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
  pointer-events: none;
}
.cf-input-wrap.cf-ta-wrap svg {
  top: 13px;
  transform: none;
}

.cf-input, .cf-textarea {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.cf-input::-moz-placeholder, .cf-textarea::-moz-placeholder {
  color: var(--ink-3);
}
.cf-input::placeholder, .cf-textarea::placeholder {
  color: var(--ink-3);
}
.cf-input:focus, .cf-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.cf-textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 12px;
}

.cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}
.cf-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.mhr-footer {
  background: linear-gradient(160deg, #000228 0%, #020d8a 50%, #000ba0 100%);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  /* Gridline overlay */
}
.mhr-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.mhr-footer {
  /* Ensure content sits above grid */
}
.mhr-footer .footer-cta,
.mhr-footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  padding-top: 64px;
  padding-bottom: 56px;
  border-bottom: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-grid .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .footer-brand {
    grid-column: 1/-1;
  }
  .footer-grid .footer-contact-col {
    grid-column: 1/-1;
  }
}

.footer-brand .footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  display: block;
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 270px;
}
.footer-brand .footer-social {
  display: flex;
  gap: 8px;
}
.footer-brand .footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.footer-brand .footer-social-link:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-col h6 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-col a:hover {
  color: #fff;
}

.footer-contact-col h6 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-contact-col .fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-col .fc-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-col .fc-item a, .footer-contact-col .fc-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.18s;
}
.footer-contact-col .fc-item a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
}
.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom .footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-bottom .footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ══════════════════════════════════════════════════════════════════
   MODAL CONTACT INFO
══════════════════════════════════════════════════════════════════ */
.demo-contact-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: var(--ink-3);
  font-size: 0.78rem;
  font-weight: 500;
}
.demo-contact-divider::before, .demo-contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.demo-contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 4px;
}
.demo-contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s;
}
.demo-contact-strip a svg {
  color: var(--primary);
  flex-shrink: 0;
}
.demo-contact-strip a:hover {
  color: var(--primary);
}
.demo-contact-strip .dcs-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   PREFERS-COLOR-SCHEME  (CSS handles dark mode via [data-theme])
   The JS sets data-theme on load from localStorage or OS preference.
══════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   RTL OVERRIDES
══════════════════════════════════════════════════════════════════ */
[dir=rtl] .mhr-logo {
  margin-right: 0;
  margin-left: 36px;
}
[dir=rtl] .mhr-actions {
  margin-left: 0;
  margin-right: auto;
}
[dir=rtl] .mhr-drop-item {
  flex-direction: row;
}
[dir=rtl] .mhr-mobile-menu {
  text-align: right;
}
[dir=rtl] .footer-grid, [dir=rtl] .contact-grid {
  direction: rtl;
}
[dir=rtl] .footer-bottom {
  flex-direction: row-reverse;
}
[dir=rtl] .footer-brand p {
  max-width: none;
}
[dir=rtl] .cf-input-wrap svg {
  left: auto;
  right: 12px;
}
[dir=rtl] .cf-input, [dir=rtl] .cf-textarea {
  padding: 10px 38px 10px 12px;
}
[dir=rtl] .cf-input-wrap.cf-ta-wrap svg {
  right: 12px;
  left: auto;
}
[dir=rtl] .mhr-nav-phone {
  direction: ltr;
  letter-spacing: 0;
}
[dir=rtl] .cta-demo-section {
  direction: rtl;
}
[dir=rtl] .contact-detail-item {
  direction: rtl;
}
[dir=rtl] .demo-contact-strip {
  direction: rtl;
}
[dir=rtl] .footer-bottom-links {
  flex-direction: row-reverse;
}

/* ══════════════════════════════════════════════════════════════════
   FLOATING BUTTONS — WhatsApp (right) + Scroll To Top (left)
══════════════════════════════════════════════════════════════════ */
/* Base — no position here (set per-button below) */
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), opacity 0.22s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.1);
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
}
.float-btn:active {
  transform: scale(0.96);
}

/* WhatsApp — fixed right (after base so cascade wins) */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
@media (max-width: 575px) {
  .float-whatsapp {
    bottom: 18px;
    right: 16px;
  }
}

/* Scroll to top — fixed left (after base so cascade wins) */
.float-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
}
@media (max-width: 575px) {
  .float-top {
    bottom: 18px;
    left: 16px;
  }
}

/* Tooltip — WhatsApp is on the right so tooltip goes left */
.float-btn-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s, transform 0.18s;
}
.float-btn-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
}

.float-btn:hover .float-btn-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* WhatsApp button */
.float-whatsapp {
  background: #25D366;
  color: #fff;
  animation: wa-pulse 2.8s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}
.float-whatsapp:hover {
  background: #20bc5a;
  animation: none;
  color: #fff;
}

/* Scroll to top button */
.float-top {
  background: var(--primary);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s, transform 0.28s var(--ease), box-shadow 0.22s;
}
.float-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.float-top:hover {
  background: var(--primary-dk);
}

/* ══════════════════════════════════════════════════════════════════
   DESIGN ENHANCEMENTS — visual polish pass
══════════════════════════════════════════════════════════════════ */
/* ── Headline gradient on key section titles ── */
.section_title {
  background: linear-gradient(135deg, var(--title) 40%, color-mix(in srgb, var(--primary) 60%, var(--title)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── section_label col-12 — always first on mobile ── */
.features_section .col-12:has(.section_label) {
  order: -2;
  padding-bottom: 0;
  margin-bottom: -8px;
}

/* ── Section label — stronger pill with left accent bar ── */
.mega_section .section_label {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 11, 160, 0.08);
}
.mega_section .section_label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  border-radius: 2px 0 0 2px;
  display: none;
}

/* ── Feature items — left accent on hover ── */
.feature-item {
  border-left: 2px solid transparent !important;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s !important;
}
.feature-item:hover {
  border-left-color: var(--primary) !important;
}

[dir=rtl] .feature-item {
  border-left: none !important;
  border-right: 2px solid transparent !important;
}
[dir=rtl] .feature-item:hover {
  border-right-color: var(--primary) !important;
}

/* ── Feature icon — ring on hover ── */
.feature-item:hover .feature-icon {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent) !important;
}

/* ── Feature title — bolder weight ── */
.feature-title {
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

/* ── Section description — slightly larger, softer ── */
.section-description {
  font-size: 1rem !important;
  opacity: 0.92;
}

/* ── Why-choose cards — gradient number watermark ── */
.why-card {
  background: linear-gradient(145deg, var(--surface) 0%, color-mix(in srgb, var(--primary) 3%, var(--surface))) !important;
}

.why-title {
  font-size: 1.05rem !important;
  background: linear-gradient(135deg, var(--title) 30%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── mod-cards — gradient top border on hover ── */
.mod-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface) 0%, color-mix(in srgb, var(--primary) 2%, var(--surface))) !important;
}
.mod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  border-radius: 2px 2px 0 0;
}
.mod-card:hover::before {
  transform: scaleX(1);
}

.mod-card h5 {
  background: linear-gradient(135deg, var(--title) 30%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PS Cards — richer storytelling look ── */
.ps-problem-label {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b91c1c !important;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ps-solution-label {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--success) !important;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ps-problem p, .ps-solution p {
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  margin: 0;
}

.ps-persona {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ps-persona-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 11, 160, 0.1), rgba(28, 100, 242, 0.06));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ps-title h5 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0 0 2px;
  background: linear-gradient(135deg, var(--title), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero headline — bigger on large screens ── */
.hr-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem) !important;
  letter-spacing: -0.05em !important;
}

/* ── Hero AI badge — subtle shimmer ── */
.hr-ai-badge {
  border: 1px solid rgba(0, 11, 160, 0.16) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 2px 16px rgba(0, 11, 160, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.6) inset !important;
}

/* ── Section panel mockups — richer shadow ── */
.fp-card {
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.9) inset, 0 24px 64px rgba(0, 11, 160, 0.14), 0 4px 16px rgba(0, 11, 160, 0.08) !important;
}

/* ── FAQ — open item accent left bar ── */
.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-left: 3px solid var(--primary) !important;
}

[dir=rtl] .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-left: none !important;
  border-right: 3px solid var(--primary) !important;
}

/* ── Process steps — numbered watermark ── */
.ps-step-num {
  font-family: "Inter Tight", Inter, sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22 !important;
}

.process-step:hover .ps-step-num {
  opacity: 0.55 !important;
}

/* ── Footer grid links — underline animation ── */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: width 0.22s var(--ease);
}
.footer-col a:hover::after {
  width: 100%;
}

/* ── Footer brand logo — hover brighten ── */
.footer-logo {
  transition: opacity 0.22s, filter 0.22s;
}
.footer-logo:hover {
  opacity: 1 !important;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3)) !important;
}

/* ── Social links — scale on hover ── */
.footer-social-link {
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s !important;
}
.footer-social-link:hover {
  transform: translateY(-2px) scale(1.1) !important;
}

/* ── Dark mode improvements ── */
[data-theme=dark] .section_title {
  background: linear-gradient(135deg, #e0e8ff 30%, #7fa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme=dark] .why-title {
  background: linear-gradient(135deg, #e0e8ff 30%, #7fa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme=dark] .mod-card h5 {
  background: linear-gradient(135deg, #e0e8ff 30%, #7fa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme=dark] .ps-title h5 {
  background: linear-gradient(135deg, #e0e8ff 30%, #7fa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme=dark] .hr-headline {
  background: linear-gradient(135deg, #f0f4ff 40%, #7fa8ff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
[data-theme=dark] .mhr-nav {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
[data-theme=dark] .mhr-nav.scrolled {
  background: rgb(20, 21, 22) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}
[data-theme=dark] .why-card {
  background: linear-gradient(145deg, var(--surface) 0%, color-mix(in srgb, #1c64f2 5%, var(--surface))) !important;
}
[data-theme=dark] .mod-card {
  background: linear-gradient(160deg, var(--surface) 0%, color-mix(in srgb, #1c64f2 4%, var(--surface))) !important;
}
[data-theme=dark] .accordion .accordion-item {
  background: rgba(37, 39, 40, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}
[data-theme=dark] .accordion .accordion-button {
  color: var(--title) !important;
}
[data-theme=dark] .fp-card {
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.04) inset, 0 24px 64px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}
[data-theme=dark] .mhr-mobile-menu {
  background: var(--surface) !important;
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE FIXES — Mobile & Tablet
══════════════════════════════════════════════════════════════════ */
/* ── Navbar: always frosted on mobile (transparent is unreadable) ── */
@media (max-width: 991.98px) {
  .mhr-nav {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: var(--border) !important;
    box-shadow: 0 4px 20px rgba(0, 11, 160, 0.1) !important;
  }
  [data-theme=dark] .mhr-nav {
    background: rgba(24, 25, 26, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .mhr-nav-cta:not(.mhr-mob-cta) {
    display: none !important;
  }
  .mhr-nav-icon-btn {
    display: none !important;
  }
}
/* ── Feature sections: fix mockup/text stacking on mobile ── */
@media (max-width: 991.98px) {
  .fp-col {
    position: static !important;
    top: auto !important;
  }
  .fp-wrap {
    margin-top: 32px;
    padding: 0;
  }
  .fp-card {
    max-width: 100% !important;
    width: 100% !important;
  }
  /* Show image panel BEFORE the text on mobile (natural order) */
  .features_section .row.flex-lg-row-reverse .fp-col {
    order: -1;
  }
  .feature-list {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .feature-item {
    flex-direction: row !important;
    gap: 12px !important;
  }
  .hw-card {
    max-width: 100% !important;
  }
}
/* ── Section title / label sizing on mobile ── */
@media (max-width: 767.98px) {
  .section_title {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    letter-spacing: -0.03em !important;
  }
  .section-description {
    font-size: 0.95rem !important;
  }
  .cta-row {
    display: flex;
    justify-content: center;
  }
  .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }
}
/* ── Why-choose grid: 1 col on mobile, 2 col on tablet ── */
@media (max-width: 991.98px) {
  .why-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}
@media (max-width: 575.98px) {
  .why-grid-3 {
    grid-template-columns: 1fr !important;
  }
}
/* ── Process grid: 1 col on mobile ── */
@media (max-width: 767.98px) {
  .process-grid {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .process-sep {
    display: none !important;
  }
}
/* ── FAQ: full width columns on mobile ── */
@media (max-width: 767.98px) {
  #faq .row.g-4 > [class*=col-lg] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}
/* ── Platform Overview — Slick slider ── */
#plive-slick,
.plive-slider {
  direction: ltr !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 16px;
  display: block !important;
}
#plive-slick .slick-list,
.plive-slider .slick-list {
  overflow: hidden !important;
  width: 100% !important;
  display: block !important;
}
#plive-slick .slick-track,
.plive-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
#plive-slick .slick-slide,
.plive-slider .slick-slide {
  float: none !important;
  display: block !important;
  width: 100% !important;
}
#plive-slick .slick-slide > div,
.plive-slider .slick-slide > div {
  width: 100%;
}

.plive-screen-img {
  width: 100% !important;
  display: block !important;
  height: auto !important;
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.plive-panel-inner {
  padding: 0 8px;
}

@media (max-width: 767.98px) {
  .plive-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem) !important;
  }
  .plive-badges {
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
  }
  .plive-badge {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }
  .plive-screen-img {
    height: auto !important;
    max-height: 300px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    -o-object-position: top !important;
       object-position: top !important;
  }
  #plive-slick,
  .plive-slider {
    border-radius: 12px;
  }
  #plive-slick .slick-list,
  .plive-slider .slick-list {
    overflow: hidden !important;
  }
}
/* ── Hero panels: hide on small screens ── */
@media (max-width: 991.98px) {
  .hr-hero-right {
    display: none !important;
  }
  .hr-hero-foot {
    max-width: 100% !important;
    padding: 0 8px;
  }
  .hr-headline {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  .hr-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ── Footer CTA responsive ── */
@media (max-width: 767.98px) {
  .footer-cta {
    padding: 56px 0 !important;
  }
  .cta-demo-h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  .cta-contact-row {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .cta-contact-sep {
    display: none !important;
  }
}
/* ── Footer grid: 2 col on mobile ── */
@media (max-width: 767.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer-brand {
    grid-column: 1/-1 !important;
  }
  .footer-contact-col {
    grid-column: 1/-1 !important;
  }
}
@media (max-width: 400px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ── Floating buttons: smaller on tiny screens ── */
@media (max-width: 400px) {
  .float-btn {
    width: 44px !important;
    height: 44px !important;
  }
  .float-whatsapp {
    bottom: 16px !important;
    right: 12px !important;
  }
  .float-top {
    bottom: 16px !important;
    left: 12px !important;
  }
}
/* ── Demo modal: full screen on mobile ── */
@media (max-width: 575.98px) {
  .demo-modal-dialog {
    margin: 0 !important;
    max-width: 100% !important;
  }
  .demo-modal-content {
    border-radius: 20px 20px 0 0 !important;
    padding: 28px 20px 32px !important;
    margin-top: auto;
  }
  .modal-dialog-centered {
    align-items: flex-end !important;
    min-height: 100%;
  }
  .demo-form-row {
    grid-template-columns: 1fr !important;
  }
}
/* ── RTL mobile fixes ── */
@media (max-width: 991.98px) {
  [dir=rtl] .mhr-mobile-menu {
    text-align: right;
  }
  [dir=rtl] .section_label {
    direction: rtl;
  }
}

/* ══════════════════════════════════════════════════════════════════
   DARK MODE TOGGLE BUTTON
══════════════════════════════════════════════════════════════════ */
/* ── Dark mode toggle button ── */
.mhr-theme-toggle {
  gap: 0;
  padding: 7px 10px;
}
.mhr-theme-toggle .mhr-sun-icon {
  display: block;
}
.mhr-theme-toggle .mhr-moon-icon {
  display: none;
}

[data-theme=dark] .mhr-theme-toggle .mhr-sun-icon {
  display: none;
}
[data-theme=dark] .mhr-theme-toggle .mhr-moon-icon {
  display: block;
}

/* Mobile theme toggle icon show/hide */
.mhr-mob-theme .mhr-sun-icon {
  display: block;
}
.mhr-mob-theme .mhr-moon-icon {
  display: none;
}

[data-theme=dark] .mhr-mob-theme .mhr-sun-icon {
  display: none;
}
[data-theme=dark] .mhr-mob-theme .mhr-moon-icon {
  display: block;
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════════════════════════ */
/* Backdrop */
.mhr-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.mhr-drawer-backdrop.open {
  opacity: 1;
}

/* Drawer panel */
.mhr-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(340px, 88vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.mhr-drawer.open {
  transform: translateX(0);
}

/* Header */
.mhr-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mhr-drawer-logo {
  height: 38px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.mhr-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.mhr-drawer-close:hover {
  background: rgba(0, 11, 160, 0.07);
  color: var(--primary);
  border-color: rgba(0, 11, 160, 0.2);
}

/* Body */
.mhr-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 0;
}

/* Nav links */
.mhr-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mhr-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
}
.mhr-drawer-link:hover {
  background: rgba(0, 11, 160, 0.06);
  color: var(--primary);
}
.mhr-drawer-link--plain {
  color: var(--text);
  font-weight: 500;
  padding-left: 14px;
}

.mhr-drawer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 11, 160, 0.07);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mhr-drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* Footer */
.mhr-drawer-foot {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.mhr-drawer-theme {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  transition: background 0.16s, color 0.16s;
}
.mhr-drawer-theme:hover {
  background: rgba(0, 11, 160, 0.06);
  color: var(--primary);
}
.mhr-drawer-theme .mhr-sun-icon {
  display: block;
}
.mhr-drawer-theme .mhr-moon-icon {
  display: none;
}

[data-theme=dark] .mhr-drawer-theme {
  background: var(--bg);
  border-color: var(--border);
}
[data-theme=dark] .mhr-drawer-theme .mhr-sun-icon {
  display: none;
}
[data-theme=dark] .mhr-drawer-theme .mhr-moon-icon {
  display: block;
}

.mhr-drawer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: background 0.16s;
}
.mhr-drawer-phone:hover {
  background: rgba(0, 11, 160, 0.06);
}

/* Body scroll lock when drawer open */
body.mhr-drawer-open {
  overflow: hidden;
}

/* ── Dark mode drawer overrides ── */
[data-theme=dark] .mhr-drawer {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme=dark] .mhr-drawer-close {
  background: var(--bg);
  border-color: var(--border);
}
[data-theme=dark] .mhr-drawer-icon {
  background: rgba(28, 100, 242, 0.12);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════════════════════════ */
/* ── Feature sections: image-first order on mobile ── */
@media (max-width: 991.98px) {
  .features_section .fp-col {
    order: -1 !important;
    position: static !important;
    top: auto !important;
  }
  .features_section .col-lg-6:not(.fp-col) {
    order: 1 !important;
  }
  .fp-wrap {
    margin-top: 0;
    margin-bottom: 8px;
    padding: 0;
  }
}
/* ── Security section: mobile padding ── */
@media (max-width: 991.98px) {
  .c1-security {
    padding: 32px 24px !important;
    margin-bottom: 40px !important;
  }
}
/* ── Process grid: explicit flex on mobile ── */
@media (max-width: 767.98px) {
  .process-grid {
    display: flex !important;
  }
}
/* ── Container max-width 85vw at xxl (≥1400px) ── */
@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 85vw !important;
  }
}
/* ── Employee Profile slide — extra height ── */
.plive-screen-img--emp {
  max-height: 600px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: top !important;
     object-position: top !important;
}

/* ══════════════════════════════════════════════════════════════════
   DARK MODE — COMPREHENSIVE OVERRIDES
   All token-driven styles auto-adapt. These fix hardcoded values.
══════════════════════════════════════════════════════════════════ */
[data-theme=dark] {
  /* ── Body & base ── */
}
[data-theme=dark] body {
  background: var(--bg);
  color: var(--text);
}
[data-theme=dark] {
  /* ── Sections background ── */
}
[data-theme=dark] .mega_section:not(.bg_white) {
  background: radial-gradient(ellipse 68% 52% at 88% 6%, rgba(77, 142, 255, 0.06) 0%, transparent 62%), radial-gradient(ellipse 52% 42% at 12% 92%, rgba(28, 100, 242, 0.04) 0%, transparent 62%), var(--bg) !important;
}
[data-theme=dark] .mega_section.bg_white {
  background: radial-gradient(ellipse 68% 52% at 12% 6%, rgba(77, 142, 255, 0.04) 0%, transparent 62%), radial-gradient(ellipse 52% 42% at 88% 92%, rgba(28, 100, 242, 0.03) 0%, transparent 62%), var(--surface) !important;
}
[data-theme=dark] .mega_section.bg_white .feature-list .feature-item {
  background: var(--bg) !important;
}
[data-theme=dark] .mega_section.bg_white .window-bar,
[data-theme=dark] .mega_section.bg_white .screen-body {
  background: var(--bg) !important;
}
[data-theme=dark] {
  /* ── Hero section ── */
}
[data-theme=dark] .hr-hero {
  background: var(--bg) !important;
}
[data-theme=dark] .hr-hero-bg {
  opacity: 0.45;
}
[data-theme=dark] .hr-panel {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .hr-panel-lbl {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}
[data-theme=dark] {
  /* ── Feature items ── */
}
[data-theme=dark] .feature-item {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .feature-item:hover {
  border-color: rgba(77, 142, 255, 0.3) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}
[data-theme=dark] .feature-icon {
  background: rgba(77, 142, 255, 0.12) !important;
  color: var(--primary) !important;
}
[data-theme=dark] .feature-title {
  color: var(--title) !important;
}
[data-theme=dark] .feature-description {
  color: var(--text) !important;
}
[data-theme=dark] {
  /* ── Section labels & titles ── */
}
[data-theme=dark] .section_label {
  background: rgba(77, 142, 255, 0.1) !important;
  border-color: rgba(77, 142, 255, 0.2) !important;
  color: var(--primary) !important;
}
[data-theme=dark] .section_label-dot {
  background: var(--primary) !important;
}
[data-theme=dark] .section_title {
  color: var(--title) !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}
[data-theme=dark] .section-description {
  color: var(--text) !important;
}
[data-theme=dark] {
  /* ── Navbar dropdown ── */
}
[data-theme=dark] .mhr-dropdown {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5) !important;
}
[data-theme=dark] .mhr-drop-title {
  color: var(--title) !important;
}
[data-theme=dark] .mhr-drop-sub {
  color: var(--text) !important;
}
[data-theme=dark] .mhr-drop-icon {
  background: rgba(77, 142, 255, 0.12) !important;
}
[data-theme=dark] .mhr-drop-item:hover {
  background: rgba(77, 142, 255, 0.08) !important;
}
[data-theme=dark] .mhr-lang {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}
[data-theme=dark] .mhr-burger span {
  background: var(--title) !important;
}
[data-theme=dark] {
  /* ── fp-card (profile mockup) ── */
}
[data-theme=dark] .fp-card {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .window-bar {
  background: var(--surface-2) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .window-dot {
  background: var(--border) !important;
}
[data-theme=dark] .screen-body {
  background: var(--surface) !important;
}
[data-theme=dark] .fp-row {
  border-color: var(--border) !important;
}
[data-theme=dark] .fp-tabs .fp-tab {
  color: var(--text) !important;
}
[data-theme=dark] .fp-tabs .fp-tab.active {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}
[data-theme=dark] {
  /* ── plive badges ── */
}
[data-theme=dark] .plive-badge {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
[data-theme=dark] {
  /* ── Why cards ── */
}
[data-theme=dark] .why-card {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .why-title {
  color: var(--title) !important;
  -webkit-text-fill-color: unset !important;
  background: none !important;
}
[data-theme=dark] .why-desc {
  color: var(--text) !important;
}
[data-theme=dark] {
  /* ── Process steps ── */
}
[data-theme=dark] .process-step {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .ps-step-num {
  color: var(--primary) !important;
}
[data-theme=dark] .ps-step-title {
  color: var(--title) !important;
}
[data-theme=dark] .ps-step-desc {
  color: var(--text) !important;
}
[data-theme=dark] .ps-step-label {
  color: var(--primary) !important;
  opacity: 0.7;
}
[data-theme=dark] .process-sep-line {
  background: linear-gradient(90deg, rgba(77, 142, 255, 0.2), rgba(28, 100, 242, 0.1)) !important;
}
[data-theme=dark] {
  /* ── Module cards ── */
}
[data-theme=dark] .mod-card {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .mod-card h5 {
  color: var(--title) !important;
  -webkit-text-fill-color: unset !important;
  background: none !important;
}
[data-theme=dark] .mod-card p {
  color: var(--text) !important;
}
[data-theme=dark] {
  /* ── FAQ accordion ── */
}
[data-theme=dark] .accordion-item {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .accordion-button {
  background: var(--surface) !important;
  color: var(--title) !important;
}
[data-theme=dark] .accordion-button:not(.collapsed) {
  background: var(--surface-2) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}
[data-theme=dark] .accordion-button::after {
  filter: invert(1) brightness(2);
}
[data-theme=dark] .accordion-collapse .accordion-body {
  background: var(--surface-2) !important;
  color: var(--text) !important;
}
[data-theme=dark] {
  /* ── Problems section ── */
}
[data-theme=dark] .prob-card,
[data-theme=dark] .sol-card {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] {
  /* ── CTA buttons ── */
}
[data-theme=dark] .btn-hero-primary {
  background: var(--primary) !important;
  color: #fff !important;
}
[data-theme=dark] .hr-btn-primary {
  background: var(--primary) !important;
}
[data-theme=dark] {
  /* ── Modal ── */
}
[data-theme=dark] .demo-modal-content {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme=dark] .demo-form-input,
[data-theme=dark] .demo-form-select {
  background: var(--bg) !important;
  border-color: var(--border) !important;
  color: var(--title) !important;
}
[data-theme=dark] .demo-form-input::-moz-placeholder {
  color: var(--ink-3) !important;
}
[data-theme=dark] .demo-form-input::placeholder {
  color: var(--ink-3) !important;
}
[data-theme=dark] {
  /* ── Section blend pseudo-elements ── */
}
[data-theme=dark] .mega_section:not(.bg_white) + .mega_section.bg_white::before,
[data-theme=dark] .mega_section.bg_white + .mega_section:not(.bg_white)::before {
  display: none;
}

.slick-slide {
  height: 680px !important;
}/*# sourceMappingURL=main2.css.map */