:root {
  --ink: #152033;
  --muted: #5d6b7d;
  --soft: #f5f8fc;
  --line: #dce6f1;
  --panel: #fff;
  --blue: #1f6fff;
  --blue-dark: #1550c4;
  --green: #14a06f;
  --amber: #d88910;
  --rose: #d94868;
  --navy: #0f1b2e;
  --shadow: 0 24px 70px rgba(21, 32, 51, .11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.top-strip {
  background: #0d1524;
  color: #dce8f7;
  font-size: 13px;
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 229, 239, .9);
  backdrop-filter: blur(14px);
}

.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 19px;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
}

.desktop-nav > a,
.nav-item > a {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border-radius: var(--radius);
  color: #314059;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav > a:hover,
.nav-item:hover > a,
.desktop-nav .is-active > a,
.desktop-nav > a.is-active {
  background: #eef5ff;
  color: var(--blue);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 340px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu--wide {
  width: min(940px, calc(100vw - 80px));
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
}

.mega-menu--compact {
  min-width: 280px;
}

.mega-menu--sectors {
  left: 50%;
  width: min(980px, calc(100vw - 80px));
  max-height: min(72vh, 640px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow-y: auto;
  transform: translate(-50%, 8px);
}

.nav-item:hover .mega-menu--sectors,
.nav-item:focus-within .mega-menu--sectors {
  transform: translate(-50%, 0);
}

.mega-menu__intro {
  padding: 18px;
  border-radius: 8px;
  color: #dbe9ff;
  background: #11213a;
}

.mega-menu__intro strong,
.mega-title {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.mega-menu__intro strong {
  color: #fff;
  font-size: 17px;
}

.mega-menu__intro p {
  margin: 0 0 18px;
  color: #c5d3e6;
  font-size: 14px;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #314059;
  font-size: 14px;
  font-weight: 650;
}

.mega-link:hover {
  background: #f2f6fb;
  color: var(--blue);
}

.mega-link i {
  width: 22px;
  color: var(--blue);
  font-size: 21px;
}

.text-link {
  color: #fff;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(30, 107, 255, .24);
}

.btn--primary:hover {
  background: var(--blue-dark);
}

.btn--ghost {
  color: #25344a;
  background: #fff;
  border-color: var(--line);
}

.btn--light {
  color: #142033;
  background: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(16, 24, 39, .48);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(390px, 88vw);
  height: 100vh;
  padding: 20px;
  overflow-y: auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform .2s ease;
}

.drawer-open .drawer-backdrop {
  display: block;
}

.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 800;
}

.mobile-drawer a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid #eef2f6;
  color: #26354b;
  font-weight: 700;
}

.mobile-drawer__label {
  display: block;
  padding: 18px 4px 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.45vw, 58px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 84% 16%, rgba(31, 111, 255, .14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border-bottom: 1px solid #e7eef7;
}

.split-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.split-hero__copy p {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metric-row span {
  min-width: 126px;
  padding: 12px 14px;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
  color: #1e4f84;
  background: rgba(238, 246, 255, .82);
  font-weight: 750;
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
}

.visual-panel {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(31, 111, 255, .14), rgba(20, 160, 111, .09));
}

.visual-panel--green::before {
  background: linear-gradient(135deg, rgba(20, 160, 111, .16), rgba(31, 111, 255, .08));
}

.visual-panel--amber::before {
  background: linear-gradient(135deg, rgba(216, 137, 16, .17), rgba(31, 111, 255, .08));
}

.visual-panel--rose::before {
  background: linear-gradient(135deg, rgba(217, 72, 104, .16), rgba(31, 111, 255, .08));
}

.visual-panel__toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 12px;
}

.visual-panel__toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d7e1ee;
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border: 1px solid #e0e8f2;
  border-radius: 8px;
}

.floating-stat {
  position: absolute;
  width: 154px;
  padding: 13px 14px;
  border: 1px solid rgba(207, 224, 246, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(21, 32, 51, .16);
  backdrop-filter: blur(12px);
}

.floating-stat strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
}

.floating-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-stat--top {
  top: 58px;
  right: -26px;
}

.floating-stat--bottom {
  left: -28px;
  bottom: 34px;
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-heading p,
.feature-card p,
.sector-card p,
.architecture-card p,
.module-strip__group p,
.pricing-card p,
.contact-info p,
.zigzag-section p {
  color: var(--muted);
}

.platform-grid,
.feature-grid,
.sector-grid,
.pricing-grid,
.related-grid,
.outcome-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.sector-card,
.architecture-card,
.pricing-card,
.insight-panel,
.workflow-step,
.outcome-card,
.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(23, 32, 51, .06);
}

.feature-card,
.sector-card,
.architecture-card,
.pricing-card,
.insight-panel,
.workflow-step {
  padding: 24px;
}

.feature-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

a.feature-card:hover,
a.sector-card:hover {
  transform: translateY(-3px);
  border-color: #b9d2ff;
  box-shadow: var(--shadow);
}

.icon-badge,
.sector-card > i,
.architecture-card > i {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  font-size: 25px;
}

.icon-badge--blue,
.sector-card > i,
.architecture-card > i {
  color: var(--blue);
  background: #eaf2ff;
}

.icon-badge--green {
  color: var(--green);
  background: #e9f8f1;
}

.icon-badge--amber {
  color: var(--amber);
  background: #fff4df;
}

.icon-badge--rose {
  color: var(--rose);
  background: #fff0f3;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.module-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.module-strip__group {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.module-strip__group div {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.module-strip__group a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #314059;
  background: #f6f9fd;
  font-weight: 800;
}

.module-strip__group a i {
  color: var(--blue);
  font-size: 21px;
}

.zigzag-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
  padding: 54px 0;
}

.zigzag-section + .zigzag-section {
  border-top: 1px solid var(--line);
}

.zigzag-section--reverse .zigzag-section__copy {
  order: 2;
}

.zigzag-section__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2d3c52;
  font-weight: 750;
}

.check-list i {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 22px;
}

.split-content,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.insight-panel--dark {
  color: #fff;
  background: #11213a;
  border-color: #11213a;
}

.insight-panel--dark .eyebrow {
  color: #8fc0ff;
}

.insight-panel--dark h2,
.insight-panel--dark .check-list li {
  color: #fff;
}

.insight-panel--dark .check-list i {
  color: #ffbdc9;
}

.workflow-steps {
  display: grid;
  gap: 14px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--blue);
  background: #eaf2ff;
  font-size: 20px;
  font-weight: 800;
}

.workflow-step p {
  margin: 0;
  color: #324258;
  font-weight: 750;
}

.outcome-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcome-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px;
  color: #2d3c52;
  font-weight: 800;
}

.outcome-card i {
  color: var(--green);
  font-size: 25px;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.sector-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.sector-card__keyword {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #1550c4;
  background: #eef5ff;
  font-size: 12px;
  font-weight: 800;
}

.sector-directory {
  display: grid;
  gap: 54px;
}

.sector-directory__group {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.sector-directory__group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.keyword-cloud a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
  color: #1e4f84;
  background: #fff;
  font-weight: 800;
}

.keyword-cloud i {
  color: var(--blue);
  font-size: 18px;
}

.comparison-matrix {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.comparison-matrix__head,
.comparison-matrix > div:not(.comparison-matrix__head) {
  display: grid;
  grid-template-columns: .7fr 1fr 1fr;
}

.comparison-matrix__head {
  color: #fff;
  background: #11213a;
  font-weight: 800;
}

.comparison-matrix span {
  padding: 18px;
  border-left: 1px solid var(--line);
}

.comparison-matrix__head span {
  border-color: rgba(255, 255, 255, .14);
}

.comparison-matrix span:first-child {
  border-left: 0;
  font-weight: 800;
}

.comparison-matrix > div:not(.comparison-matrix__head) {
  border-top: 1px solid var(--line);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.pricing-card--highlight {
  border-color: #8bb8ff;
  box-shadow: var(--shadow);
}

.pricing-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 29px;
  line-height: 1.1;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  color: #33445d;
  font-weight: 750;
}

.pricing-card li i {
  color: var(--green);
  font-size: 21px;
}

.pricing-card .btn {
  margin-top: auto;
}

.deep-faq {
  max-width: 880px;
  margin-inline: auto;
}

.deep-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.deep-faq details + details {
  margin-top: 12px;
}

.deep-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.deep-faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.benefit-item i {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 24px;
}

.benefit-item p {
  margin: 0;
  color: #324258;
  font-weight: 750;
}

.section--cta {
  padding-top: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 8px;
  color: #fff;
  background: #11213a;
}

.cta-band .eyebrow {
  color: #8fc0ff;
}

.cta-band h2 {
  max-width: 790px;
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: #c7d4e5;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2e3e56;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

.contact-info {
  padding: 30px;
}

.not-found {
  min-height: 420px;
  display: grid;
  place-items: start;
  align-content: center;
}

.site-footer {
  color: #cbd6e5;
  background: #0d1524;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 56px 0 34px;
}

.brand--footer {
  color: #fff;
}

.footer-grid p {
  max-width: 380px;
  margin-top: 14px;
  color: #aebbd0;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #cbd6e5;
  font-weight: 650;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9ba8ba;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-actions .btn {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .nav-shell {
    height: 68px;
  }

  .split-hero__grid,
  .zigzag-section,
  .split-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .zigzag-section--reverse .zigzag-section__copy {
    order: 0;
  }

  .platform-grid,
  .feature-grid,
  .sector-grid,
  .pricing-grid,
  .related-grid,
  .solution-grid,
  .module-strip,
  .mega-menu--sectors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 9px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .split-hero {
    padding: 50px 0 58px;
  }

  .split-hero__copy p {
    font-size: 17px;
  }

  .visual-panel {
    padding: 10px;
  }

  .floating-stat {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .metric-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .platform-grid,
  .feature-grid,
  .sector-grid,
  .sector-grid--large,
  .pricing-grid,
  .related-grid,
  .solution-grid,
  .module-strip,
  .outcome-grid,
  .mega-menu--sectors {
    grid-template-columns: 1fr;
  }

  .keyword-cloud {
    display: grid;
    grid-template-columns: 1fr;
  }

  .zigzag-section {
    gap: 28px;
    padding: 36px 0;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

  .comparison-matrix__head,
  .comparison-matrix > div:not(.comparison-matrix__head) {
    grid-template-columns: 1fr;
  }

  .comparison-matrix span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .comparison-matrix span:first-child {
    border-top: 0;
  }

  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    padding: 28px;
  }

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