﻿:root {
  color-scheme: light;
  --ink: #0b3f91;
  --muted: #607086;
  --line: rgba(11, 63, 145, 0.12);
  --paper: #f7fbfc;
  --white: #ffffff;
  --cyan: #16d5c2;
  --blue: #2577ff;
  --violet: #7a42e8;
  --lime: #b8f35b;
  --shadow: 0 24px 70px rgba(11, 63, 145, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(22, 213, 194, 0.18), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(11, 63, 145, 0.52);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(11, 63, 145, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  height: 30px;
  width: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.78;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--cyan);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
}

.header-cta {
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 60, 150, 0.92), rgba(8, 60, 150, 0.58), rgba(8, 60, 150, 0.2)),
    linear-gradient(180deg, rgba(8, 60, 150, 0.3), rgba(8, 60, 150, 0.92));
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #0b57c2, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 48px;
  align-items: center;
  padding-top: 90px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  color: var(--white);
  box-shadow: 0 18px 45px rgba(37, 119, 255, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-console {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.console-top strong {
  margin-left: auto;
  font-size: 13px;
}

.signal-card,
.signal-row > div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(11, 63, 145, 0.48);
}

.signal-card {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.signal-card strong {
  color: var(--lime);
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.signal-row span,
.signal-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.signal-row strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
}

.pulse-map {
  position: relative;
  height: 210px;
  margin-top: 14px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 38%, rgba(22, 213, 194, 0.42), transparent 9%),
    radial-gradient(circle at 72% 56%, rgba(122, 66, 232, 0.38), transparent 12%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  overflow: hidden;
}

.pulse-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(22, 213, 194, 0.55);
  animation: pulse 2s infinite;
}

.pulse-map span:nth-child(1) { left: 25%; top: 32%; }
.pulse-map span:nth-child(2) { left: 67%; top: 52%; animation-delay: 500ms; }
.pulse-map span:nth-child(3) { left: 43%; top: 70%; animation-delay: 900ms; }
.pulse-map span:nth-child(4) { left: 78%; top: 25%; animation-delay: 1200ms; }

.section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.proof-panel {
  position: relative;
}

.proof-panel img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-list {
  position: absolute;
  right: -22px;
  bottom: -34px;
  display: grid;
  gap: 10px;
  width: min(390px, 86%);
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  color: #164a9f;
}

.expertise-section,
.values-section,
.contact-section {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.expertise-card,
.value-card,
.feature-board article,
.contact-form,
.demo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(11, 63, 145, 0.07);
}

.expertise-card {
  min-height: 390px;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  background: #f2fcfb;
  box-shadow: var(--shadow);
}

.card-index {
  color: var(--blue);
  font-weight: 900;
}

.expertise-card h3,
.value-card h3 {
  margin-top: 34px;
  font-size: 25px;
}

.expertise-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.7;
}

.expertise-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.expertise-card li {
  padding: 9px 10px;
  border-radius: var(--radius);
  background: rgba(37, 119, 255, 0.08);
  color: #1952aa;
  font-size: 14px;
  font-weight: 800;
}

.feature-lab {
  background:
    linear-gradient(180deg, #f7fbfc 0%, #eef7fb 100%);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.feature-tabs {
  display: grid;
  gap: 10px;
  width: min(360px, 100%);
}

.tab {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.tab.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
}

.feature-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-board.hidden {
  display: none;
}

.feature-board article {
  padding: 24px;
  min-height: 190px;
}

.feature-board h3 {
  font-size: 20px;
}

.feature-board p {
  color: var(--muted);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  padding: 30px;
}

.value-card blockquote {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.mission-band {
  padding: 100px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 213, 194, 0.94), rgba(37, 119, 255, 0.92), rgba(122, 66, 232, 0.96)),
    url("./assets/site/business-meeting.jpg") center/cover;
}

.mission-inner {
  max-width: 900px;
  text-align: center;
}

.mission-inner .eyebrow {
  color: var(--white);
}

.mission-inner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.7;
}

.mission-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.mission-metrics span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.product-stack {
  display: grid;
  gap: 14px;
}

.product-stack div {
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.product-stack div:nth-child(2) {
  margin-left: 46px;
  background: var(--blue);
}

.product-stack div:nth-child(3) {
  margin-left: 92px;
  background: var(--cyan);
  color: var(--ink);
}

.demo-section {
  padding-top: 30px;
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.demo-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.compact-form,
.contact-form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 119, 255, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 70px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a,
.contact-list span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbfc;
  color: #164a9f;
  font-weight: 800;
}

.contact-form {
  padding: 28px;
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #0b57c2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
}

.site-footer span {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 900;
}

.site-footer a {
  display: block;
  margin-top: 9px;
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }
.delay-3 { transition-delay: 320ms; }

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 24px rgba(22, 213, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 213, 194, 0);
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    padding: 13px 10px;
  }

  .nav-toggle span {
    height: 2px;
    background: currentColor;
  }

  .site-nav.open {
    position: fixed;
    inset: 74px 20px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(11, 63, 145, 0.94);
    color: var(--white);
  }

  .site-nav.open a {
    padding: 14px;
  }

  .hero-content,
  .split,
  .reverse,
  .feature-layout,
  .demo-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-console {
    max-width: 520px;
  }

  .expertise-grid,
  .feature-board,
  .values-grid,
  .mission-metrics,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-list {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    inset: 10px 12px auto;
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .section {
    padding: 78px 0;
  }

  .expertise-grid,
  .feature-board,
  .values-grid,
  .mission-metrics,
  .footer-grid,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .product-stack div:nth-child(2),
  .product-stack div:nth-child(3) {
    margin-left: 0;
  }
}

.industries-section {
  background:
    linear-gradient(180deg, #0b57c2 0%, #0f6fe8 42%, #f7fbfc 42%, #f7fbfc 100%);
  color: var(--white);
  padding-top: 120px;
}

.industries-hero {
  max-width: 980px;
  margin-bottom: 28px;
}

.industries-hero h2 {
  max-width: 980px;
}

.industries-hero p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.75;
}

.vertical-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 48px;
}

.vertical-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.vertical-cloud a:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 213, 194, 0.65);
  background: rgba(22, 213, 194, 0.16);
}

.vertical-detail-list {
  display: grid;
  gap: 18px;
  color: var(--ink);
}

.vertical-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(11, 63, 145, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(11, 63, 145, 0.12);
  scroll-margin-top: 110px;
  position: relative;
  overflow: hidden;
}

.vertical-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--cyan), var(--blue), var(--violet));
}

.vertical-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.vertical-detail h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.vertical-detail p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.benefit-box {
  padding: 24px;
  border-radius: var(--radius);
  background: #0b57c2;
  color: var(--white);
}

.benefit-box h4 {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 18px;
}

.benefit-box ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-box li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.benefit-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}

@media (max-width: 980px) {
  .vertical-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .industries-section {
    padding-top: 84px;
  }

  .vertical-detail {
    padding: 24px;
  }
}
.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav a,
.header-cta,
.btn,
.tab,
.contact-list a,
.contact-list span,
.site-footer a,
.footer-title,
.footer-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav a.active {
  color: var(--cyan);
  opacity: 1;
}

.header-cta .icon,
.btn .icon {
  transition: transform 220ms ease;
}

.header-cta:hover .icon,
.btn:hover .icon {
  transform: translateX(3px) rotate(-8deg);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--blue);
  padding: 12px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 213, 194, 0.14), rgba(37, 119, 255, 0.12));
  box-shadow: inset 0 0 0 1px rgba(37, 119, 255, 0.14);
}

.expertise-card:hover .card-icon,
.value-card:hover .icon,
.feature-board article:hover .icon {
  animation: icon-float 900ms ease both;
}

.feature-board article {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-board article::after,
.value-card::after,
.vertical-detail::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 90px;
  background: radial-gradient(circle, rgba(22, 213, 194, 0.18), transparent 64%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.feature-board article:hover,
.value-card:hover,
.vertical-detail:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 119, 255, 0.24);
  box-shadow: 0 26px 70px rgba(11, 63, 145, 0.14);
}

.feature-board article:hover::after,
.value-card:hover::after,
.vertical-detail:hover::after {
  opacity: 1;
  transform: translateY(-18px);
}

.value-card,
.vertical-detail {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 213, 194, 0.14), transparent 28%),
    radial-gradient(circle at 82% 36%, rgba(122, 66, 232, 0.16), transparent 28%),
    #0b57c2;
}

.footer-grid-pro {
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  position: relative;
  z-index: 1;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand img {
  height: 34px;
}

.footer-brand-block p,
.footer-address {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 900;
}

.site-footer a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-row a {
  width: 42px;
  height: 42px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.footer-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-orbit span {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: orbit-shift 9s ease-in-out infinite alternate;
}

.footer-orbit span:nth-child(1) {
  width: 280px;
  height: 280px;
  left: -90px;
  top: -90px;
}

.footer-orbit span:nth-child(2) {
  width: 190px;
  height: 190px;
  right: 12%;
  top: 34px;
  animation-delay: 600ms;
}

.footer-orbit span:nth-child(3) {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -150px;
  animation-delay: 1200ms;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.copyright {
  display: none;
}

.page-hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 87, 194, 0.94), rgba(11, 87, 194, 0.66)),
    var(--page-image, url("./assets/site/team-collaboration.jpg")) center/cover;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(52px, 8vw, 110px);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255,255,255,0.78);
  font-size: 20px;
  line-height: 1.7;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(11, 63, 145, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.detail-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--blue);
}

.detail-card p {
  color: var(--muted);
  line-height: 1.7;
}

@keyframes icon-float {
  0% { transform: translateY(0) rotate(0); }
  45% { transform: translateY(-6px) rotate(-7deg); }
  100% { transform: translateY(0) rotate(0); }
}

@keyframes orbit-shift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(16px, -14px, 0) scale(1.05); }
}

@media (max-width: 980px) {
  .footer-grid-pro,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .footer-grid-pro,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    display: flex;
  }
}
/* Premium v3 visual system */
body {
  background:
    radial-gradient(circle at 14% 6%, rgba(22, 213, 194, 0.11), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(122, 66, 232, 0.10), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #eef8f8 44%, #ffffff 100%);
}

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  mix-blend-mode: multiply;
}

.site-header {
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(22, 213, 194, 0.45), rgba(37, 119, 255, 0.10), rgba(122, 66, 232, 0.42));
  opacity: 0.62;
  filter: blur(13px);
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(22, 213, 194, 0.28));
}

.site-nav a {
  position: relative;
  padding: 10px 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  background: #0b57c2;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  background:
    conic-gradient(from 140deg at 22% 34%, rgba(22, 213, 194, 0.32), transparent 24%, rgba(184, 243, 91, 0.18), transparent 50%, rgba(122, 66, 232, 0.32), transparent 75%),
    radial-gradient(circle at 75% 28%, rgba(37, 119, 255, 0.22), transparent 30%);
  animation: aurora-drift 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  animation: grid-slide 18s linear infinite;
}

.hero-content {
  z-index: 3;
}

.hero-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(22, 213, 194, 0.10);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(184, 243, 91, 0.8);
  animation: live-pulse 1.7s ease-out infinite;
}

.hero h1,
.page-hero h1 {
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
}

.hero h1 {
  background: linear-gradient(105deg, #ffffff 0%, #dffefa 38%, #b8f35b 54%, #ffffff 74%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: headline-shine 8s ease-in-out infinite;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.hero-kpis span {
  min-height: 70px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.hero-kpis span:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 243, 91, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.hero-kpis strong {
  display: block;
  color: var(--lime);
  font-size: 22px;
  line-height: 1.1;
}

.premium-panel,
.demo-panel,
.contact-form,
.proof-list,
.detail-card,
.expertise-card,
.value-card,
.feature-board article,
.vertical-detail {
  transform-style: preserve-3d;
  will-change: transform;
}

.premium-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.premium-panel::before,
.demo-panel::before,
.contact-form::before,
.detail-card::before,
.expertise-card::before,
.value-card::before,
.feature-board article::before,
.vertical-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(22, 213, 194, 0.56), rgba(37, 119, 255, 0.10), rgba(122, 66, 232, 0.44));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}

.premium-panel:hover::before,
.demo-panel:hover::before,
.contact-form:hover::before,
.detail-card:hover::before,
.expertise-card:hover::before,
.value-card:hover::before,
.feature-board article:hover::before,
.vertical-detail:hover::before {
  opacity: 1;
}

.section {
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 213, 194, 0.11), transparent 66%);
  pointer-events: none;
}

.expertise-card,
.value-card,
.feature-board article,
.detail-card,
.vertical-detail,
.contact-form,
.demo-panel {
  backdrop-filter: blur(10px);
}

.expertise-card:hover h3,
.value-card:hover h3,
.feature-board article:hover h3,
.detail-card:hover h3 {
  color: #0a61ff;
}

.product-stack div {
  position: relative;
  overflow: hidden;
}

.product-stack div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.26) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: product-sheen 5.2s ease-in-out infinite;
}

.mission-band {
  position: relative;
  overflow: hidden;
}

.mission-band::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 90deg, rgba(184, 243, 91, 0.2), rgba(22, 213, 194, 0.22), rgba(122, 66, 232, 0.18), rgba(184, 243, 91, 0.2));
  animation: aurora-drift 14s ease-in-out infinite alternate-reverse;
}

.mission-inner {
  position: relative;
  z-index: 1;
}

.form-note {
  transition: transform 220ms ease, opacity 220ms ease;
}

.form-note:not(:empty) {
  transform: translateY(-2px);
}

@keyframes aurora-drift {
  0% { transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) rotate(10deg) scale(1.07); }
}

@keyframes grid-slide {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}

@keyframes headline-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 243, 91, 0.72); }
  72% { box-shadow: 0 0 0 12px rgba(184, 243, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 243, 91, 0); }
}

@keyframes product-sheen {
  0%, 38% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

@media (max-width: 980px) {
  .hero-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .network-canvas {
    opacity: 0.34;
  }
}
.premium-panel,
.demo-panel,
.contact-form,
.proof-list,
.detail-card,
.expertise-card,
.value-card,
.feature-board article,
.vertical-detail {
  position: relative;
  overflow: hidden;
}

.premium-panel > *,
.demo-panel > *,
.contact-form > *,
.detail-card > *,
.expertise-card > *,
.value-card > *,
.feature-board article > *,
.vertical-detail > * {
  position: relative;
  z-index: 1;
}
/* ERP blue suite additions */
.erp-suite-section,
.erp-blueprint-section,
.erp-comparison-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(21, 133, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(22, 213, 194, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eaf4ff 100%);
}

.erp-suite-hero {
  max-width: 980px;
  margin-bottom: 38px;
}

.erp-suite-hero p:not(.eyebrow) {
  max-width: 900px;
  color: #4a6fae;
  font-size: 19px;
  line-height: 1.78;
}

.erp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.erp-feature-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(21, 103, 216, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 255, 0.88));
  box-shadow: 0 22px 64px rgba(21, 103, 216, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
}

.erp-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(21, 133, 255, 0.16), transparent 45%, rgba(22, 213, 194, 0.18));
  opacity: 0;
  transition: opacity 220ms ease;
}

.erp-feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(21, 133, 255, 0.38);
  box-shadow: 0 28px 76px rgba(21, 103, 216, 0.20);
}

.erp-feature-card:hover::before {
  opacity: 1;
}

.erp-feature-card > * {
  position: relative;
  z-index: 1;
}

.erp-feature-card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  padding: 10px;
  color: #0b57c2;
  border-radius: var(--radius);
  background: rgba(21, 133, 255, 0.10);
}

.erp-feature-card h3 {
  margin-bottom: 12px;
  color: #0b3f91;
  font-size: 22px;
}

.erp-feature-card p {
  color: #5676aa;
  line-height: 1.7;
}

.erp-page-hero {
  background:
    linear-gradient(90deg, rgba(11, 87, 194, 0.92), rgba(21, 133, 255, 0.64)),
    var(--page-image) center/cover;
}

.erp-control-panel {
  padding: 24px;
  border: 1px solid rgba(21, 133, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(234,244,255,0.88));
  box-shadow: 0 26px 70px rgba(21, 103, 216, 0.17);
}

.erp-control-panel .console-top,
.erp-control-panel .signal-row span {
  color: #4a6fae;
}

.erp-control-panel .signal-row > div {
  background: rgba(255,255,255,0.76);
  border-color: rgba(21, 103, 216, 0.16);
}

.erp-control-panel .signal-row strong {
  color: #0b57c2;
}

.erp-flow-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.erp-flow-line span {
  padding: 10px 12px;
  border-radius: 999px;
  color: #0b3f91;
  background: rgba(21, 133, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.erp-comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.blue-btn {
  color: #0b57c2;
  border-color: rgba(21, 133, 255, 0.28);
  background: rgba(255,255,255,0.86);
}

.benefit-box,
.site-footer,
.demo-panel {
  background:
    radial-gradient(circle at 20% 18%, rgba(22, 213, 194, 0.16), transparent 30%),
    linear-gradient(135deg, #0b57c2, #1585ff) !important;
}

.hero,
.page-hero {
  background: #0b57c2;
}

@media (max-width: 980px) {
  .erp-feature-grid,
  .erp-comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .erp-feature-grid,
  .erp-comparison-grid {
    grid-template-columns: 1fr;
  }
}
.mini-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: #0b57c2;
  font-weight: 900;
}

.mini-link:hover {
  color: #1585ff;
}
/* Responsive predefined support chatbot */
.support-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  font-family: Inter, system-ui, sans-serif;
}

.chat-launcher {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 213, 194, 0.36), transparent 34%),
    linear-gradient(135deg, #0b57c2, #1585ff);
  box-shadow: 0 20px 54px rgba(11, 87, 194, 0.32);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(11, 87, 194, 0.42);
}

.chat-launcher svg,
.chat-form button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(380px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 120px));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  border: 1px solid rgba(21, 133, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(11, 87, 194, 0.28);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(18px);
}

.support-chatbot.open .chat-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 18%, rgba(22, 213, 194, 0.32), transparent 28%),
    linear-gradient(135deg, #0b57c2, #1585ff);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header strong {
  font-size: 18px;
}

.chat-header span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  cursor: pointer;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 18%, rgba(21, 133, 255, 0.08), transparent 34%),
    #f8fbff;
}

.chat-message {
  max-width: 88%;
  animation: chat-pop 220ms ease both;
}

.chat-message p {
  margin: 0;
  padding: 12px 13px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.bot p {
  color: #174a9d;
  background: #ffffff;
  border: 1px solid rgba(21, 133, 255, 0.14);
  box-shadow: 0 12px 30px rgba(11, 87, 194, 0.08);
}

.chat-message.user {
  align-self: flex-end;
}

.chat-message.user p {
  color: #ffffff;
  background: linear-gradient(135deg, #0b57c2, #1585ff);
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chat-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0b57c2;
  background: rgba(21, 133, 255, 0.10);
  font-size: 12px;
  font-weight: 900;
}

.chat-quick {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  overflow-x: auto;
  border-top: 1px solid rgba(21, 133, 255, 0.12);
  background: rgba(234, 244, 255, 0.72);
}

.chat-quick button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(21, 133, 255, 0.18);
  border-radius: 999px;
  color: #0b57c2;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.chat-quick button:hover {
  color: #ffffff;
  background: #0b57c2;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(21, 133, 255, 0.12);
  background: #ffffff;
}

.chat-form input {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 133, 255, 0.18);
  background: #f8fbff;
}

.chat-form button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #0b57c2, #1585ff);
  cursor: pointer;
}

@keyframes chat-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .support-chatbot {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    justify-content: flex-end;
  }

  .chat-window {
    right: 0;
    left: 0;
    width: 100%;
    height: min(620px, calc(100vh - 96px));
  }

  .chat-launcher span {
    display: none;
  }

  .chat-launcher {
    width: 58px;
    justify-content: center;
    padding: 0;
  }
}

/* Monitor ERP inspired homepage refresh */
.monitor-home-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 80px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(11, 87, 194, 0.94), rgba(21, 133, 255, 0.74)),
    url("./assets/site/erp-warehouse.jpg") center/cover;
}

.monitor-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.35;
  animation: grid-slide 18s linear infinite;
}

.monitor-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: center;
}

.monitor-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.94;
  color: #ffffff;
}

.monitor-hero-copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255,255,255,0.84);
  font-size: 21px;
  line-height: 1.65;
}

.monitor-hero-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 18px;
  background: rgba(255,255,255,0.16);
  box-shadow: 0 28px 80px rgba(4, 53, 130, 0.28);
  backdrop-filter: blur(18px);
}

.monitor-card-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: #dffefa;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.monitor-flow-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.monitor-flow-mini span {
  padding: 9px 11px;
  border-radius: 999px;
  color: #0b57c2;
  background: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 900;
}

.monitor-card-kpis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.monitor-card-kpis div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
}

.monitor-card-kpis strong {
  font-size: 28px;
  color: #b8f35b;
}

.monitor-card-kpis span {
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.monitor-intro-band {
  padding: 74px 0;
  background: #f0e9e2;
}

.monitor-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.monitor-intro-grid p:not(.eyebrow) {
  color: #5676aa;
  font-size: 19px;
  line-height: 1.8;
}

.monitor-modules-section {
  background: #fbfbfb;
}

.monitor-section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.monitor-section-head p:not(.eyebrow) {
  color: #5676aa;
  font-size: 18px;
  line-height: 1.75;
}

.monitor-module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.monitor-module {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  min-height: 178px;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(21, 103, 216, 0.13);
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(21, 103, 216, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.monitor-module:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(21, 103, 216, 0.15);
}

.monitor-module h3 {
  margin-bottom: 10px;
  color: #0b3f91;
  font-size: 26px;
}

.monitor-module p {
  color: #5676aa;
  line-height: 1.7;
}

.monitor-module .icon {
  width: 48px;
  height: 48px;
  color: #0b57c2;
  padding: 11px;
  border-radius: 14px;
  background: #eaf4ff;
}

.monitor-benefits-section {
  padding-top: 40px;
  background: #fbfbfb;
}

.monitor-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.monitor-benefit-card {
  padding: 28px;
  border-radius: 16px;
  background: #eaf4ff;
  border: 1px solid rgba(21, 103, 216, 0.12);
}

.monitor-benefit-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #0b57c2;
}

.monitor-benefit-card h3 {
  color: #0b3f91;
  font-size: 24px;
}

.monitor-benefit-card p {
  color: #5676aa;
  line-height: 1.7;
}

.monitor-faq-section {
  background: #e6e7eb;
}

.monitor-faq-list {
  display: grid;
  gap: 12px;
}

.monitor-faq-list details {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(21, 103, 216, 0.14);
  box-shadow: 0 18px 44px rgba(21, 103, 216, 0.08);
  overflow: hidden;
}

.monitor-faq-list summary {
  padding: 22px 24px;
  cursor: pointer;
  color: #0b3f91;
  font-weight: 900;
  font-size: 18px;
}

.monitor-faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: #5676aa;
  line-height: 1.7;
}

.monitor-cta-banner {
  padding: 92px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(11, 87, 194, 0.92), rgba(21, 133, 255, 0.72)),
    url("./assets/site/team-collaboration.jpg") center/cover;
}

.monitor-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.monitor-cta-grid h2 {
  max-width: 780px;
  color: #ffffff;
}

.monitor-cta-grid p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .monitor-hero-grid,
  .monitor-intro-grid,
  .monitor-cta-grid {
    grid-template-columns: 1fr;
  }

  .monitor-hero-card {
    max-width: 560px;
  }

  .monitor-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .monitor-home-hero {
    min-height: auto;
    padding: 130px 0 60px;
  }

  .monitor-module-list {
    grid-template-columns: 1fr;
  }

  .monitor-module {
    grid-template-columns: 1fr;
  }
}

/* Zyger buyer-focused product suite */
.zyger-msme-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 149, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #eaf5ff 44%, #ffffff 100%);
}

.zyger-msme-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% 46%;
  height: 420px;
  background: linear-gradient(135deg, rgba(8, 91, 210, 0.16), rgba(84, 190, 255, 0.08));
  border-radius: 999px;
  transform: rotate(-11deg);
  pointer-events: none;
}

.zyger-msme-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.zyger-msme-copy h1 {
  max-width: 780px;
  margin: 18px 0;
  color: #063978;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
}

.zyger-msme-copy p:not(.eyebrow) {
  max-width: 740px;
  color: #476b9f;
  font-size: 19px;
  line-height: 1.75;
}

.zyger-msme-panel {
  color: #ffffff;
  padding: 34px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(6, 57, 120, 0.94), rgba(19, 125, 240, 0.9)),
    url("./assets/site/technology.jpg") center/cover;
  box-shadow: 0 30px 90px rgba(10, 91, 199, 0.25);
}

.zyger-priority-stack {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.zyger-priority-stack strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 18px;
}

.zyger-msme-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.zyger-product-suite,
.zyger-mobile-app-section {
  background: #fbfdff;
}

.suite-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.suite-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(21, 103, 216, 0.12);
  box-shadow: 0 20px 55px rgba(21, 103, 216, 0.09);
}

.suite-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  color: #0a438c;
  border-radius: 12px;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.suite-sidebar a:hover,
.suite-sidebar a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0b57c2, #1594ff);
  transform: translateX(4px);
}

.suite-sidebar .icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.suite-main {
  padding: 40px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(232, 245, 255, 0.94), rgba(255, 255, 255, 0.97)),
    radial-gradient(circle at 100% 0%, rgba(21, 148, 255, 0.18), transparent 36%);
  border: 1px solid rgba(21, 103, 216, 0.12);
}

.suite-main h2 {
  max-width: 760px;
  margin: 8px 0 24px;
  color: #063978;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.suite-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.suite-module-grid span,
.integration-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 13px;
  color: #073a7d;
  background: #ffffff;
  border: 1px solid rgba(21, 103, 216, 0.14);
  box-shadow: 0 10px 28px rgba(21, 103, 216, 0.07);
  font-weight: 850;
}

.suite-mini-sections,
.product-detail-list,
.industry-grid-clean {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.suite-mini-sections article,
.product-detail-list article,
.industry-card {
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(21, 103, 216, 0.12);
  box-shadow: 0 18px 44px rgba(21, 103, 216, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.suite-mini-sections article:hover,
.product-detail-list article:hover,
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(21, 103, 216, 0.14);
}

.suite-mini-sections h3,
.product-detail-list h3,
.industry-card h3 {
  color: #083f88;
  font-size: 22px;
  margin-bottom: 10px;
}

.suite-mini-sections p,
.product-detail-list p,
.industry-card p {
  color: #5273a4;
  line-height: 1.7;
}

.zyger-integration-band {
  background: linear-gradient(135deg, #063978, #0d67ce 55%, #1594ff);
  color: #ffffff;
}

.zyger-integration-band .monitor-section-head h2,
.zyger-integration-band .eyebrow {
  color: #ffffff;
}

.integration-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zyger-integration-band .integration-chip-grid span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.zyger-msme-section {
  background: #eef7ff;
}

.industries-focus-section {
  background: #fbfdff;
}

.industry-card .icon {
  width: 46px;
  height: 46px;
  color: #0b57c2;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #eaf4ff;
}

@media (max-width: 980px) {
  .zyger-msme-grid,
  .suite-layout,
  .monitor-intro-grid {
    grid-template-columns: 1fr;
  }

  .suite-sidebar {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suite-module-grid,
  .suite-mini-sections,
  .product-detail-list,
  .industry-grid-clean {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .zyger-msme-hero {
    padding: 118px 0 62px;
  }

  .suite-main,
  .zyger-msme-panel {
    padding: 24px;
  }

  .suite-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Feature page refinement for ERP/HRMS/CRM groups */
.feature-tabs {
  width: min(780px, 100%);
  grid-template-columns: repeat(5, minmax(118px, 1fr));
}

.feature-tabs .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 0 14px;
}

.feature-tabs .tab .icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.product-stack div:nth-child(4) {
  transform: translateX(26px);
  background: linear-gradient(135deg, rgba(11, 87, 194, 0.94), rgba(21, 148, 255, 0.88));
}

@media (max-width: 980px) {
  .feature-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .feature-tabs .tab {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Final polish: contrast, spacing, product links and industry detail pages */
.site-nav {
  gap: 10px;
}

.compact-home.hero {
  min-height: 680px;
}

.compact-home .hero-content {
  padding-top: 145px;
  padding-bottom: 70px;
}

.home-short-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.home-products-preview {
  padding-top: 78px;
  padding-bottom: 82px;
}

.home-products-preview .expertise-card {
  color: inherit;
  text-decoration: none;
}

.compact-page-hero {
  min-height: 390px;
  padding: 138px 0 70px;
}

.compact-page-hero .container {
  max-width: 980px;
}

.compact-page-hero h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
}

.compact-product-suite {
  padding-top: 64px;
}

.compact-product-suite .suite-main h2,
.feature-lab .section-copy h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  max-width: 880px;
}

.product-link-list a,
.product-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.product-link-list article {
  height: 100%;
}

.product-link-list article span {
  display: inline-flex;
  margin-top: 18px;
  color: #0b57c2;
  font-weight: 900;
}

.product-link-list article:hover span {
  color: #1594ff;
}

.zyger-integration-band .monitor-section-head p:not(.eyebrow),
.zyger-integration-band p {
  color: rgba(255, 255, 255, 0.86) !important;
}

.zyger-integration-band .monitor-section-head h2 {
  color: #ffffff !important;
}

.feature-lab {
  padding-top: 64px;
}

.feature-lab .feature-layout {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 22px;
  margin-bottom: 26px;
}

.feature-lab .section-copy {
  max-width: 960px;
}

.feature-lab .section-copy p:not(.eyebrow) {
  max-width: 760px;
}

.feature-tabs {
  width: 100%;
  max-width: 980px;
}

.product-detail-section .split {
  align-items: start;
}

.product-detail-hero {
  min-height: 430px;
}

.product-feature-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-detail-section {
  padding-top: 70px;
  background: #f7fbff;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.industry-detail-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(21, 103, 216, 0.13);
  box-shadow: 0 22px 60px rgba(21, 103, 216, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.industry-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(21, 103, 216, 0.16);
}

.industry-detail-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.industry-detail-card > div {
  padding: 26px;
}

.industry-detail-card .icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 14px;
  color: #0b57c2;
  background: #eaf4ff;
  margin-bottom: 14px;
}

.industry-detail-card h3 {
  color: #073a7d;
  font-size: 26px;
  margin-bottom: 10px;
}

.industry-detail-card p {
  color: #5273a4;
  line-height: 1.7;
}

.industry-detail-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #234f8e;
  line-height: 1.8;
  font-weight: 750;
}

@media (max-width: 980px) {
  .compact-home.hero {
    min-height: auto;
  }

  .industry-detail-grid,
  .product-feature-board {
    grid-template-columns: 1fr;
  }

  .compact-page-hero {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .compact-page-hero h1 {
    font-size: 40px;
  }

  .industry-detail-card img {
    height: 180px;
  }
}

/* Icon and spacing normalization pass */
.icon,
.site-footer .icon,
.footer-title .icon,
.social-row .icon,
.chat-launcher svg,
.chat-form button svg {
  margin: 0;
  line-height: 1;
}

.icon svg,
.chat-launcher svg,
.chat-form button svg {
  display: block;
  overflow: visible;
}

.site-nav a .icon {
  width: 17px;
  height: 17px;
  opacity: 0.95;
}

.site-nav a.active .icon,
.site-nav a:hover .icon {
  color: currentColor;
  opacity: 1;
}

.header-cta .icon,
.btn .icon {
  width: 20px;
  height: 20px;
}

.card-icon.icon,
.expertise-card .card-icon,
.industry-detail-card .icon,
.monitor-benefit-card .icon,
.erp-feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-title,
.site-footer a,
.footer-address,
.social-row a {
  gap: 9px;
}

.site-footer .icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: currentColor;
}

.footer-brand span,
.footer-title,
.site-footer .social-row span,
.site-footer a span.icon,
.footer-address span.icon {
  margin-bottom: 0;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-link-list article {
  position: relative;
  overflow: hidden;
}

.product-link-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #16d5c2, #2577ff);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card-link:hover article::before {
  opacity: 1;
}

.feature-tabs .tab {
  white-space: nowrap;
}

.support-chatbot .chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.support-chatbot .chat-launcher svg,
.chat-form button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  .site-nav a .icon {
    width: 19px;
    height: 19px;
  }

  .feature-tabs .tab {
    white-space: normal;
  }
}

/* Final logo, footer and mission/vision alignment fixes */
.brand { display: inline-flex !important; align-items: center !important; gap: 12px !important; line-height: 1 !important; min-width: 0; }
.brand img { width: 46px !important; height: 46px !important; object-fit: contain !important; flex: 0 0 46px !important; display: block !important; }
.brand span { display: inline-block !important; margin: 0 !important; line-height: 1.1 !important; white-space: nowrap !important; }
.site-header .brand span { color: #083f88 !important; font-weight: 900 !important; }
.site-footer .footer-brand span { color: #ffffff !important; font-weight: 900 !important; }
.site-footer .footer-grid > div { min-width: 0; }
.site-footer .footer-grid a:not(.brand), .site-footer .footer-address { display: flex !important; align-items: flex-start !important; gap: 10px !important; width: fit-content !important; max-width: 100% !important; margin-top: 12px !important; line-height: 1.55 !important; white-space: normal !important; }
.site-footer .footer-title { display: flex !important; align-items: center !important; gap: 10px !important; margin: 0 0 18px !important; line-height: 1.2 !important; }
.site-footer .footer-title .icon, .site-footer a .icon, .site-footer .footer-address .icon { margin-top: 2px !important; }
.site-footer .footer-brand { display: inline-flex !important; align-items: center !important; margin: 0 0 18px !important; }
.footer-brand-block p { max-width: 330px; }
.footer-bottom { align-items: center !important; }
.footer-bottom div, .footer-bottom a { display: inline-flex !important; align-items: center !important; }
.footer-bottom div { gap: 22px !important; }
.footer-bottom a { margin: 0 !important; }
.mission-vision-section { padding-top: 74px; padding-bottom: 78px; background: linear-gradient(135deg, #f7fbff, #eef8ff 58%, #ffffff); }
.mission-vision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.mission-vision-card { position: relative; overflow: hidden; padding: 34px; border-radius: 22px; background: #ffffff; border: 1px solid rgba(21, 103, 216, 0.13); box-shadow: 0 24px 70px rgba(21, 103, 216, 0.1); }
.mission-vision-card::after { content: ""; position: absolute; inset: auto -40px -70px auto; width: 180px; height: 180px; border-radius: 999px; background: rgba(22, 213, 194, 0.14); }
.mission-vision-card > .icon { width: 48px; height: 48px; padding: 12px; border-radius: 16px; color: #0b57c2; background: #eaf4ff; margin-bottom: 20px; }
.mission-vision-card h2 { margin: 8px 0 14px; color: #073a7d; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; }
.mission-vision-card p:not(.eyebrow) { color: #5273a4; line-height: 1.75; font-size: 17px; }
@media (max-width: 980px) { .mission-vision-grid { grid-template-columns: 1fr; } .brand img { width: 42px !important; height: 42px !important; flex-basis: 42px !important; } }
@media (max-width: 560px) { .site-header .brand span { max-width: 140px; overflow: hidden; text-overflow: ellipsis; } .mission-vision-card { padding: 26px; } }

/* Cross-device visibility and responsive safety pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.network-canvas,
.cursor-glow {
  pointer-events: none;
}

/* Keep content visible on every device even if IntersectionObserver is delayed/blocked. */
.reveal,
.detail-card,
.vertical-detail {
  opacity: 1 !important;
  transform: none !important;
}

.site-header {
  max-width: calc(100vw - 40px);
}

.site-nav {
  min-width: 0;
  flex-wrap: nowrap;
}

.site-nav a {
  white-space: nowrap;
}

.hero-content,
.split,
.demo-panel,
.contact-grid,
.footer-grid,
.industry-detail-grid,
.suite-layout,
.mission-vision-grid {
  min-width: 0;
}

.hero-copy,
.section-copy,
.suite-main,
.demo-panel > div,
.footer-grid > div {
  min-width: 0;
}

.hero-console,
.proof-panel,
.demo-panel,
.contact-form,
.suite-main {
  max-width: 100%;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    padding: 13px 10px;
    color: currentColor;
  }

  .nav-toggle span {
    height: 2px;
    background: currentColor;
  }

  .site-nav.open {
    position: fixed;
    inset: 78px 20px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(11, 63, 145, 0.96);
    color: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 14px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    inset: 10px 12px auto;
    max-width: calc(100vw - 24px);
    padding: 10px 12px;
  }

  .brand img {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }

  .brand span,
  .site-header .brand span {
    display: inline-block !important;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .compact-home.hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(42px, 14vw, 68px) !important;
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(30px, 10vw, 46px) !important;
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .hero-kpis {
    gap: 10px;
  }

  .hero-kpis span,
  .mission-metrics span {
    width: 100%;
  }

  .hero-console {
    width: 100%;
  }

  .pulse-map {
    height: 150px;
  }

  .section,
  .home-short-section,
  .home-products-preview,
  .mission-vision-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .expertise-card {
    min-height: auto;
  }

  .proof-list {
    width: 100%;
  }

  .feature-tabs {
    grid-template-columns: 1fr !important;
  }

  .feature-board,
  .expertise-grid,
  .footer-grid,
  .mission-vision-grid,
  .industry-detail-grid,
  .product-detail-list,
  .suite-mini-sections {
    grid-template-columns: 1fr !important;
  }

  .demo-panel,
  .mission-vision-card,
  .suite-main {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
    gap: 18px;
    text-align: left;
  }

  .support-chatbot {
    right: 14px;
    bottom: 14px;
  }

  .chat-window {
    width: min(360px, calc(100vw - 28px));
  }
}

@media (max-width: 420px) {
  .brand span,
  .site-header .brand span {
    max-width: 118px;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .social-row {
    flex-wrap: wrap;
  }
}

/* Homepage requested spacing polish */
body[data-page="home"] .compact-home .hero-content {
  padding-top: 176px !important;
}

body[data-page="home"] .hero-status {
  margin-bottom: 22px !important;
}

body[data-page="home"] .hero-copy h1 {
  margin-bottom: 28px !important;
}

body[data-page="home"] .hero-lede {
  margin-top: 0 !important;
  max-width: 760px;
}

body[data-page="home"] .home-short-section {
  padding-top: 92px !important;
}

body[data-page="home"] .proof-panel img {
  object-position: center center;
}

@media (max-width: 760px) {
  body[data-page="home"] .compact-home .hero-content {
    padding-top: 138px !important;
  }

  body[data-page="home"] .hero-status {
    margin-bottom: 16px !important;
  }

  body[data-page="home"] .hero-copy h1 {
    margin-bottom: 20px !important;
  }

  body[data-page="home"] .home-short-section {
    padding-top: 64px !important;
  }
}

/* Home hero text descender and image polish */
body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-copy h1 {
  overflow: visible !important;
}

body[data-page="home"] .hero-copy h1 {
  line-height: 1.04 !important;
  padding-bottom: 0.08em;
  margin-bottom: 18px !important;
}

body[data-page="home"] .hero-lede {
  margin-top: 0 !important;
}

body[data-page="home"] .proof-panel img {
  object-position: center center;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-copy h1 {
    line-height: 1.08 !important;
    padding-bottom: 0.06em;
  }
}

/* About mission/vision and final device/footer alignment pass */
.about-mission-vision-section {
  padding-top: 74px;
  padding-bottom: 82px;
  background: linear-gradient(135deg, #f7fbff, #eef8ff 58%, #ffffff);
}

.site-header .brand,
.site-footer .footer-brand,
.site-nav a,
.header-cta,
.btn,
.footer-title,
.site-footer .footer-grid a:not(.brand),
.footer-address,
.contact-list a,
.contact-list span {
  display: inline-flex !important;
  align-items: center !important;
}

.site-footer .footer-grid a:not(.brand),
.footer-address {
  align-items: flex-start !important;
}

.site-header .icon,
.site-footer .icon,
.btn .icon,
.header-cta .icon,
.contact-list .icon {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
}

.footer-bottom p {
  margin: 0 !important;
  white-space: nowrap !important;
}

.footer-bottom div {
  display: inline-flex !important;
  align-items: center !important;
  gap: 22px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

.footer-bottom a {
  margin: 0 !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .about-mission-vision-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    justify-content: start !important;
  }

  .footer-bottom p,
  .footer-bottom div,
  .footer-bottom a {
    white-space: normal !important;
  }

  .footer-bottom div {
    justify-content: flex-start !important;
  }
}

/* Professional inner-page hero and spacing correction */
.page-hero,
.compact-page-hero,
.product-detail-hero {
  min-height: 420px !important;
  padding: 148px 0 76px !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .container,
.compact-page-hero .container,
.product-detail-hero .container {
  max-width: 980px !important;
}

.page-hero h1,
.compact-page-hero h1,
.product-detail-hero h1 {
  max-width: 920px !important;
  margin: 0 0 20px !important;
  font-size: clamp(42px, 5.8vw, 76px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  overflow: visible !important;
}

.page-hero p:not(.eyebrow),
.compact-page-hero p:not(.eyebrow),
.product-detail-hero p:not(.eyebrow) {
  max-width: 780px !important;
  margin: 0 !important;
  font-size: clamp(17px, 1.8vw, 21px) !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero .eyebrow,
.compact-page-hero .eyebrow,
.product-detail-hero .eyebrow {
  margin-bottom: 16px !important;
}

.feature-lab,
.zyger-product-suite,
.product-detail-section,
.industries-focus-section,
.about-mission-vision-section {
  padding-top: 76px !important;
  padding-bottom: 82px !important;
}

.feature-lab .section-copy h2,
.suite-main h2,
.product-detail-section .section-copy h2 {
  font-size: clamp(30px, 3.6vw, 52px) !important;
  line-height: 1.08 !important;
  margin-bottom: 16px !important;
}

.feature-lab .section-copy p:not(.eyebrow),
.product-detail-section .section-copy p:not(.eyebrow),
.suite-main p:not(.eyebrow) {
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.feature-board article,
.product-detail-list article,
.industry-detail-card,
.mission-vision-card,
.expertise-card {
  overflow: visible !important;
}

@media (max-width: 980px) {
  .page-hero,
  .compact-page-hero,
  .product-detail-hero {
    min-height: 360px !important;
    padding: 128px 0 60px !important;
  }

  .page-hero h1,
  .compact-page-hero h1,
  .product-detail-hero h1 {
    font-size: clamp(38px, 8vw, 62px) !important;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .compact-page-hero,
  .product-detail-hero {
    min-height: auto !important;
    padding: 116px 0 48px !important;
  }

  .page-hero h1,
  .compact-page-hero h1,
  .product-detail-hero h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 1.08 !important;
  }

  .page-hero p:not(.eyebrow),
  .compact-page-hero p:not(.eyebrow),
  .product-detail-hero p:not(.eyebrow) {
    font-size: 16px !important;
  }

  .feature-lab,
  .zyger-product-suite,
  .product-detail-section,
  .industries-focus-section,
  .about-mission-vision-section {
    padding-top: 54px !important;
    padding-bottom: 58px !important;
  }
}

/* Final polish: keep inner page introductions premium and readable */
.page-hero,
.compact-page-hero,
.product-detail-hero {
  min-height: 390px !important;
  padding: 132px 0 68px !important;
}

.page-hero .container,
.compact-page-hero .container,
.product-detail-hero .container {
  max-width: 900px !important;
}

.page-hero h1,
.compact-page-hero h1,
.product-detail-hero h1 {
  max-width: 820px !important;
  font-size: clamp(40px, 4.9vw, 62px) !important;
  line-height: 1.08 !important;
  margin-bottom: 18px !important;
}

.page-hero p:not(.eyebrow),
.compact-page-hero p:not(.eyebrow),
.product-detail-hero p:not(.eyebrow) {
  max-width: 720px !important;
}

@media (max-width: 980px) {
  .page-hero,
  .compact-page-hero,
  .product-detail-hero {
    min-height: 340px !important;
    padding: 120px 0 58px !important;
  }

  .page-hero h1,
  .compact-page-hero h1,
  .product-detail-hero h1 {
    font-size: clamp(36px, 7vw, 54px) !important;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .compact-page-hero,
  .product-detail-hero {
    padding: 108px 0 44px !important;
  }

  .page-hero h1,
  .compact-page-hero h1,
  .product-detail-hero h1 {
    font-size: clamp(31px, 9.5vw, 42px) !important;
    line-height: 1.12 !important;
  }
}
/* ICON_ALIGN_MARKER */
/* Final icon arrangement pass */
.icon,span.icon,a .icon,button .icon{width:20px!important;height:20px!important;min-width:20px!important;min-height:20px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 20px!important;line-height:1!important;vertical-align:middle!important;top:0!important;margin:0!important}
.icon svg,span.icon svg,a .icon svg,button .icon svg{width:100%!important;height:100%!important;display:block!important;stroke:currentColor!important;stroke-width:2!important;stroke-linecap:round!important;stroke-linejoin:round!important;fill:none!important}
.site-nav a,.header-cta,.btn,.tab,.footer-title,.site-footer .footer-grid a:not(.brand),.footer-address,.social-row a,.product-nav a,.suite-sidebar button,.feature-tabs .tab{display:inline-flex!important;align-items:center!important;gap:9px!important}
.site-nav a .icon,.header-cta .icon,.btn .icon,.tab .icon,.feature-tabs .tab .icon{width:18px!important;height:18px!important;min-width:18px!important;min-height:18px!important;flex-basis:18px!important}
.site-nav a{min-height:38px!important;line-height:1!important;white-space:nowrap!important}.header-cta,.btn{min-height:48px!important;line-height:1!important}
.footer-title .icon,.site-footer .footer-grid a:not(.brand) .icon,.footer-address .icon{width:19px!important;height:19px!important;min-width:19px!important;min-height:19px!important;flex-basis:19px!important;margin-top:2px!important}
.social-row a{width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;justify-content:center!important;padding:0!important;gap:0!important}.social-row a .icon{width:18px!important;height:18px!important;min-width:18px!important;min-height:18px!important;flex-basis:18px!important}
.card-icon.icon,.detail-card .icon,.erp-feature-card .icon,.monitor-module .icon,.monitor-benefit-card .icon,.industry-card .icon,.industry-detail-card .icon,.mission-vision-card>.icon,.expertise-card>.icon{width:52px!important;height:52px!important;min-width:52px!important;min-height:52px!important;flex-basis:52px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}
.card-icon.icon svg,.detail-card .icon svg,.erp-feature-card .icon svg,.monitor-module .icon svg,.monitor-benefit-card .icon svg,.industry-card .icon svg,.industry-detail-card .icon svg,.mission-vision-card>.icon svg,.expertise-card>.icon svg{width:24px!important;height:24px!important}
.brand,.footer-brand{display:inline-flex!important;align-items:center!important;gap:12px!important;min-width:0!important}.brand img,.footer-brand img{width:46px!important;height:46px!important;flex:0 0 46px!important;object-fit:contain!important;display:block!important}.brand span,.footer-brand span{line-height:1.15!important;display:block!important}
@media(max-width:980px){.site-nav.open a{width:100%!important;justify-content:flex-start!important;min-height:46px!important}.brand img,.footer-brand img{width:42px!important;height:42px!important;flex-basis:42px!important}}
@media(max-width:640px){.site-nav a .icon,.header-cta .icon,.btn .icon,.tab .icon,.feature-tabs .tab .icon{width:17px!important;height:17px!important;min-width:17px!important;min-height:17px!important;flex-basis:17px!important}.card-icon.icon,.detail-card .icon,.erp-feature-card .icon,.monitor-module .icon,.monitor-benefit-card .icon,.industry-card .icon,.industry-detail-card .icon,.mission-vision-card>.icon,.expertise-card>.icon{width:48px!important;height:48px!important;min-width:48px!important;min-height:48px!important;flex-basis:48px!important}}
/* Final visibility and flow correction */
body[data-page="home"] .site-header:not(.scrolled) .brand span{color:#fff!important;text-shadow:0 2px 12px rgba(0,0,0,.28)!important}
.site-header.scrolled .brand span,.site-header:not(body[data-page="home"] .site-header) .brand span{color:#083f88!important;text-shadow:none!important}
.site-header .brand img{filter:drop-shadow(0 5px 14px rgba(0,0,0,.16))!important}
body[data-page="home"] .site-header:not(.scrolled) .brand img{background:rgba(255,255,255,.12)!important;border-radius:8px!important;padding:2px!important}
.compact-home .hero-copy{min-width:0!important;overflow:visible!important}
.compact-home .hero h1,.compact-home h1,.hero.compact-home h1{max-width:820px!important;font-size:clamp(58px,8vw,112px)!important;line-height:.98!important;padding-bottom:.12em!important;margin-bottom:18px!important;overflow:visible!important}
.hero.compact-home .hero-content{grid-template-columns:minmax(0,1fr) minmax(360px,420px)!important;gap:56px!important}
.hero.compact-home .hero-lede{max-width:760px!important}
.site-footer .footer-grid-pro>div{display:flex!important;flex-direction:column!important;align-items:flex-start!important}
.site-footer .footer-grid-pro>div a:not(.brand),.site-footer .footer-grid-pro>div .footer-address{width:100%!important;display:flex!important;align-items:flex-start!important;justify-content:flex-start!important;gap:10px!important;margin:0 0 12px!important;white-space:normal!important}
.site-footer .footer-title{width:100%!important;margin-bottom:18px!important}
.site-footer .footer-grid-pro>div a:not(.brand) .icon,.site-footer .footer-address .icon{margin-top:2px!important;flex:0 0 19px!important}
@media(max-width:1100px){.hero.compact-home .hero-content{grid-template-columns:1fr!important}.hero-console{max-width:520px!important}.compact-home .hero h1,.compact-home h1,.hero.compact-home h1{font-size:clamp(54px,10vw,96px)!important}}
@media(max-width:640px){.compact-home .hero h1,.compact-home h1,.hero.compact-home h1{font-size:clamp(44px,15vw,66px)!important;line-height:1.02!important}.site-footer .footer-grid-pro>div a:not(.brand),.site-footer .footer-address{margin-bottom:14px!important}}
body:not([data-page="home"]) .site-header .brand span{color:#083f88!important;text-shadow:none!important}
body[data-page="home"] .site-header.scrolled .brand span{color:#083f88!important;text-shadow:none!important}
/* Contact page contact-card alignment polish */
.contact-list{display:grid!important;gap:14px!important;width:100%!important;max-width:720px!important}
.contact-list a,.contact-list span:not(.icon){display:grid!important;grid-template-columns:48px minmax(0,1fr)!important;align-items:center!important;column-gap:14px!important;width:100%!important;min-height:74px!important;padding:14px 18px!important;margin:0!important;text-align:left!important;line-height:1.35!important}
.contact-list .icon{grid-column:1!important;width:48px!important;height:48px!important;min-width:48px!important;min-height:48px!important;flex-basis:48px!important;display:flex!important;align-items:center!important;justify-content:center!important;margin:0!important;border-radius:10px!important}
.contact-list .icon svg{width:24px!important;height:24px!important}
.contact-list a>*:not(.icon),.contact-list span:not(.icon)>*:not(.icon){grid-column:2!important}
@media(max-width:640px){.contact-list a,.contact-list span:not(.icon){grid-template-columns:44px minmax(0,1fr)!important;column-gap:12px!important;min-height:68px!important;padding:12px 14px!important;font-size:16px!important}.contact-list .icon{width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;flex-basis:44px!important}.contact-list .icon svg{width:22px!important;height:22px!important}}
/* Industry image and footer copyright alignment polish */
.industry-detail-grid{align-items:stretch!important}
.industry-detail-card{display:grid!important;grid-template-rows:220px 1fr!important;overflow:hidden!important}
.industry-detail-card>img{width:100%!important;height:220px!important;object-fit:cover!important;object-position:center!important;display:block!important}
.industry-detail-card>div{display:flex!important;flex-direction:column!important;align-items:flex-start!important;height:100%!important}
.industry-detail-card h3{margin-top:14px!important;margin-bottom:10px!important}
.industry-detail-card ul{margin-top:auto!important;padding-left:20px!important}
.footer-bottom .copyright-line,.footer-bottom p.copyright-line{display:flex!important;align-items:center!important;gap:4px!important;white-space:nowrap!important;line-height:1.35!important;margin:0!important;font-weight:700!important}
.footer-bottom .copyright-line span{display:inline!important;white-space:nowrap!important;line-height:inherit!important}
@media(max-width:760px){.footer-bottom .copyright-line,.footer-bottom p.copyright-line{white-space:normal!important;display:block!important}.footer-bottom .copyright-line span{display:inline!important}.industry-detail-card{grid-template-rows:190px 1fr!important}.industry-detail-card>img{height:190px!important}}
/* Why Zyger comparison section */
.why-zyger-section{background:linear-gradient(180deg,#f7fbfc 0%,#edf8ff 100%)!important;overflow:hidden!important}
.why-zyger-section .section-heading{max-width:860px!important;margin:0 auto 34px!important;text-align:center!important}
.why-zyger-section .section-heading h2{font-size:clamp(34px,4vw,58px)!important;line-height:1.06!important;margin-bottom:16px!important}
.why-zyger-section .section-heading p:not(.eyebrow){max-width:760px!important;margin:0 auto!important;color:#516985!important;line-height:1.75!important}
.why-zyger-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:16px!important;margin-bottom:24px!important}
.why-card{min-width:0!important;padding:24px!important;border:1px solid rgba(11,63,145,.12)!important;border-radius:8px!important;background:rgba(255,255,255,.86)!important;box-shadow:0 18px 48px rgba(11,63,145,.08)!important}
.why-card.primary{background:linear-gradient(135deg,#0b57c2,#1687ff)!important;color:#fff!important}
.why-card>.icon{width:46px!important;height:46px!important;margin-bottom:18px!important;border-radius:8px!important;background:#eaf4ff!important;color:#0b57c2!important}
.why-card.primary>.icon{background:rgba(255,255,255,.16)!important;color:#fff!important}
.why-card h3{font-size:20px!important;line-height:1.2!important;margin:0 0 10px!important;color:inherit!important}
.why-card p{margin:0!important;color:#5a6f88!important;line-height:1.65!important}
.why-card.primary p{color:rgba(255,255,255,.82)!important}
.comparison-panel{overflow:hidden!important;border:1px solid rgba(11,63,145,.14)!important;border-radius:8px!important;background:#fff!important;box-shadow:0 22px 60px rgba(11,63,145,.1)!important}
.comparison-row{display:grid!important;grid-template-columns:1fr 1.25fr 1.45fr!important;gap:0!important;border-bottom:1px solid rgba(11,63,145,.1)!important}
.comparison-row:last-child{border-bottom:0!important}
.comparison-row span{display:flex!important;align-items:flex-start!important;padding:18px 20px!important;line-height:1.55!important;color:#516985!important;border-right:1px solid rgba(11,63,145,.1)!important}
.comparison-row span:last-child{border-right:0!important;color:#0b3f91!important;font-weight:800!important}
.comparison-head{background:#0b57c2!important}
.comparison-head span{color:#fff!important;font-weight:900!important;border-color:rgba(255,255,255,.16)!important}
@media(max-width:1080px){.why-zyger-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.comparison-row{grid-template-columns:1fr!important}.comparison-row span{border-right:0!important;border-bottom:1px solid rgba(11,63,145,.08)!important}.comparison-row span:last-child{border-bottom:0!important}.comparison-head span:not(:first-child){display:none!important}}
@media(max-width:640px){.why-zyger-section .section-heading{text-align:left!important}.why-zyger-grid{grid-template-columns:1fr!important}.why-card{padding:22px!important}.comparison-row span{padding:15px 16px!important}.comparison-row span:first-child{background:#f0f7ff!important;color:#0b3f91!important;font-weight:900!important}}
/* Final footer alignment lock */
.site-footer{padding-bottom:34px!important}
.footer-grid-pro{display:grid!important;grid-template-columns:minmax(260px,1.1fr) minmax(210px,.9fr) minmax(170px,.75fr) minmax(270px,1fr)!important;gap:56px!important;align-items:start!important}
.footer-grid-pro>div{min-width:0!important}
.footer-brand-block{padding-right:10px!important}
.footer-brand-block p{max-width:360px!important;margin-bottom:28px!important}
.footer-title{min-height:28px!important;margin:0 0 18px!important}
.site-footer .footer-grid-pro>div a:not(.brand),.site-footer .footer-grid-pro>div .footer-address{max-width:100%!important;margin:0 0 14px!important;line-height:1.45!important}
.site-footer .footer-grid-pro>div:nth-child(4){padding-right:20px!important}
.footer-bottom{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important;gap:28px!important;margin-top:44px!important;padding-top:24px!important;padding-right:150px!important}
.footer-bottom .copyright-line{justify-self:start!important}
.footer-bottom>div{justify-self:end!important;display:flex!important;align-items:center!important;gap:26px!important;white-space:nowrap!important}
.footer-bottom a{line-height:1!important;margin:0!important}
@media(max-width:1120px){.footer-grid-pro{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:38px 46px!important}.footer-bottom{padding-right:0!important}}
@media(max-width:760px){.footer-grid-pro{grid-template-columns:1fr!important;gap:30px!important}.footer-bottom{grid-template-columns:1fr!important;justify-items:start!important;padding-right:0!important;margin-top:34px!important}.footer-bottom>div{justify-self:start!important;flex-wrap:wrap!important;gap:18px!important}.footer-bottom .copyright-line{white-space:normal!important}}
/* Footer final responsive correction */
.site-footer{overflow:hidden!important}
.site-footer .container{max-width:1180px!important}
.footer-grid-pro{width:min(1180px,calc(100% - 48px))!important;display:grid!important;grid-template-columns:1.18fr .9fr .72fr 1.05fr!important;gap:clamp(28px,4vw,54px)!important;align-items:start!important;margin-inline:auto!important}
.footer-grid-pro>div{min-width:0!important;max-width:100%!important}
.footer-brand-block p{max-width:350px!important}
.site-footer .footer-grid-pro>div a:not(.brand),.site-footer .footer-grid-pro>div .footer-address{width:auto!important;max-width:100%!important}
.footer-bottom{width:min(1180px,calc(100% - 48px))!important;margin-inline:auto!important;grid-template-columns:1fr auto!important;padding-right:132px!important}
.footer-bottom>div{padding-right:0!important}
@media(max-width:1240px){.footer-grid-pro{grid-template-columns:1.1fr .9fr!important;gap:42px 56px!important}.footer-bottom{padding-right:0!important}}
@media(max-width:720px){.footer-grid-pro{width:min(100% - 36px,520px)!important;grid-template-columns:1fr!important;gap:32px!important}.footer-bottom{width:min(100% - 36px,520px)!important;grid-template-columns:1fr!important;gap:18px!important;justify-items:start!important}.footer-bottom>div{justify-self:start!important;flex-wrap:wrap!important}.footer-brand-block p{max-width:100%!important}}
/* Footer social buttons and copyright baseline final fix */
.site-footer .social-row{display:flex!important;align-items:center!important;gap:12px!important;margin-top:26px!important}
.site-footer .social-row a{width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;margin:0!important;border-radius:8px!important;line-height:1!important}
.site-footer .social-row a .icon{width:20px!important;height:20px!important;min-width:20px!important;min-height:20px!important;display:flex!important;align-items:center!important;justify-content:center!important;margin:0!important;position:static!important;transform:none!important}
.site-footer .social-row a .icon svg{width:20px!important;height:20px!important;display:block!important;margin:0!important}
.footer-bottom{align-items:center!important}
.footer-bottom .copyright-line,.footer-bottom p.copyright-line{display:inline-flex!important;align-items:baseline!important;gap:5px!important;font-size:16px!important;font-weight:800!important;line-height:1.4!important;margin:0!important;color:rgba(255,255,255,.78)!important}
.footer-bottom .copyright-line::first-letter{font-weight:800!important}
.footer-bottom .copyright-line span{display:inline!important;font:inherit!important;font-weight:900!important;line-height:inherit!important;color:#fff!important;vertical-align:baseline!important}
.footer-bottom .copyright-line a,.footer-bottom a{line-height:1.4!important}
@media(max-width:760px){.site-footer .social-row{justify-content:flex-start!important}.footer-bottom .copyright-line,.footer-bottom p.copyright-line{display:block!important;font-size:15px!important;line-height:1.55!important}}
/* Absolute final footer social button centering */
.site-footer .footer-brand-block .social-row{display:flex!important;align-items:center!important;gap:12px!important}
.site-footer .footer-brand-block .social-row a{position:relative!important;width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;display:grid!important;place-items:center!important;padding:0!important;margin:0!important;border-radius:8px!important;line-height:0!important;text-align:center!important}
.site-footer .footer-brand-block .social-row a .icon{position:absolute!important;left:50%!important;top:50%!important;width:20px!important;height:20px!important;min-width:20px!important;min-height:20px!important;margin:0!important;display:block!important;transform:translate(-50%,-50%)!important;line-height:0!important}
.site-footer .footer-brand-block .social-row a .icon svg{position:absolute!important;left:0!important;top:0!important;width:20px!important;height:20px!important;display:block!important;margin:0!important;transform:none!important}

/* Netlify-safe responsive media and layout guards */
img{max-width:100%}
.brand img,.footer-brand img{object-fit:contain;object-position:center}
.hero-media img,.proof-panel img,.industry-detail-card>img{display:block;width:100%}
@media(max-width:1120px){.site-header{width:calc(100% - 32px);left:16px;right:16px}.header-cta{display:none!important}}
@media(max-width:760px){.site-header{width:calc(100% - 24px);left:12px;right:12px;padding:10px 12px}.site-header .brand{max-width:calc(100% - 58px)}.site-header .brand span{max-width:none!important;overflow:visible!important;text-overflow:clip!important;white-space:nowrap!important;font-size:15px}.hero.compact-home .hero-content,.split,.demo-panel{grid-template-columns:minmax(0,1fr)!important}.hero-console,.proof-panel,.compact-form{width:100%;min-width:0}.hero-media img{height:100%;object-fit:cover;object-position:center}.section-heading h2,.section-copy h2,.page-hero h1{overflow-wrap:anywhere}.site-footer .container,.footer-grid-pro,.footer-bottom{width:min(100% - 32px,520px)!important}}
@media(max-width:420px){.site-header .brand img{width:38px!important;height:38px!important;flex-basis:38px!important}.site-header .brand span{font-size:14px!important}.compact-home .hero h1,.compact-home h1,.hero.compact-home h1{font-size:42px!important}.btn{width:100%;justify-content:center}.hero-actions{grid-template-columns:1fr}}

