.omni-landing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 0 32px;
}

.omni-hero {
  border-radius: 30px;
  padding: 42px 28px;
  color: #111827;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.85), transparent 42%),
    linear-gradient(135deg, #eef4ff, #e7f0ff, #dde9ff);
  box-shadow: 0 26px 70px rgba(15, 23, 42, .22);
  margin-bottom: 28px;
}

.omni-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-weight: 800;
  margin-bottom: 18px;
}

.omni-hero h1 {
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.08;
  margin: 0 auto 18px;
  max-width: 820px;
}

.omni-hero p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(17,24,39,.82);
}

.omni-cta {
  display: inline-block;
  padding: 17px 28px;
  border-radius: 16px;
  background: white;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

.omni-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.omni-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.12);
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

.omni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.omni-card {
  background: white;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.omni-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.omni-card h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.omni-card p {
  margin: 0;
  line-height: 1.65;
}

.omni-section {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.omni-section li {
  margin-bottom: 8px;
}

.omni-seealso {
  margin-top: 30px;
  padding: 22px;
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.omni-cta-main {
  font-size: 22px;
  padding: 22px 40px;
  border-radius: 18px;
  border: 3px solid #111827;
  background: #ffffff;
  color: #111827;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  transform: translateY(0);
  transition: all .18s ease;
}

.omni-cta-main:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 28px 55px rgba(0,0,0,.38);
}

.omni-cta-note {
  margin-top: 12px !important;
  font-size: 15px !important;
  font-weight: 700;
  color: rgba(255,255,255,.96) !important;
}

.omni-bottom-cta {
  margin-top: 28px;
  padding: 30px 22px;
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.85), transparent 42%),
    linear-gradient(135deg, #eef4ff, #e7f0ff, #dde9ff);
  color: #111827;
  box-shadow: 0 18px 45px rgba(15,23,42,.10);
}

.omni-bottom-cta h2 {
  margin-top: 0;
  color: #111827;
}

.omni-bottom-cta p {
  margin-bottom: 0;
  color: rgba(17,24,39,.82);
}

.omni-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.omni-cta-logo {
  width: 120px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  flex-shrink: 0;
  font-size: 104px;
  transform: translateY(-4px);
  margin-left: 12px;
}

@media (max-width: 520px) {
  .omni-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .omni-cta-row {
    width: 100%;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .omni-cta-main {
    box-sizing: border-box;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 100px);
    padding: 18px 12px;
    font-size: 19px;
  }

  .omni-cta-logo {
    width: 90px;
    height: 76px;
    margin-left: 0;
    font-size: 80px;
  }
}