:root {
  --omni-ink: #07182f;
  --omni-muted: #586579;
  --omni-blue: #079edf;
  --omni-purple: #343399;
  --omni-border: #dce4ee;
  --omni-soft: #f5f8fc;
  --omni-white: #ffffff;
  --omni-shadow: 0 22px 70px rgba(7, 24, 47, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.omni-service-page {
  margin: 0;
  color: var(--omni-ink);
  background: var(--omni-white);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.omni-service-page a {
  color: inherit;
}

.omni-skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--omni-purple);
  text-decoration: none;
}

.omni-skip-link:focus {
  top: 16px;
}

.omni-shell {
  width: min(1580px, calc(100% - 32px));
  margin: 0 auto;
}

.omni-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(150px, 190px) 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  padding: 18px 26px;
  border: 1px solid rgba(120, 137, 158, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 38px rgba(7, 24, 47, 0.08);
  backdrop-filter: blur(18px);
}

.omni-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.omni-logo img {
  display: block;
  width: 150px;
  height: auto;
}

.omni-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 42px);
}

.omni-nav a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.omni-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--omni-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: 160ms ease;
}

.omni-nav a:hover::after,
.omni-nav a:focus-visible::after,
.omni-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.omni-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.omni-search {
  position: relative;
}

.omni-search input[type="search"] {
  width: clamp(210px, 18vw, 320px);
  height: 52px;
  padding: 0 22px;
  border: 1px solid #cad4e0;
  border-radius: 999px;
  outline: 0;
  color: var(--omni-ink);
  background: #fff;
  font: inherit;
}

.omni-search input[type="search"]:focus {
  border-color: var(--omni-purple);
  box-shadow: 0 0 0 4px rgba(52, 51, 153, 0.1);
}

.omni-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 12px;
  color: #fff !important;
  background: var(--omni-purple);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.omni-button:hover,
.omni-button:focus-visible {
  background: #29287f;
  box-shadow: 0 12px 26px rgba(52, 51, 153, 0.22);
  transform: translateY(-2px);
}

.omni-button--light {
  color: var(--omni-purple) !important;
  background: #fff;
}

.omni-service-main {
  overflow: hidden;
}

.omni-service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  width: min(1320px, calc(100% - 40px));
  margin: 72px auto 56px;
}

.omni-service-hero::before {
  position: absolute;
  z-index: -1;
  top: -130px;
  left: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 158, 223, 0.13), rgba(7, 158, 223, 0));
  content: "";
}

.omni-kicker {
  margin: 0 0 16px;
  color: var(--omni-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.omni-service-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.omni-service-hero h1 .blue-ur {
  color: var(--omni-blue);
}

.omni-service-hero .omni-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--omni-muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
}

.omni-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.omni-text-link {
  display: inline-flex;
  align-items: center;
  padding: 13px 6px;
  color: var(--omni-purple) !important;
  font-weight: 800;
  text-decoration: none;
}

.omni-text-link::after {
  margin-left: 8px;
  content: "→";
}

.omni-hero-figure {
  position: relative;
  margin: 0;
}

.omni-hero-figure::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 78%;
  height: 78%;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--omni-blue), var(--omni-purple));
  content: "";
}

.omni-hero-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  box-shadow: var(--omni-shadow);
  object-fit: cover;
}

.omni-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 96px;
}

.omni-highlight {
  padding: 26px;
  border: 1px solid var(--omni-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 24, 47, 0.05);
}

.omni-highlight::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--omni-blue), var(--omni-purple));
  content: "";
}

.omni-highlight h2 {
  margin: 0 0 9px;
  font-size: 20px;
}

.omni-highlight p {
  margin: 0;
  color: var(--omni-muted);
  line-height: 1.65;
}

.omni-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.omni-section--soft {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1220px) / 2));
  padding-left: max(20px, calc((100% - 1220px) / 2));
  background: var(--omni-soft);
}

.omni-section-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  margin-bottom: 42px;
}

.omni-section-heading h2,
.omni-value-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.omni-section-heading .omni-copy,
.omni-value-copy .omni-copy {
  color: var(--omni-muted);
  font-size: 17px;
  line-height: 1.8;
}

.omni-section-heading .omni-copy p,
.omni-value-copy .omni-copy p {
  margin: 0 0 18px;
}

.omni-included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.omni-included-card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--omni-border);
  border-radius: 18px;
  background: #fff;
}

.omni-included-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--omni-purple);
  font-size: 12px;
  font-weight: 800;
}

.omni-included-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.omni-included-card p {
  margin: 0;
  color: var(--omni-muted);
  font-size: 15px;
  line-height: 1.65;
}

.omni-sector-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.omni-sector-list li {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 16px 20px;
  border: 1px solid var(--omni-border);
  border-radius: 14px;
  background: #fff;
  font-weight: 700;
}

.omni-sector-list li::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--omni-blue);
  content: "";
}

.omni-value-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: start;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(7, 158, 223, 0.38), transparent 40%),
    linear-gradient(135deg, #091a34, #1f236d);
}

.omni-value-panel .omni-kicker,
.omni-value-panel .omni-copy {
  color: #cbd8e9;
}

.omni-benefit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.omni-benefit-list li {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}

.omni-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.omni-related-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--omni-border);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.omni-related-card:hover,
.omni-related-card:focus-visible {
  border-color: rgba(52, 51, 153, 0.45);
  box-shadow: 0 18px 38px rgba(7, 24, 47, 0.09);
  transform: translateY(-4px);
}

.omni-related-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.omni-related-card p {
  margin: 0 0 22px;
  color: var(--omni-muted);
  line-height: 1.65;
}

.omni-related-card span {
  margin-top: auto;
  color: var(--omni-purple);
  font-weight: 800;
}

.omni-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1220px, calc(100% - 40px));
  margin: 36px auto 88px;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(120deg, var(--omni-blue), var(--omni-purple));
}

.omni-cta h2 {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: clamp(30px, 3.5vw, 48px);
  letter-spacing: -0.035em;
}

.omni-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.omni-footer {
  padding: 58px 0 34px;
  color: #d9e2ef;
  background: var(--omni-ink);
}

.omni-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 48px;
}

.omni-footer .omni-logo img {
  filter: brightness(0) invert(1);
}

.omni-footer p {
  max-width: 520px;
  color: #aebbd0;
  line-height: 1.7;
}

.omni-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
}

.omni-footer ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.omni-footer a {
  color: #d9e2ef;
  text-decoration: none;
}

.omni-footer a:hover,
.omni-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.omni-footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8e9bb0;
  font-size: 14px;
}

.omni-floating-quote {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 900;
  box-shadow: 0 16px 34px rgba(52, 51, 153, 0.32);
}

.omni-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1120px) {
  .omni-header {
    grid-template-columns: 150px 1fr auto;
  }

  .omni-search {
    display: none;
  }

  .omni-included-grid,
  .omni-sector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .omni-header {
    position: relative;
    top: auto;
    grid-template-columns: 1fr auto;
  }

  .omni-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
  }

  .omni-nav::-webkit-scrollbar {
    display: none;
  }

  .omni-service-hero,
  .omni-section-heading,
  .omni-value-panel {
    grid-template-columns: 1fr;
  }

  .omni-service-hero {
    margin-top: 52px;
  }

  .omni-highlight-grid,
  .omni-related-grid {
    grid-template-columns: 1fr;
  }

  .omni-highlight-grid {
    margin-bottom: 64px;
  }

  .omni-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .omni-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .omni-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .omni-shell,
  .omni-service-hero,
  .omni-highlight-grid,
  .omni-section,
  .omni-cta {
    width: min(100% - 24px, 1220px);
  }

  .omni-header {
    gap: 14px;
    padding: 15px;
    border-radius: 17px;
  }

  .omni-logo img {
    width: 126px;
  }

  .omni-header .omni-button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .omni-nav {
    gap: 22px;
  }

  .omni-nav a {
    flex: 0 0 auto;
    font-size: 14px;
  }

  .omni-service-hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .omni-hero-figure::after {
    right: -8px;
    bottom: -8px;
  }

  .omni-included-grid,
  .omni-sector-list,
  .omni-footer-grid {
    grid-template-columns: 1fr;
  }

  .omni-section,
  .omni-section--soft {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .omni-value-panel {
    gap: 34px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .omni-floating-quote {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 11px 16px;
    font-size: 14px;
  }
}
