@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #172133;
  --muted: #637083;
  --line: #dfe6ee;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --blue: #1665d8;
  --teal: #0f9f8f;
  --green: #22a06b;
  --amber: #f3a712;
  --navy: #0d2b4c;
}

.spacc-revamp {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.spacc-revamp p {
  color: var(--muted);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 30% 20%, rgba(15, 159, 143, 0.34), transparent 34%),
    linear-gradient(135deg, #081827, #0d2b4c 58%, #0f9f8f);
  background-size: 48px 48px, 48px 48px, auto, auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  width: min(360px, 100%);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  text-align: center;
  animation: loader-lift 0.75s ease both;
}

.loader-card img {
  width: 160px;
  max-width: 76%;
  margin-bottom: 22px;
}

.loader-orbit {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 22px;
  border: 1px solid #d8e7f4;
  border-radius: 50%;
  animation: loader-spin 4.5s linear infinite;
}

.loader-orbit:before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px dashed #b7cde4;
}

.loader-orbit span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(22, 101, 216, 0.22);
}

.loader-orbit span:nth-child(1) {
  left: 50%;
  top: -9px;
  transform: translateX(-50%);
}

.loader-orbit span:nth-child(2) {
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--teal);
}

.loader-orbit span:nth-child(3) {
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  background: var(--amber);
}

.loader-orbit span:nth-child(4) {
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
}

.loader-progress {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #d9e6f2;
}

.loader-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
  animation: loader-progress 1.25s ease-in-out infinite;
}

.loader-card p {
  margin: 14px 0 0;
  color: #31445a;
  font-weight: 800;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 238, 0.85);
  backdrop-filter: blur(16px);
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(7, 94, 84, 0.28);
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-fab:before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.42);
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-fab i {
  position: relative;
  z-index: 1;
  font-size: 24px;
}

.whatsapp-fab span {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.whatsapp-fab:hover {
  color: #fff;
  background: #1fbd5b;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(7, 94, 84, 0.34);
}

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

.brand img {
  width: 152px;
  max-height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: #31445a;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--blue);
  background: #eef5ff;
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--blue);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: #0d55bb;
}

.nav-toggle,
.nav-trigger {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 76px;
  background:
    linear-gradient(120deg, rgba(13, 43, 76, 0.92), rgba(22, 101, 216, 0.76)),
    url("../images/photos/header.jpg") center/cover;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-grid,
.split-grid,
.accounts-panel,
.cta-panel,
.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid > *,
.split-grid > *,
.accounts-panel > *,
.footer-grid > *,
.cta-panel > * {
  min-width: 0;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
}

.hero-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 21px;
}

.eyebrow {
  display: inline-flex;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-section .eyebrow {
  color: #9ff3dc;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 34px;
}

.btn-solid,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.btn-solid {
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.btn-solid:hover {
  color: #fff;
  background: #1b8b5b;
}

.btn-solid.light {
  color: var(--navy);
  background: #fff;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 12px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.operations-map,
.product-suite-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.2));
}

.product-suite-svg .suite-shadow {
  fill: rgba(8, 24, 39, 0.2);
}

.product-suite-svg .suite-screen {
  fill: url("#screen-gradient");
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2;
}

.product-suite-svg .suite-top {
  fill: #0d2b4c;
}

.product-suite-svg .dot.red { fill: #ff6b6b; }
.product-suite-svg .dot.yellow { fill: #ffd166; }
.product-suite-svg .dot.green { fill: #22a06b; }

.product-suite-svg .screen-panel,
.product-suite-svg .suite-module rect {
  fill: #fff;
  stroke: #d8e7f4;
  stroke-width: 2;
}

.product-suite-svg .screen-panel.main {
  fill: #f8fcff;
}

.product-suite-svg .chart-fill {
  fill: rgba(15, 159, 143, 0.18);
}

.product-suite-svg .chart-line {
  fill: none;
  stroke: #1665d8;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-suite-svg .ui-line {
  fill: #a9bdd2;
}

.product-suite-svg .ui-line.short {
  fill: #d0dde9;
}

.product-suite-svg .bar,
.product-suite-svg .suite-module path {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-suite-svg .bar.blue { fill: #1665d8; stroke: none; }
.product-suite-svg .bar.teal { fill: #0f9f8f; stroke: none; }
.product-suite-svg .bar.amber { fill: #f3a712; stroke: none; }
.product-suite-svg .bar.green { fill: #22a06b; stroke: none; }

.product-suite-svg .suite-module rect {
  fill: rgba(255, 255, 255, 0.96);
}

.product-suite-svg .suite-module path {
  stroke: #1665d8;
}

.product-suite-svg .pharmacy path,
.product-suite-svg .retail path,
.product-suite-svg .accounts path {
  stroke: #0f9f8f;
}

.product-suite-svg text {
  fill: var(--navy);
  font: 800 16px "Inter", Arial, sans-serif;
}

.product-suite-svg .accounts text {
  font-size: 14px;
}

.operations-map .map-card rect,
.operations-map .map-core rect {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.4;
}

.operations-map .map-core rect {
  fill: #e7fff6;
  stroke: #9fe7dd;
}

.operations-map path {
  fill: none;
  stroke-linecap: round;
}

.operations-map .map-line {
  stroke: rgba(159, 243, 220, 0.86);
  stroke-width: 3;
  stroke-dasharray: 7 9;
  animation: flow-line 5s linear infinite;
}

.operations-map .map-card path,
.operations-map .map-core path {
  stroke: #7a91ad;
  stroke-width: 6;
}

.operations-map text {
  fill: var(--navy);
  font: 800 20px "Inter", Arial, sans-serif;
}

.dashboard-window {
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: rotate(-1deg);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.window-bar span:nth-child(2) {
  background: var(--teal);
}

.window-bar span:nth-child(3) {
  background: var(--blue);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.dash-panel {
  min-height: 142px;
  padding: 18px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid #e4ecf5;
}

.dash-panel.wide {
  grid-column: 1 / -1;
}

.dash-panel.success {
  background: #ecfbf4;
  border-color: #c8f0dc;
}

.dash-panel i {
  color: var(--blue);
  font-size: 25px;
}

.dash-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.dash-panel span {
  color: var(--muted);
  font-size: 13px;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 54px;
  margin-top: 16px;
}

.mini-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.mini-bars i:nth-child(1) { height: 42%; }
.mini-bars i:nth-child(2) { height: 78%; }
.mini-bars i:nth-child(3) { height: 58%; }
.mini-bars i:nth-child(4) { height: 90%; }

.section-band,
.split-section,
.accounts-section,
.cta-section {
  padding: 86px 0;
}

.section-band.muted {
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.88), rgba(255, 255, 255, 0.96)),
    var(--soft);
}

.section-intro {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-intro.compact {
  max-width: 680px;
}

.section-intro h2,
.section-band h2,
.split-section h2,
.accounts-panel h2,
.cta-panel h2 {
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.16;
  font-weight: 800;
}

.solution-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.workflow-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 32px;
}

.workflow-cards:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #b9cee6, transparent);
}

.workflow-card {
  position: relative;
  z-index: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid #d7e5f2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(23, 33, 51, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workflow-card:hover {
  transform: translateY(-7px);
  border-color: #9dc4eb;
  box-shadow: 0 28px 62px rgba(23, 33, 51, 0.13);
}

.workflow-card svg {
  width: 100%;
  max-width: 140px;
  height: 96px;
  margin-bottom: 4px;
}

.workflow-card strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.workflow-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.workflow-card .icon-bg,
.workflow-card .receipt-shape {
  fill: #eaf5ff;
  stroke: #b9d6f2;
  stroke-width: 2;
}

.workflow-card .icon-blue,
.workflow-card .icon-teal,
.workflow-card .icon-accent {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-card .icon-blue {
  stroke: #1665d8;
  stroke-width: 9;
}

.workflow-card .icon-blue.thin {
  stroke-width: 5;
}

.workflow-card .icon-teal {
  stroke: #0f9f8f;
  stroke-width: 9;
}

.workflow-card .icon-line {
  fill: #aac0d7;
}

.workflow-card .icon-line.soft {
  fill: #d4e1ee;
}

.workflow-card .icon-accent {
  fill: #d8ecff;
  stroke: #acd1f4;
  stroke-width: 2;
}

.workflow-card .stock-box {
  fill: #e9fff4;
  stroke: #9bdcbe;
  stroke-width: 3;
}

.solution-card {
  position: relative;
  min-height: 304px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(23, 33, 51, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.solution-card:after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: #bfd2e7;
  box-shadow: 0 26px 60px rgba(23, 33, 51, 0.12);
}

.solution-card:hover:after {
  opacity: 1;
}

.solution-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
}

.solution-card:nth-child(2) i { background: var(--teal); }
.solution-card:nth-child(3) i { background: var(--amber); }
.solution-card:nth-child(4) i { background: var(--green); }

.solution-card h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
}

.solution-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.split-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.86), rgba(255, 255, 255, 0)),
    #fff;
}

.split-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.section-svg,
.accounts-svg {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 26px 0 4px;
  overflow: visible;
}

.detailed-svg {
  filter: drop-shadow(0 16px 30px rgba(23, 33, 51, 0.08));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.detailed-svg:hover {
  transform: translateY(-5px) scale(1.01);
  filter: drop-shadow(0 22px 42px rgba(23, 33, 51, 0.13));
}

.detailed-svg .svg-bg {
  fill: #ffffff;
  stroke: #d7e5f2;
  stroke-width: 2;
}

.detailed-svg .svg-dark-bg {
  fill: #173250;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.detailed-svg .screen-panel,
.detailed-svg .pos-screen,
.detailed-svg .receipt,
.detailed-svg .report-card {
  fill: #f8fcff;
  stroke: #d7e5f2;
  stroke-width: 2;
}

.detailed-svg .calendar-head,
.detailed-svg .pay-button {
  fill: #1665d8;
}

.detailed-svg .avatar {
  fill: #e9f5ff;
  stroke: #1665d8;
  stroke-width: 4;
}

.detailed-svg .avatar-body,
.detailed-svg .medical-cross,
.detailed-svg .cart,
.detailed-svg .barcode,
.detailed-svg .receipt-cut,
.detailed-svg .chart-line,
.detailed-svg .bar {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detailed-svg .avatar-body,
.detailed-svg .medical-cross {
  stroke: #1665d8;
  stroke-width: 8;
}

.detailed-svg .ui-line {
  fill: #a9bdd2;
  stroke: #a9bdd2;
  stroke-width: 8;
}

.detailed-svg .ui-line.short {
  fill: #d0dde9;
}

.detailed-svg .calendar-dot {
  fill: #1665d8;
  animation: svg-pulse 2.8s ease-in-out infinite;
}

.detailed-svg .calendar-dot.teal,
.detailed-svg .chart-point.teal {
  fill: #0f9f8f;
}

.detailed-svg .calendar-dot.amber {
  fill: #f3a712;
}

.detailed-svg .receipt {
  fill: #fffdf7;
}

.detailed-svg .receipt-cut {
  stroke: #f3a712;
  stroke-width: 5;
}

.detailed-svg .barcode,
.detailed-svg .cart {
  stroke: #0d2b4c;
  stroke-width: 8;
}

.detailed-svg .wheel {
  fill: #1665d8;
}

.detailed-svg .chart-line {
  stroke: #9ff3dc;
  stroke-width: 7;
}

.detailed-svg .chart-point {
  fill: #9ff3dc;
}

.detailed-svg .bar {
  stroke-width: 12;
  animation: bar-grow 2.8s ease-in-out infinite;
  transform-origin: bottom;
}

.detailed-svg .bar.blue { stroke: #1665d8; }
.detailed-svg .bar.teal { stroke: #0f9f8f; }
.detailed-svg .bar.amber { stroke: #f3a712; }
.detailed-svg .bar.green { stroke: #22a06b; }

.section-svg:not(.detailed-svg) rect,
.accounts-svg:not(.detailed-svg) rect {
  fill: #f8fcff;
  stroke: #d6e4f2;
  stroke-width: 2;
}

.section-svg:not(.detailed-svg) path,
.accounts-svg:not(.detailed-svg) path {
  fill: none;
  stroke: #1665d8;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clinic-svg path:nth-of-type(2),
.retail-svg path:nth-of-type(2),
.accounts-svg path:nth-of-type(2) {
  stroke: var(--teal);
}

.retail-svg path:nth-of-type(3) {
  stroke: var(--amber);
}

.feature-tags span {
  padding: 8px 12px;
  border: 1px solid #cfe0f5;
  border-radius: 8px;
  color: #23405d;
  background: #f7fbff;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.feature-tags span:hover {
  transform: translateY(-2px);
  border-color: #9dc4eb;
  background: #eef7ff;
}

.module-list {
  display: grid;
  gap: 14px;
}

.module-list div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(23, 33, 51, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-list div:hover {
  transform: translateX(5px);
  border-color: #bfd2e7;
  box-shadow: 0 18px 42px rgba(23, 33, 51, 0.1);
}

.module-list i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.module-list strong {
  color: var(--ink);
  font-size: 17px;
}

.module-list span {
  color: var(--muted);
}

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

.capability-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  color: #26384c;
  box-shadow: 0 12px 30px rgba(23, 33, 51, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.capability-grid div:hover {
  transform: translateY(-4px);
  border-color: #b9d5ee;
  box-shadow: 0 20px 46px rgba(23, 33, 51, 0.1);
}

.capability-grid i {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 22px;
}

.accounts-section {
  background: #0f2238;
}

.accounts-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 101, 216, 0.2), rgba(34, 160, 107, 0.14)),
    #132b45;
}

.accounts-panel:after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 360px;
  height: 220px;
  border: 1px solid rgba(159, 243, 220, 0.34);
  transform: rotate(-14deg);
}

.accounts-panel > * {
  position: relative;
  z-index: 1;
}

.accounts-panel h2,
.accounts-panel p {
  color: #fff;
}

.accounts-panel p {
  color: rgba(255, 255, 255, 0.76);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.check-list li:before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  color: #9ff3dc;
  font-family: FontAwesome;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(22, 101, 216, 0.98), rgba(15, 159, 143, 0.96)),
    var(--blue);
}

.cta-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px);
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel {
  position: relative;
  z-index: 1;
}

@keyframes flow-line {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes loader-lift {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-progress {
  0% {
    transform: translateX(-110%);
  }
  55% {
    transform: translateX(70%);
  }
  100% {
    transform: translateX(250%);
  }
}

@keyframes svg-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes bar-grow {
  0%,
  100% {
    transform: scaleY(0.9);
  }
  50% {
    transform: scaleY(1.08);
  }
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  70% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .operations-map .map-line,
  .detailed-svg .calendar-dot,
  .detailed-svg .bar,
  .loader-card,
  .loader-orbit,
  .loader-progress span,
  .whatsapp-fab:before {
    animation: none;
  }

  .solution-card,
  .module-list div,
  .capability-grid div,
  .workflow-card,
  .feature-tags span,
  .reveal-item {
    transition: none;
  }
}

.site-footer {
  padding: 58px 0 24px;
  background: #081827;
}

.footer-grid {
  grid-template-columns: 1.5fr 0.8fr 1fr;
  align-items: start;
  gap: 36px;
}

.footer-logo {
  width: 145px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 134px 0 76px;
  background:
    linear-gradient(120deg, rgba(13, 43, 76, 0.9), rgba(15, 159, 143, 0.72)),
    url("../images/photos/aboutus.jpg") center/cover;
}

.inner-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero.contact-hero {
  background:
    linear-gradient(120deg, rgba(13, 43, 76, 0.9), rgba(22, 101, 216, 0.7)),
    url("../images/photos/contact.jpg") center/cover;
}

.inner-hero h1 {
  max-width: 820px;
  margin: 12px 0 16px;
  color: #fff;
  font-size: 54px;
  line-height: 1.06;
  font-weight: 800;
}

.inner-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(23, 33, 51, 0.12);
}

.image-panel img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.value-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-grid div,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 33, 51, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.value-grid div:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: #b9d5ee;
  box-shadow: 0 22px 50px rgba(23, 33, 51, 0.11);
}

.value-grid strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.value-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.map-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23, 33, 51, 0.07);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 300px;
  padding: 10px;
}

.map-copy h2 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  min-height: 340px;
  border-radius: 8px;
  border: 1px solid #d4e2f0;
  background: #eef5fb;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.contact-card i {
  color: var(--blue);
  font-size: 30px;
}

.contact-card h2 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.contact-card a {
  color: var(--blue);
  font-weight: 700;
}

.muted-contact {
  background: var(--soft);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.plain-list li {
  position: relative;
  padding-left: 26px;
  color: #31445a;
  font-weight: 700;
}

.plain-list li:before {
  content: "\f105";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-family: FontAwesome;
}

.contact-form-modern {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23, 33, 51, 0.07);
}

.contact-form-modern:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
}

.contact-form-modern label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-form-modern span {
  color: #31445a;
  font-weight: 800;
  font-size: 14px;
}

.contact-form-modern input,
.contact-form-modern textarea {
  width: 100%;
  border: 1px solid #cfdbe8;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  outline: 3px solid rgba(22, 101, 216, 0.14);
  border-color: var(--blue);
}

@media (max-width: 1199px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .site-nav {
    min-height: 70px;
  }

  .nav-trigger {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
  }

.nav-trigger span,
.nav-trigger span:before,
.nav-trigger span:after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  overflow: hidden;
}

  .nav-trigger span:before {
    transform: translateY(-7px);
  }

  .nav-trigger span:after {
    transform: translateY(5px);
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(23, 33, 51, 0.12);
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-toggle:checked ~ .nav-links {
    display: grid;
    gap: 4px;
  }

  .hero {
    padding: 108px 0 64px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .accounts-panel,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-grid.reverse > div:last-child {
    order: 1;
  }

  .split-grid.reverse .module-list {
    order: 2;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

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

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

  .workflow-cards:before {
    display: none;
  }

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

  .map-panel {
    grid-template-columns: 1fr;
  }

  .map-copy {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .brand img {
    width: 132px;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    width: 50px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    padding: 96px 0 52px;
  }

  .hero-visual {
    min-height: auto;
    width: 100%;
  }

  .product-suite-svg {
    position: relative;
    display: block;
    width: min(100%, 430px);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 22px;
  }

  .product-suite-svg .suite-module text {
    display: none;
  }

  .product-suite-svg .suite-module > rect {
    width: 92px;
  }

  .dashboard-window {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .hero-copy h1,
  .inner-hero h1,
  .section-intro h2,
  .section-band h2,
  .split-section h2,
  .accounts-panel h2,
  .cta-panel h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-metrics,
  .solution-grid,
  .capability-grid,
  .value-grid,
  .workflow-cards,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: 0;
  }

  .workflow-card svg {
    max-width: 118px;
  }

  .dash-panel.wide {
    grid-column: auto;
  }

  .section-band,
  .split-section,
  .accounts-section,
  .cta-section {
    overflow: hidden;
    padding: 58px 0;
  }

  .accounts-panel {
    padding: 26px;
  }

  .module-list div {
    grid-template-columns: 42px minmax(0, 1fr);
    row-gap: 10px;
  }

  .module-list i {
    grid-row: span 2;
  }

  .module-list div:hover {
    transform: translateY(-3px);
  }
}
