<style>
/* ── Scoped reset ── */
.erbb *, .erbb *::before, .erbb *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.erbb a { text-decoration: none; }
.erbb img { display: block; max-width: 100%; }
.erbb button { cursor: pointer; background: none; border: none; }

/* ── Container: respect Elementor 1180px boxed width ── */
.erbb .inner-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.erbb .hero {
  position: relative;
  background: #0B1F3A;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Background ── */
.erbb .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.erbb .hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,194,168,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
}
.erbb .hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.erbb .hero-bg-glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,168,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: erbGlowPulse 6s ease-in-out infinite alternate;
}
.erbb .hero-bg-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,100,200,0.12) 0%, transparent 70%);
  bottom: 80px; left: -80px;
  animation: erbGlowPulse 8s ease-in-out infinite alternate-reverse;
}
.erbb .hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,194,168,0.15);
}
.erbb .hero-bg-orb--1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  animation: erbOrbSpin 20s linear infinite;
}
.erbb .hero-bg-orb--2 {
  width: 300px; height: 300px;
  bottom: 100px; left: 50%;
  animation: erbOrbSpin 15s linear infinite reverse;
  border-color: rgba(0,194,168,0.08);
}
@keyframes erbGlowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.15); }
}
@keyframes erbOrbSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Floating tags — left side only, away from stats card ── */
.erbb .hero-float-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.erbb .hero-tag {
  position: absolute;
  background: rgba(0,194,168,0.08);
  border: 1px solid rgba(0,194,168,0.2);
  color: rgba(0,194,168,0.7);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  animation: erbFloatTag 6s ease-in-out infinite;
  white-space: nowrap;
}
/* All tags anchored to LEFT content area (max 55% of width) */
.erbb .hero-tag--1 { top: 14%;  left: 38%;  animation-delay: 0s;   }
.erbb .hero-tag--2 { top: 30%;  left: 52%;  animation-delay: 1s;   }
.erbb .hero-tag--3 { top: 58%;  left: 40%;  animation-delay: 2s;   }
.erbb .hero-tag--4 { top: 72%;  left: 30%;  animation-delay: 0.5s; }
.erbb .hero-tag--5 { top: 44%;  left: 56%;  animation-delay: 1.5s; }
@keyframes erbFloatTag {
  0%,100% { transform: translateY(0);   opacity: 0.6; }
  50%      { transform: translateY(-8px); opacity: 1;  }
}
@media (max-width: 1024px) {
  .erbb .hero-float-tags { display: none; }
}

/* ── Inner grid ── */
.erbb .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  flex: 1;
}

/* ── Left content ── */
.erbb .hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Trust badge */
.erbb .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,168,0.1);
  border: 1px solid rgba(0,194,168,0.25);
  color: #00C2A8;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 24px;
  letter-spacing: 0.03em;
  width: fit-content;
  animation: erbFadeUp 0.6s ease both;
}
.erbb .hero-badge-dot {
  width: 7px; height: 7px;
  background: #00C2A8;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,194,168,0.8);
  animation: erbDotPulse 2s ease-in-out infinite;
}
@keyframes erbDotPulse {
  0%,100% { box-shadow: 0 0 4px rgba(0,194,168,0.8); }
  50%      { box-shadow: 0 0 12px rgba(0,194,168,1), 0 0 24px rgba(0,194,168,0.4); }
}

/* ── Slider ── */
.erbb .hero-slider {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}
.erbb .hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.erbb .hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.erbb .hero-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.erbb .hero-title-accent {
  color: #00C2A8;
  position: relative;
  display: inline-block;
}
.erbb .hero-title-accent::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00C2A8, transparent);
  border-radius: 2px;
}
.erbb .hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 16px;
}
.erbb .hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.erbb .hero-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.erbb .hero-pill:hover {
  background: rgba(0,194,168,0.15);
  border-color: rgba(0,194,168,0.4);
  color: #00C2A8;
}

/* ── CTA Buttons ── */
.erbb .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.erbb .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.erbb .hero-btn--primary {
  background: #00C2A8;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,194,168,0.35);
}
.erbb .hero-btn--primary:hover {
  background: #00a891;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,194,168,0.45);
}
.erbb .hero-btn--secondary {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.erbb .hero-btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #fff;
}

/* ── Slider dots — SMALLER ── */
.erbb .hero-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.erbb .hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  flex-shrink: 0;
}
.erbb .hero-dot.active {
  background: #00C2A8;
  width: 20px;
  border-radius: 3px;
}

/* ── RIGHT: Stats card ── */
.erbb .hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Stats card — ALWAYS 2×2 grid with real divider elements */
.erbb .hero-stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  transition: transform 0.3s, box-shadow 0.3s;
}
.erbb .hero-stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,194,168,0.15);
}
.erbb .hero-stats-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,194,168,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Each stat cell */
.erbb .hero-stat {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 4px;
}

.erbb .hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
}
.erbb .hero-stat-plus {
  font-size: 20px;
  color: #00C2A8;
  font-weight: 700;
  margin-top: 3px;
}
.erbb .hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 2px;
}

/* Partner card */
.erbb .hero-partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 72px;
}
.erbb .hero-partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.erbb .hero-partner-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.erbb .hero-partner-card:hover .hero-partner-img { opacity: 1; }

/* ── Industry strip ── */
.erbb .hero-strip {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0;
  overflow: hidden;
}
.erbb .hero-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.erbb .hero-strip-label {
  font-size: 11px;
  font-weight: 700;
  color: #00C2A8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.erbb .hero-strip-track {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.erbb .hero-strip-items {
  display: flex;
  animation: erbStripScroll 30s linear infinite;
  width: max-content;
}
.erbb .hero-strip-items span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  transition: color 0.2s;
}
.erbb .hero-strip-items span:hover { color: #00C2A8; }
@keyframes erbStripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.erbb .hero-strip-track:hover .hero-strip-items { animation-play-state: paused; }

/* ── Entry animations ── */
@keyframes erbFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.erbb .hero-badge  { animation: erbFadeUp 0.6s ease 0s    both; }
.erbb .hero-slider { animation: erbFadeUp 0.6s ease 0.15s both; }
.erbb .hero-ctas   { animation: erbFadeUp 0.6s ease 0.3s  both; }
.erbb .hero-dots   { animation: erbFadeUp 0.6s ease 0.4s  both; }
.erbb .hero-right  { animation: erbFadeUp 0.6s ease 0.3s  both; }

@media (max-width: 1024px) {
  .erbb .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 60px;
    gap: 36px;
  }
  .erbb .hero-right {
    flex-direction: row;
    gap: 16px;
  }
  .erbb .hero-stats-card {
  flex: 1;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
  .erbb .hero-partner-card { flex-shrink: 0; width: 160px; }
  .erbb .hero-float-tags { display: none; }
}

@media (max-width: 640px) {
  .erbb .inner-wrap { padding: 0 16px; }

  .erbb .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 20px;
    gap: 28px;
  }

  /* Slider full width, no clipping */
  .erbb .hero-slider { min-height: 240px; width: 100%; }
  .erbb .hero-title  { font-size: 30px; }
  .erbb .hero-subtitle { font-size: 14px; }

  /* CTAs stack */
  .erbb .hero-ctas { flex-direction: column; }
  .erbb .hero-btn  { width: 100%; justify-content: center; padding: 14px; }

  /* Right column stacks vertically */
  .erbb .hero-right {
    flex-direction: column;
    gap: 12px;
  }

  /* Stats: 2×2 grid — the fix for the broken alignment */
  .erbb .hero-stats-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    width: 100%;
  }
  .erbb .hero-stat { padding: 20px 16px; }
  .erbb .hero-stat-num  { font-size: 30px; }
  .erbb .hero-stat-plus { font-size: 18px; }
  .erbb .hero-stat-label { font-size: 11px; }

  /* Partner card full width */
  .erbb .hero-partner-card { width: 100%; }

  /* Hide strip label on mobile */
  .erbb .hero-strip-label { display: none; }
}