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

.omni-hero {
  border-radius: 30px;
  padding: 42px 28px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
  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(30px, 5vw, 48px);
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 850px;
}

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

.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: 20px;
}

.omni-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: 14px;
}

.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: 19px;
  padding: 20px 32px;
  border: 3px solid rgba(255,255,255,.85);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.omni-cta-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 46px rgba(0,0,0,.30);
}

.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: linear-gradient(135deg, #111827, var(--accent));
  color: white;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
}

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

.omni-bottom-cta p {
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
}