
/* ── Base ── */
.fo-hero {
  position: relative;
  background: #0B1F3A;
  background: var(--primary, #0B1F3A);
  padding: 88px 0 0;
  overflow: hidden;
}
.fo-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fo-hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0B1F3A 0%,
    #0d2544 40%,
    #0a2238 70%,
    #071828 100%
  );
}
.fo-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,194,168,0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
}
.fo-hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.fo-hero-bg-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,168,0.16) 0%, transparent 70%);
  top: -150px; right: -80px;
  animation: foGlowPulse 7s ease-in-out infinite alternate;
}
.fo-hero-bg-glow--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,100,220,0.1) 0%, transparent 70%);
  bottom: 40px; left: -60px;
  animation: foGlowPulse 9s ease-in-out infinite alternate-reverse;
}
@keyframes foGlowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.2); }
}

/* ============================================================
   INNER LAYOUT
============================================================ */
.fo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 56px;
}

/* ============================================================
   LEFT — VIDEO COLUMN
============================================================ */
.fo-hero-video-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Decorative frame around video */
.fo-hero-video-frame {
  position: relative;
}
.fo-hero-video-accent {
  position: absolute;
  width: 40px; height: 40px;
  z-index: 2;
  pointer-events: none;
}
.fo-hero-video-accent--tl {
  top: -8px; left: -8px;
  border-top: 3px solid #00C2A8;
  border-left: 3px solid #00C2A8;
  border-radius: 4px 0 0 0;
}
.fo-hero-video-accent--br {
  bottom: -8px; right: -8px;
  border-bottom: 3px solid #00C2A8;
  border-right: 3px solid #00C2A8;
  border-radius: 0 0 4px 0;
}

/* 16:9 responsive iframe */
.fo-hero-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(0,194,168,0.15);
}
.fo-hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Floating live badge */
.fo-hero-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(11,31,58,0.85);
  border: 1px solid rgba(0,194,168,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}
.fo-hero-video-badge-dot {
  width: 7px; height: 7px;
  background: #00C2A8;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,194,168,0.9);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 4px rgba(0,194,168,0.8); }
  50%       { box-shadow: 0 0 14px rgba(0,194,168,1), 0 0 28px rgba(0,194,168,0.3); }
}

/* Mini stats below video */
.fo-hero-mini-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.fo-hero-mini-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 16px 12px;
  transition: background 0.2s;
}
.fo-hero-mini-stat:hover { background: rgba(0,194,168,0.06); }
.fo-hero-mini-num {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fo-hero-mini-num sup {
  font-size: 13px;
  color: #00C2A8;
  font-weight: 700;
  vertical-align: super;
}
.fo-hero-mini-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}
.fo-hero-mini-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ============================================================
   RIGHT — CONTENT
============================================================ */
.fo-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: foFadeUp 0.7s ease both;
}
@keyframes foFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Microsoft badge */
.fo-hero-ms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  width: fit-content;
}

/* Heading */
.fo-hero-heading {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}
.fo-hero-heading-block {
  display: block;
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
}
.fo-hero-heading-amp {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.fo-hero-heading-sub {
  display: block;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

/* Description */
.fo-hero-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
}

/* Feature checkmarks */
.fo-hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fo-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.fo-hero-feature-icon {
  width: 24px; height: 24px;
  background: rgba(0,194,168,0.15);
  border: 1px solid rgba(0,194,168,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00C2A8;
  flex-shrink: 0;
}

/* CTA buttons */
.fo-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.fo-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.fo-hero-btn--primary {
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0,194,168,0.35);
}
.fo-hero-btn--primary:hover {
  background: #00a891;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,194,168,0.45);
}
.fo-hero-btn--primary svg { transition: transform 0.2s; }
.fo-hero-btn--primary:hover svg { transform: translateX(4px); }

.fo-hero-btn--ghost {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.fo-hero-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Trust row */
.fo-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.fo-hero-trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.fo-hero-trust-avatars {
  display: flex;
}
.fo-hero-trust-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C2A8, #0B1F3A);
  border: 2px solid #0B1F3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  margin-left: -8px;
}
.fo-hero-trust-avatar:first-child { margin-left: 0; }
.fo-hero-trust-text {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   BOTTOM WAVE
============================================================ */
.fo-hero-wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: -2px;
}
.fo-hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .fo-hero { padding: 72px 0 0; }
  .fo-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 0;
  }
  /* Show content first on tablet/mobile */
  .fo-hero-content { order: -1; }
  .fo-hero-heading { font-size: clamp(28px, 5vw, 40px); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  .fo-hero { padding: 56px 0 0; }
  .fo-hero-inner { gap: 32px; }
  .fo-hero-ctas { flex-direction: column; }
  .fo-hero-btn { justify-content: center; }
  .fo-hero-mini-stats { border-radius: 10px; }
  .fo-hero-mini-num { font-size: 18px; }
  .fo-hero-trust { gap: 8px; }
}