.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-visual {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, #fbfdff, #edf4ff);
  box-shadow: 0 35px 100px rgba(37, 99, 235, 0.09);
  overflow: hidden;
  position: relative;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  pointer-events: none;
}
.visual-header,
.visual-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.visual-kicker {
  font-weight: 800;
  color: var(--text);
}
.visual-status {
  color: var(--muted);
  letter-spacing: 0;
}
.visual-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34b77a;
  margin-right: 7px;
}
.visual-body {
  position: relative;
  padding: 38px 34px;
}
.visual-intro {
  max-width: 470px;
}
.visual-index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.visual-intro h2 {
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 12px 0 14px;
}
.visual-intro p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.visual-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 40px;
}
.visual-service-grid a {
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  column-gap: 10px;
  align-items: center;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.visual-service-grid a:hover {
  transform: translateY(-3px);
  border-color: #a8c8ed;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}
.visual-service-grid span {
  grid-row: span 2;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  align-self: start;
}
.visual-service-grid strong {
  font-size: 13px;
}
.visual-service-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.visual-service-grid b {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--blue);
  font-size: 18px;
  text-align: right;
}
.visual-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 620px) {
  .hero-visual {
    min-height: auto;
  }
  .visual-header,
  .visual-footer {
    padding: 18px;
  }
  .visual-body {
    padding: 28px 20px;
  }
  .visual-service-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .visual-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
/* Accessible page content and enquiry form */
.content-section,
.contact-section,
.legal-content {
  padding-top: 30px;
}
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.content-grid h2,
.contact-grid h2 {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  margin: 12px 0;
}
.content-grid p,
.contact-grid p,
.legal-content p {
  color: var(--muted);
  font-size: 17px;
}
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.narrow {
  max-width: 820px;
}
.legal-content h2 {
  font-size: 28px;
  margin-top: 38px;
}
.legal-content a {
  color: var(--blue);
  font-weight: 700;
}
.contact-form {
  display: grid;
  gap: 9px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.07);
}
.contact-form label {
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
}
.contact-form label span,
.form-note {
  font-weight: 400;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #b9cee6;
  border-radius: 10px;
  padding: 12px 13px;
  background: #fbfdff;
  color: var(--text);
  font: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.btn:focus,
.menu-toggle:focus,
a:focus {
  outline: 3px solid rgba(14, 165, 233, 0.45);
  outline-offset: 3px;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 400;
  margin: 8px 0;
}
.contact-form .consent input {
  width: auto;
  margin-top: 5px;
}
.form-note {
  font-size: 12px !important;
  margin: 0;
}
.btn {
  cursor: pointer;
}
.modal[aria-hidden="true"] {
  display: none;
}
@media (max-width: 760px) {
  .content-grid,
  .contact-grid,
  .cards3 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-form {
    padding: 20px;
  }
  .content-section,
  .contact-section,
  .legal-content {
    padding-top: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:root {
  --bg: #f4f8ff;
  --panel: #ffffff;
  --panel2: #edf5ff;
  --line: #d9e6f5;
  --text: #0e1829;
  --muted: #4a5d76;
  --cyan: #0ea5e9;
  --blue: #2563eb;
  --violet: #6d5efc;
  --grad: linear-gradient(100deg, var(--cyan), var(--blue) 62%, var(--violet));
  --max: 1480px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(
      circle at 86% 8%,
      rgba(14, 165, 233, 0.12) 0,
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(109, 94, 252, 0.12) 0,
      transparent 28%
    ),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
.wrap {
  width: min(var(--max), calc(100% - 42px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.navin {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.logo {
  width: auto;
  max-width: 36vw;
}
.links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}
.links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}
.pill,
.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  color: var(--text);
}
.btn.primary {
  background: var(--grad);
  color: #f6fbff;
  border: 0;
  font-weight: 800;
}
.hero {
  padding: 110px 0 80px;
  min-height: 690px;
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.kicker {
  color: var(--cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero h1,
.big {
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 15px 0 24px;
}
.gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  color: var(--muted);
  font-size: 20px;
  max-width: 720px;
}
.hero-ui {
  height: 480px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, #f9fbff, #edf5ff);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.08);
}
.hero-ui:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #12f4e8,
    #1686ff 40%,
    #5c45ff 65%,
    transparent 70%
  );
  filter: blur(2px);
  right: 50px;
  top: 55px;
  box-shadow: 0 0 80px #0fdfff55;
}
.mini {
  position: absolute;
  background: #071429dd;
  border: 1px solid #1e4b78;
  border-radius: 18px;
  padding: 18px;
  z-index: 2;
}
.m1 {
  left: 30px;
  top: 35px;
}
.m2 {
  right: 25px;
  bottom: 32px;
}
.section {
  padding: 100px 0;
}
.headrow {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}
.headrow h2 {
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
}
.headrow p {
  font-size: 19px;
  color: var(--muted);
}
.cards4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(145deg, #ffffff, #edf5ff);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  transition: 0.25s;
  min-width: 0;
}
.card:hover,
.card.active {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.08);
}
.icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  border: 1px solid #cfe5ff;
  background: #edf6ff;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 25px;
  margin-bottom: 48px;
}
.num {
  float: right;
  color: #7a8ea7;
}
.card h3 {
  font-size: 25px;
  margin: 0 0 12px;
}
.card p {
  color: var(--muted);
}
.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 22px;
}
.board {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.boardtop {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  font-weight: 800;
}
.scan {
  color: var(--cyan);
  font-size: 13px;
}
.scanline {
  position: absolute;
  top: 70px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    transparent,
    var(--cyan),
    var(--blue),
    transparent
  );
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
  animation: scan 6s linear infinite;
}
@keyframes scan {
  0% {
    left: 8%;
  }
  50% {
    left: 90%;
  }
  100% {
    left: 8%;
  }
}
.boardgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.subpanel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
  min-height: 230px;
}
.score {
  font-size: 52px;
  font-weight: 800;
}
.bars {
  height: 90px;
  display: flex;
  align-items: end;
  gap: 10px;
}
.bars i {
  display: block;
  flex: 1;
  background: var(--grad);
  border-radius: 5px 5px 0 0;
}
.activity {
  display: grid;
  gap: 12px;
}
.activity div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--text);
}
.map {
  grid-column: 1/-1;
  position: relative;
  min-height: 300px;
}
.node {
  position: absolute;
  border: 1px solid #d8e7ff;
  border-radius: 18px;
  padding: 18px;
  background: #f8fbff;
  color: var(--text);
}
.web {
  left: 8%;
  top: 35%;
}
.data {
  left: 47%;
  top: 25%;
}
.cloud {
  right: 7%;
  top: 33%;
}
.crm {
  left: 27%;
  bottom: 18%;
}
.admin {
  right: 28%;
  bottom: 14%;
}
.hot {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--cyan);
  font-size: 25px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(14, 165, 233, 0.35);
}
.hot.active {
  background: var(--blue);
  outline: 2px solid var(--cyan);
}
.h-web {
  left: 20%;
  top: 12%;
}
.h-ai {
  left: 51%;
  top: 7%;
}
.h-it {
  right: 11%;
  bottom: 22%;
}
.h-soft {
  left: 17%;
  bottom: 17%;
}
.opportunity {
  display: flex;
  flex-direction: column;
  min-height: 680px;
}
.opportunity .icon {
  margin: 18px 0 28px;
}
.opportunity h3 {
  font-size: 39px;
  line-height: 1.05;
}
.ticks {
  padding: 0;
  list-style: none;
  color: #50667d;
}
.ticks li {
  margin: 10px 0;
}
.ticks li:before {
  content: "✓";
  color: var(--cyan);
  margin-right: 12px;
}
.opportunity .btn {
  margin-top: auto;
  justify-content: space-between;
}
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service {
  min-height: 300px;
}
.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.area-panel {
  padding: 38px;
}
.towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.town {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.town:hover {
  border-color: var(--cyan);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.project-logo {
  height: 72px;
  max-width: 260px;
  object-fit: contain;
  object-position: left;
}
.project {
  min-height: 330px;
}
.footer {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  color: #5f738b;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 10, 0.55);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 20px;
}
.modal.open {
  display: grid;
}
.modalbox {
  width: min(720px, 100%);
  background: #f9fbff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
}
.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.choices a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  text-decoration: none;
  background: var(--panel);
}
.jarvis-btn {
  position: fixed;
  right: 25px;
  bottom: 24px;
  z-index: 60;
  background: var(--grad);
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 900;
  cursor: pointer;
}
.jarvis {
  position: fixed;
  right: 25px;
  bottom: 88px;
  width: 360px;
  max-width: calc(100% - 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  z-index: 61;
  display: none;
}
.jarvis.open {
  display: block;
}
.chatlog {
  height: 250px;
  overflow: auto;
  color: var(--text);
}
.jarvis form {
  display: flex;
  gap: 8px;
}
.jarvis input {
  flex: 1;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 13px;
}
.jarvis button {
  border: 0;
  border-radius: 50%;
  width: 44px;
  background: var(--blue);
  color: white;
}
.pagehero {
  padding: 100px 0 65px;
}
.pagehero h1 {
  font-size: clamp(55px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 1000px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.content-grid .card {
  min-height: 240px;
}
@media (max-width: 1000px) {
  .links {
    display: none;
  }
  .logo {
    max-width: 70vw;
  }
  .hero-grid,
  .headrow,
  .analysis-grid,
  .areas,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .cards4,
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .hero-ui {
    height: 390px;
  }
  .opportunity {
    min-height: auto;
  }
  .opportunity .btn {
    margin-top: 30px;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }
  .hero {
    padding-top: 65px;
  }
  .hero h1,
  .big {
    font-size: 52px;
  }
  .cards4,
  .services,
  .towns,
  .project-grid,
  .choices,
  .boardgrid {
    grid-template-columns: 1fr;
  }
  .map {
    grid-column: auto;
    min-height: 380px;
  }
  .board {
    padding: 16px;
  }
  .hero-ui {
    height: 330px;
  }
  .logo {
    width: 240px;
  }
  .section {
    padding: 70px 0;
  }
  .headrow {
    gap: 15px;
  }
  .headrow h2 {
    font-size: 50px;
  }
}

/* ===== V4 refinement layer ===== */
body {
  background:
    radial-gradient(
      circle at 88% 0%,
      rgba(37, 99, 235, 0.12) 0,
      transparent 31%
    ),
    radial-gradient(
      circle at 8% 78%,
      rgba(109, 94, 252, 0.12) 0,
      transparent 27%
    ),
    #f4f8ff;
}
.nav {
  background: rgba(255, 255, 255, 0.9);
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo,
.footer-logo {
  mix-blend-mode: normal;
  filter: none;
  object-fit: contain;
}
.logo {
  width: 600px;
  height: 118px;
  object-position: left center;
}
.footer-logo {
  width: 260px;
  height: 64px;
  object-position: left center;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 23px;
}
.hero {
  padding: 88px 0 86px;
  min-height: 720px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 45px;
  color: #5f738b;
  font-size: 13px;
}
.trust-row span {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.trust-row span:last-child {
  border-right: 0;
}
.trust-row b {
  display: block;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 2px;
}
.hero-console {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, #f7fbff, #edf4ff);
  box-shadow:
    0 35px 100px rgba(37, 99, 235, 0.08),
    0 0 80px rgba(14, 165, 233, 0.08);
  overflow: hidden;
  position: relative;
}
.hero-console:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 49.8%,
    rgba(14, 165, 233, 0.06) 50%,
    transparent 50.2%
  );
  background-size: 66px 100%;
  pointer-events: none;
}
.console-top {
  height: 66px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.console-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
  margin-right: 9px;
}
.console-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 454px;
}
.console-main {
  padding: 27px;
  border-right: 1px solid var(--line);
}
.metric-label {
  color: #647a94;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.13em;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.metric-row > div {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px;
  background: var(--panel);
}
.metric-row strong {
  display: block;
  font-size: 26px;
  color: var(--text);
}
.metric-row span {
  font-size: 11px;
  color: var(--muted);
}
.chart-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: var(--panel2);
}
.chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #56708d;
}
.chart-card svg {
  width: 100%;
  margin-top: 12px;
}
.gridline {
  stroke: #dfeaf9;
  stroke-width: 1;
}
.area {
  fill: rgba(37, 99, 235, 0.08);
}
.linepath {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 4;
  filter: drop-shadow(0 0 7px rgba(14, 165, 233, 0.25));
}
.console-side {
  padding: 27px;
  position: relative;
}
.side-title {
  font-weight: 800;
  margin-bottom: 18px;
}
.live-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: #425974;
}
.live-item i {
  width: 28px;
  height: 28px;
  border: 1px solid #bcd7ff;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-style: normal;
}
.live-item b {
  font-size: 10px;
  color: var(--cyan);
}
.system-orbit {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 210px;
  height: 150px;
  border: 1px dashed #214a7a;
  border-radius: 50%;
}
.orbit-core,
.orbit-node {
  position: absolute;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.orbit-core {
  width: 54px;
  height: 54px;
  left: 78px;
  top: 48px;
  background: var(--grad);
  color: #001019;
  font-weight: 900;
  box-shadow: 0 0 35px #18a8ff66;
}
.orbit-node {
  width: 38px;
  height: 38px;
  background: #071a33;
  border: 1px solid #1b6693;
  font-size: 9px;
  color: #bfeef5;
}
.n1 {
  left: -12px;
  top: 52px;
}
.n2 {
  right: -10px;
  top: 50px;
}
.n3 {
  left: 45px;
  bottom: -12px;
}
.n4 {
  right: 40px;
  top: -12px;
}
.compact {
  padding-top: 72px;
  padding-bottom: 72px;
}
.feature-card {
  cursor: pointer;
  min-height: 330px;
}
.feature-card .icon {
  margin-bottom: 58px;
}
.service-showcase {
  gap: 15px;
}
.rich-service {
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.service-top .icon {
  margin-bottom: 35px;
}
.service-price {
  border: 1px solid var(--line);
  background: var(--panel2);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  color: var(--muted);
}
.mini-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 25px;
  color: var(--text);
}
.mini-list li {
  margin: 8px 0;
  font-size: 13px;
}
.mini-list li:before {
  content: "✓";
  color: var(--cyan);
  margin-right: 9px;
}
.service-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}
.pricing-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 18px;
}
.scanner-project {
  position: relative;
  overflow: hidden;
}
.scanner-project:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(35px);
  right: -70px;
  bottom: -100px;
}
.scanner-mark {
  width: 82px;
  height: 82px;
  border: 1px solid #bfe3ff;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 42px;
  color: var(--cyan);
  box-shadow:
    inset 0 0 25px rgba(37, 99, 235, 0.1),
    0 0 35px rgba(14, 165, 233, 0.08);
  margin-bottom: 35px;
}
.project-tag {
  color: #5f738b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  margin: 10px 0;
}
.final-cta {
  padding-top: 45px;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 48px;
  background: linear-gradient(110deg, #f9fbff, #edf5ff 58%, #eff6ff);
}
.cta-panel h2 {
  font-size: clamp(38px, 4vw, 65px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 12px 0;
}
.cta-panel p {
  max-width: 720px;
  color: var(--muted);
}
.footer {
  padding-bottom: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-grid > div:first-child > p:first-of-type {
    margin-left: 60px;
}
.footer-grid p,
.footer-grid a {
  color: #5f738b;
  text-decoration: none;
  font-size: 13px;
}
.footer-grid b {
  margin-bottom: 7px;
  color: var(--text);
}
.copyright {
  border-top: 1px solid #132d4e;
  margin-top: 35px;
  padding-top: 22px;
  font-size: 12px;
  color: #7186a4;
}
/* service pages */
.service-hero {
  padding-top: 100px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.service-hero-panel {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(145deg, #f8fbff, #edf5ff);
  position: relative;
  overflow: hidden;
}
.service-hero-panel:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -80px;
  bottom: -90px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.15),
    rgba(37, 99, 235, 0.08) 45%,
    transparent 70%
  );
}
.panel-badge {
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--blue);
}
.service-signal {
  height: 140px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 25px 0;
}
.service-signal i {
  flex: 1;
  max-width: 34px;
  background: var(--grad);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}
.service-signal i:nth-child(1) {
  height: 30%;
}
.service-signal i:nth-child(2) {
  height: 52%;
}
.service-signal i:nth-child(3) {
  height: 45%;
}
.service-signal i:nth-child(4) {
  height: 78%;
}
.service-signal i:nth-child(5) {
  height: 92%;
}
.service-hero-panel h3 {
  font-size: 29px;
  margin: 0 0 9px;
}
.service-hero-panel p {
  color: var(--muted);
  max-width: 420px;
}
.panel-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.panel-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 11px;
}
.intro-section {
  padding-top: 55px;
  padding-bottom: 60px;
}
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.split-intro h2,
.section-heading h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 12px 0;
}
.split-intro > p {
  color: #b2c1d5;
  font-size: 19px;
}
.section-heading {
  margin-bottom: 42px;
}
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.deliver-card {
  min-height: 285px;
}
.small-icon {
  width: 45px;
  height: 45px;
  font-size: 17px;
  margin-bottom: 38px;
}
.pricing-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(37, 99, 235, 0.04),
    transparent
  );
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(145deg, #ffffff, #edf5ff);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.price-head strong {
  display: block;
  font-size: 38px;
  margin: 8px 0 18px;
}
.price-name {
  color: var(--blue);
  font-weight: 800;
}
.price-card > p {
  color: var(--muted);
  min-height: 72px;
}
.price-card .ticks {
  min-height: 210px;
}
.price-card .btn {
  margin-top: auto;
  justify-content: center;
}
.price-card {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.price-card:hover,
.price-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--service-accent, var(--blue));
  box-shadow: 0 18px 42px var(--service-soft, rgba(37, 99, 235, 0.11));
}
.price-card .btn:hover,
.price-card .btn:focus-visible {
  border-color: transparent;
  background: linear-gradient(
    110deg,
    var(--service-accent, var(--blue)),
    var(--service-accent-2, var(--violet))
  );
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 26px 26px 20px;
  border-left: 1px solid var(--line);
}
.process-step:first-child {
  border-left: 0;
  padding-left: 0;
}
.process-step span {
  color: var(--cyan);
  font-size: 12px;
}
.process-step h3 {
  font-size: 22px;
  margin: 28px 0 8px;
}
.process-step p {
  color: #91a5c0;
  font-size: 14px;
}
@media (max-width: 1000px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .navin {
    position: relative;
  }
  .links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.08);
  }
  .links.open {
    display: flex;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.08);
  }
  .links a {
    padding: 11px 12px;
  }
  .links .btn {
    justify-content: center;
    margin-top: 5px;
  }
  .hero-grid,
  .service-hero-grid,
  .split-intro {
    grid-template-columns: 1fr;
  }
  .hero-console {
    min-height: 500px;
  }
  .deliver-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .process-step {
    border: 1px solid var(--line) !important;
    border-radius: 18px;
    padding: 24px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .logo {
    width: 235px !important;
    height: auto !important;
  }
  .hero {
    padding-top: 52px;
  }
  .hero-console {
    min-height: auto;
  }
  .console-grid {
    grid-template-columns: 1fr;
  }
  .console-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .console-side {
    min-height: 365px;
  }
  .metric-row {
    grid-template-columns: 1fr;
  }
  .trust-row {
    gap: 14px;
  }
  .trust-row span {
    width: calc(50% - 8px);
    border-right: 0;
    padding-right: 0;
  }
  .rich-service {
    min-height: auto;
  }
  .deliver-grid,
  .pricing-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    padding: 30px;
  }
  .service-hero-panel {
    min-height: 330px;
  }
  .price-card > p,
  .price-card .ticks {
    min-height: auto;
  }
  .footer-logo {
    width: 235px;
  }
}
@media (min-width: 621px) {
  .logo {
    width: 400px;
  }
}
@media (min-width: 621px) {
  .logo {
    transform: scale(1.5);
    transform-origin: left center;
  }
}
@media (max-width: 620px) {
  .logo {
    width: 300px;
    transform: scale(1.2);
    transform-origin: left center;
  }
}
.modal-open {
  overflow: hidden;
}
.modal-close {
  float: right;
}
.contact-form button:disabled,
.jarvis button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.gradient {
  background-clip: text;
}
.visual-service-grid a:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.hot:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.55);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.footer-contact {
  font-size: 13px;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--blue);
}
.process-section {
  background: rgba(255, 255, 255, 0.35);
}
.service-selector {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}
.service-selector h3 {
  font-size: 24px;
  line-height: 1.15;
  margin: 8px 0 0;
}
.selector-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.selector-options button {
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.selector-options button:hover,
.selector-options button.selected {
  border-color: var(--blue);
  background: #f2f7ff;
  transform: translateY(-2px);
}
.selector-result {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  min-height: 22px;
}
.selector-result a {
  color: var(--blue);
  font-weight: 800;
}
.process-grid {
  position: relative;
}
.process-grid:before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  opacity: 0.25;
}
.process-step {
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.process-step > span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #a8c8ed;
  border-radius: 50%;
  background: var(--panel);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.links a[aria-current="location"] {
  color: var(--text);
  font-weight: 800;
}
.links a[aria-current="location"]:after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 5px;
  background: var(--blue);
  border-radius: 2px;
}
@media (max-width: 760px) {
  .service-selector {
    grid-template-columns: 1fr;
  }
  .selector-result {
    grid-column: auto;
  }
  .process-grid:before {
    display: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.nav {
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(30, 65, 110, 0.08);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: var(--grad);
  pointer-events: none;
  transition: width 0.12s linear;
}
.process-step,
.feature-card,
.rich-service,
.project,
.area-panel {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.process-step:hover,
.feature-card:hover,
.rich-service:hover,
.project:hover,
.area-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.09);
}
.legacy-board {
  display: none;
}
.analysis-grid {
  grid-template-columns: 1fr 390px;
}
.analysis-summary {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fbfdff, #edf4ff);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.07);
}
.summary-top,
.summary-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.summary-label {
  font-weight: 800;
}
.summary-status,
.summary-bottom {
  color: var(--muted);
  letter-spacing: 0;
}
.summary-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34b77a;
  margin-right: 7px;
}
.summary-content {
  padding: 34px 30px;
}
.summary-score span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.summary-score strong {
  display: block;
  max-width: 440px;
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.summary-score p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.summary-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 34px;
}
.summary-signal {
  min-height: 96px;
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 10px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.summary-signal:hover,
.summary-signal.active {
  border-color: #91b9e8;
  background: #fff;
  transform: translateY(-3px);
}
.summary-signal span {
  grid-row: span 2;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.summary-signal strong {
  font-size: 13px;
}
.summary-signal small {
  color: var(--muted);
  font-size: 11px;
}
.summary-bottom {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

@media (max-width: 620px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }
  .navin {
    height: 72px;
    gap: 12px;
  }
  .brand {
    max-width: calc(100% - 58px);
  }
  .logo {
    max-width: 100%;
    height: 46px;
  }
  .links {
    left: 14px;
    right: 14px;
    top: 66px;
    padding: 12px;
  }
  .hero h1,
  .big {
    font-size: clamp(42px, 13vw, 66px);
    line-height: 0.98;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .trust-row {
    margin-top: 32px;
  }
  .trust-row span {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }
  .visual-header {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .visual-status {
    font-size: 10px;
  }
  .visual-intro h2 {
    font-size: 30px;
  }
  .visual-service-grid a {
    min-height: 64px;
  }
  .section {
    padding: 72px 0;
  }
  .headrow {
    gap: 18px;
    margin-bottom: 30px;
  }
  .headrow h2 {
    font-size: 40px;
  }
  .area-panel {
    padding: 24px;
  }
  .towns {
    grid-template-columns: 1fr;
  }
  .jarvis {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: 14px;
  }
  .footer-grid {
    gap: 30px;
  }
  .area-detail {
    padding-top: 20px;
  }
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.analysis-summary {
  min-width: 0;
}
.summary-signal:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.55);
  outline-offset: 3px;
}
@media (max-width: 760px) {
  .analysis-grid {
    grid-template-columns: 1fr;
  }
  .summary-content {
    padding: 28px 22px;
  }
  .summary-top,
  .summary-bottom {
    padding: 17px 20px;
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }
  .summary-signals {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
  .summary-signal {
    min-height: 72px;
  }
  .opportunity {
    min-width: 0;
  }
}
@media (max-width: 1000px) {
  .navin {
    height: 76px;
  }
  .links {
    top: 88px;
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    padding: 18px;
    background: #fff;
    border: 1px solid #cddcf0;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(14, 24, 41, 0.18);
  }
  .links.open {
    display: flex;
  }
  .links a {
    padding: 14px 12px;
    border-bottom: 1px solid #edf2f8;
    font-size: 16px;
  }
  .links a:last-child {
    border-bottom: 0;
  }
  .links .btn {
    margin-top: 8px;
    padding: 14px 18px;
    border-bottom: 0;
  }
  .menu-toggle {
    position: relative;
    z-index: 2;
    background: #fff;
  }
  .nav:has(.links.open) {
    box-shadow: 0 8px 24px rgba(14, 24, 41, 0.1);
  }
}
@media (max-width: 1000px) {
  .links.open {
    position: fixed;
    top: 92px;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-height: none;
    padding: 26px 22px;
    background: #0e1829;
    border: 1px solid #263c59;
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(14, 24, 41, 0.32);
    gap: 2px;
  }
  .links.open a {
    color: #f7fbff;
    border-bottom-color: #263c59;
    font-size: 17px;
  }
  .links.open a:hover,
  .links.open a[aria-current] {
    color: #8fe8ff;
  }
  .links.open .btn.primary {
    margin-top: 14px;
    justify-content: center;
    background: linear-gradient(100deg, #0ea5e9, #6d5efc);
    border: 0;
    color: #fff;
  }
  .links.open:before {
    content: "MENU";
    display: block;
    margin: 0 12px 14px;
    color: #8fe8ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
  }
  .nav:has(.links.open):after {
    content: "";
    position: fixed;
    inset: 76px 0 0;
    background: rgba(14, 24, 41, 0.22);
    z-index: -1;
    pointer-events: none;
  }
}
@media (max-width: 1000px) {
  .links.open {
    display: flex !important;
    flex-direction: column !important;
    height: calc(100vh - 108px) !important;
    max-height: calc(100vh - 108px) !important;
    overflow-y: auto !important;
  }
  .links.open a {
    display: block !important;
    flex: 0 0 auto !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .links.open:before {
    flex: 0 0 auto !important;
  }
}
@media (max-width: 1000px) {
  .links.open {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--line);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.14);
  }
  .links.open a {
    color: var(--muted);
    border-bottom-color: var(--line);
  }
  .links.open a:hover,
  .links.open a[aria-current] {
    color: var(--blue);
  }
  .links.open .btn.primary {
    background: var(--grad);
    color: #fff;
  }
  .links.open:before {
    color: var(--blue);
  }
}

/* ===== Professional visual polish ===== */
:root {
  --bg: #f7f9fc;
  --panel: #fff;
  --panel2: #f1f6fc;
  --line: #dce5f0;
  --text: #101a2b;
  --muted: #506176;
  --max: 1320px;
}
body {
  background:
    radial-gradient(
      circle at 88% 2%,
      rgba(14, 165, 233, 0.08),
      transparent 27%
    ),
    linear-gradient(180deg, #f8fbff 0, #f7f9fc 38%, #fff 100%);
  letter-spacing: -0.005em;
}
.nav.nav {
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: rgba(185, 206, 230, 0.55);
}
.nav.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 35px rgba(20, 48, 86, 0.08);
}
.section {
  padding-block: clamp(72px, 8vw, 112px);
}
.section:nth-of-type(even) {
  background: rgba(240, 246, 253, 0.42);
  border-block: 1px solid rgba(217, 230, 245, 0.55);
}
.headrow {
  margin-bottom: clamp(34px, 4vw, 54px);
}
.headrow h2 {
  max-width: 920px;
  text-wrap: balance;
}
.headrow p,
.lead {
  max-width: 650px;
  line-height: 1.7;
}
.card,
.contact-form,
.service-hero-panel,
.analysis-summary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(200, 216, 234, 0.85);
  box-shadow: 0 8px 28px rgba(26, 56, 96, 0.045);
}
.card {
  border-radius: 22px;
}
.card:hover,
.card.active {
  border-color: #9fc7ed;
  box-shadow: 0 20px 45px rgba(26, 72, 130, 0.1);
}
.btn {
  min-height: 46px;
  justify-content: center;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: #a9c8e8;
  box-shadow: 0 10px 24px rgba(27, 70, 126, 0.1);
}
.btn.primary {
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}
.kicker {
  font-weight: 800;
  letter-spacing: 0.15em;
}
.icon {
  margin-bottom: 34px;
  border-radius: 15px;
  background: linear-gradient(145deg, #f4f9ff, #e9f3ff);
}
.hero {
  padding-block: clamp(72px, 8vw, 108px);
}
.hero-visual {
  border-radius: 24px;
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.08);
}
.rich-service {
  border-top: 3px solid transparent;
}
.rich-service:nth-child(1) {
  border-top-color: #0ea5e9;
}
.rich-service:nth-child(2) {
  border-top-color: #2563eb;
}
.rich-service:nth-child(3) {
  border-top-color: #6d5efc;
}
.rich-service:nth-child(4) {
  border-top-color: #34a57a;
}
.town {
  border-radius: 12px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.town:hover {
  transform: translateY(-2px);
  background: #f8fbff;
  border-color: #9fc7ed;
}
.cta-panel {
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), #edf5ff);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.07);
}
/* Hero: spacious, confident and easier to scan */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(48px, 6vw, 90px);
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(52px, 6.3vw, 92px);
  line-height: 0.98;
}
.hero-copy .lead {
  font-size: clamp(17px, 1.45vw, 20px);
}
.hero-visual {
  min-height: 490px;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.95),
    rgba(235, 244, 255, 0.88)
  );
}
.visual-body {
  padding: 34px;
}
.visual-service-grid {
  margin-top: 30px;
}
.visual-service-grid a {
  background: rgba(255, 255, 255, 0.88);
}

/* Clear section rhythm */
.process-section {
  background: #101b2d !important;
  color: #f6f9ff;
  border: 0 !important;
}
.process-section .headrow p,
.process-section .process-step p {
  color: #aebdd0;
}
.process-section .gradient {
  background: linear-gradient(100deg, #72ddff, #83a8ff, #b5a5ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.process-section .process-step {
  background: transparent;
  border-color: #2b3c54;
}
.process-section .process-step > span {
  background: #17263b;
  border-color: #45617f;
  color: #8de3ff;
}
.process-section .process-grid:before {
  opacity: 0.6;
}
.final-cta {
  background: transparent !important;
  border: 0 !important;
}
.final-cta .cta-panel {
  position: relative;
  overflow: hidden;
}
.final-cta .cta-panel > .btn {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}
@media (min-width: 1001px) {
  .about-page .final-cta .cta-panel > .btn {
    transform: translateY(12px);
  }
}
.final-cta .cta-panel:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(12px);
  pointer-events: none;
}

/* Portfolio case-study presentation */
.project-grid {
  gap: 26px;
}
.project {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 38px;
  text-decoration: none;
}
.project:before {
  content: "";
  display: block;
  height: 128px;
  margin: -38px -38px 30px;
  background: linear-gradient(125deg, #112038, #1f4f88 55%, #2a77ba);
}
.project:nth-child(2):before {
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(118, 203, 255, 0.35),
      transparent 35%
    ),
    linear-gradient(125deg, #111d34, #373184 58%, #6256ce);
}
.project .project-logo,
.project .scanner-mark {
  position: absolute;
  top: 28px;
  left: 38px;
  z-index: 1;
}
.project .project-logo {
  width: 190px;
  height: 72px;
  padding: 9px 13px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  object-position: center;
}
.project .scanner-mark {
  width: 72px;
  height: 72px;
  margin: 0;
  border-color: rgba(167, 222, 255, 0.45);
  background: rgba(9, 27, 51, 0.42);
  color: #a9ebff;
  backdrop-filter: blur(10px);
}
.project h3 {
  font-size: clamp(28px, 3vw, 40px);
}
.project-outcome {
  display: grid;
  gap: 3px;
  margin: 8px 0 24px;
  padding: 14px 0;
  border-block: 1px solid var(--line);
}
.project-outcome span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-outcome strong {
  font-size: 14px;
}
.project .service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.project .service-link:after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf5ff;
}

/* Projects: retain the original clean card design with restrained polish */
.project {
  min-height: 360px;
  padding: 36px;
  background: linear-gradient(145deg, #fff 0%, #f4f8fe 100%);
  border: 1px solid var(--line);
  border-top: 3px solid #7bc9ec;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.055);
}
.project:nth-child(2) {
  border-top-color: #8c7df0;
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(109, 94, 252, 0.09),
      transparent 34%
    ),
    linear-gradient(145deg, #fff, #f5f6ff);
}
.project:before {
  display: none;
}
.project .project-logo,
.project .scanner-mark {
  position: static;
}
.project .project-logo {
  width: auto;
  height: 72px;
  max-width: 260px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-position: left center;
}
.project .scanner-mark {
  width: 76px;
  height: 76px;
  margin-bottom: 30px;
  border-color: #bfe3ff;
  background: #edf6ff;
  color: var(--cyan);
  backdrop-filter: none;
}
.project h3 {
  font-size: clamp(27px, 2.5vw, 36px);
  margin-top: 5px;
}
.project p {
  max-width: 580px;
}
.project-outcome {
  margin-top: auto;
  margin-bottom: 20px;
  padding: 13px 0;
}
.project .service-link {
  margin-top: 0;
}
.project:hover {
  transform: translateY(-5px);
  border-color: #8dbce8;
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.1);
}

/* Calmer health check */
.analysis-summary {
  box-shadow: none;
  background: #fff;
}
.summary-score strong {
  font-size: clamp(32px, 3.5vw, 52px);
}
.summary-signal {
  min-height: 88px;
  background: #f8fafd;
  border-color: #e0e8f2;
}
.summary-signal:hover,
.summary-signal.active {
  border-color: #9ec3eb;
  background: #eef6ff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.07);
}
.opportunity {
  background: #111d30;
  color: #f7faff;
  border: 0;
}
.opportunity p,
.opportunity .ticks {
  color: #b8c5d5;
}
.opportunity .icon {
  background: #1b2d46;
  border-color: #315276;
  color: #84ddff;
}

/* Premium footer */
.footer {
  position: relative;
  margin-top: 70px;
  padding-top: 70px;
  background: #0d1727;
  color: #afbed0;
  border-top: 0;
}
.footer:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2c7bd2, transparent);
}
.footer-grid {
  grid-template-columns: 1.6fr repeat(4, 1fr);
}
.footer-grid b {
  color: #f5f8fc;
}
.footer-grid p,
.footer-grid a {
  color: #a9b9cc;
}
.footer-grid a {
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.footer-grid a:hover {
  color: #8ee5ff;
  transform: translateX(2px);
}
.footer-logo {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}
.copyright {
  border-top-color: #26364b;
  color: #8192a8;
}

/* Individual service identities */
.service-page {
  --service-accent: #0ea5e9;
  --service-soft: rgba(14, 165, 233, 0.11);
}
.service-page.theme-software {
  --service-accent: #2563eb;
  --service-soft: rgba(37, 99, 235, 0.11);
}
.service-page.theme-ai {
  --service-accent: #765ee8;
  --service-soft: rgba(118, 94, 232, 0.11);
}
.service-page.theme-it {
  --service-accent: #29966d;
  --service-soft: rgba(41, 150, 109, 0.11);
}
.service-page .kicker,
.service-page .service-link {
  color: var(--service-accent);
}
.service-page .service-hero-panel {
  border-top: 3px solid var(--service-accent);
  background: linear-gradient(145deg, #fff, var(--service-soft));
}
.service-page .panel-badge,
.service-page .icon {
  color: var(--service-accent);
}
.service-page .panel-pills span {
  background: rgba(255, 255, 255, 0.72);
}

/* Consistent micro-details */
.card h3,
.headrow h2,
.pagehero h1 {
  text-wrap: balance;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-link,
.links a,
.footer a {
  text-underline-offset: 4px;
}
.feature-card .num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  background: #fff;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #70aae3;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 800px;
  }
  .hero-visual {
    min-height: auto;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .section {
    padding-block: 64px;
  }
  .card {
    padding: 25px;
  }
  .headrow h2 {
    font-size: clamp(36px, 11vw, 46px);
  }
  .nav.nav,
  .nav.nav.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
  }
  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }
  .project {
    min-height: 390px;
    padding: 28px;
  }
  .project:before {
    margin: -28px -28px 26px;
  }
  .project .project-logo,
  .project .scanner-mark {
    left: 28px;
  }
  .footer {
    margin-top: 40px;
    padding-top: 54px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}

/* ===== Usability and detail refinement ===== */
.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rich-service:nth-child(1) .icon {
  color: #0786bd;
}
.rich-service:nth-child(2) .icon {
  color: #2563eb;
}
.rich-service:nth-child(3) .icon {
  color: #7159dc;
}
.rich-service:nth-child(4) .icon {
  color: #21845e;
}
.headrow h2:before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 3px;
  background: var(--grad);
}

/* Guided service choice */
.service-selector {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 30px;
  background: linear-gradient(135deg, #101d31, #173153);
  border: 0;
  color: #f7fbff;
  box-shadow: 0 18px 45px rgba(15, 38, 68, 0.15);
}
.service-selector:after {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(53, 145, 235, 0.17);
  pointer-events: none;
}
.service-selector .kicker {
  color: #82ddff;
}
.service-selector h3 {
  max-width: 440px;
  color: #fff;
}
.selector-options,
.selector-result {
  position: relative;
  z-index: 1;
}
.selector-options button {
  background: rgba(255, 255, 255, 0.08);
  border-color: #36506e;
  color: #ecf5ff;
}
.selector-options button:hover,
.selector-options button.selected {
  background: #fff;
  border-color: #8cddff;
  color: #17243a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.selector-result {
  color: #b9cada;
}
.selector-result a {
  color: #8de5ff;
}

/* Regional panels */
.area-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.area-panel:before {
  display: none;
}
.area-panel:first-child {
  border-top: 3px solid var(--blue);
}
.area-panel:nth-child(2) {
  border-top: 3px solid var(--violet);
}
.area-panel h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3vw, 43px);
}
.area-meta {
  margin: 3px 0 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.town b {
  transition: transform 0.18s ease;
}
.town:hover b {
  transform: translate(2px, -2px);
}

/* Contact form */
.contact-grid {
  gap: clamp(38px, 6vw, 86px);
}
.contact-form {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border-top: 3px solid var(--blue);
  box-shadow: 0 20px 50px rgba(24, 65, 116, 0.09);
}
.contact-form:before {
  content: "Project enquiry";
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-form label {
  margin-top: 12px;
}
.contact-form textarea {
  min-height: 150px;
}
.contact-form button[type="submit"] {
  margin-top: 8px;
}
.contact-form.is-success {
  border-top-color: #2f9d72;
  background: linear-gradient(145deg, #fff, #f0fbf6);
}
.contact-form.is-success .form-note {
  color: #217653;
  font-weight: 700;
}

/* Nucleus AI chat */
.jarvis-btn {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.26);
}
.jarvis-btn:before {
  content: "J";
  font-size: 17px;
  font-weight: 900;
}
.jarvis-btn:after {
  content: "Ask Nucleus AI";
  position: absolute;
  right: 64px;
  width: max-content;
  padding: 7px 10px;
  border-radius: 8px;
  background: #101b2d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5px);
  transition: 0.18s;
}
.jarvis-btn:hover:after,
.jarvis-btn:focus-visible:after {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.jarvis {
  width: 380px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(14, 31, 55, 0.25);
}
.jarvis-header {
  display: grid;
  grid-template-columns: 40px 1fr 36px;
  gap: 11px;
  align-items: center;
  padding: 15px 17px;
  background: #101b2d;
  color: #fff;
}
.jarvis-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad);
  font-weight: 900;
}
.jarvis-header strong,
.jarvis-header small {
  display: block;
}
.jarvis-header strong {
  font-size: 13px;
  letter-spacing: 0.06em;
}
.jarvis-header small {
  color: #aebfd2;
  font-size: 10px;
}
.jarvis-header small i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #43c889;
}
.jarvis-close {
  width: 34px !important;
  height: 34px;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.chatlog {
  height: 270px;
  padding: 16px;
  background: #f5f8fc;
}
.chatlog p {
  width: fit-content;
  max-width: 88%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px 13px 13px;
  background: #fff;
  font-size: 13px;
}
.chatlog p:not(:first-child):nth-child(even) {
  margin-left: auto;
  background: #e9f3ff;
  border-color: #cee2f8;
  border-radius: 13px 4px 13px 13px;
}
.jarvis form {
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.jarvis input {
  min-width: 0;
}
.jarvis form button {
  flex: 0 0 44px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 27px;
  bottom: 92px;
  z-index: 58;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(22, 57, 101, 0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  background: #edf5ff;
  transform: translateY(-2px);
}

/* Consistent secondary pages */
.pagehero,
.service-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(238, 246, 255, 0.74),
    rgba(248, 251, 255, 0)
  );
  border-bottom: 1px solid rgba(217, 230, 245, 0.65);
}
.pagehero:after,
.service-hero:after {
  content: "";
  position: absolute;
  right: -100px;
  top: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  pointer-events: none;
}
.pagehero .wrap,
.service-hero .wrap {
  position: relative;
  z-index: 1;
}
.pagehero h1 {
  max-width: 880px;
}
.content-section .content-grid,
.legal-content .narrow {
  padding-block: 20px;
}
.legal-content .narrow {
  max-width: 850px;
}
.legal-content h2 {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.process-section {
  position: relative;
}
.process-section:before,
.process-section:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 42px;
  pointer-events: none;
}
.process-section:before {
  top: -41px;
  background: linear-gradient(to bottom, transparent, rgba(16, 27, 45, 0.08));
}
.process-section:after {
  bottom: -41px;
  background: linear-gradient(to bottom, rgba(16, 27, 45, 0.08), transparent);
}
@media (max-width: 760px) {
  .service-selector {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .selector-options {
    grid-template-columns: 1fr;
  }
  .area-panel {
    padding: 28px;
  }
  .jarvis-btn {
    right: 16px;
    bottom: 16px;
  }
  .back-to-top {
    right: 21px;
    bottom: 82px;
  }
  .jarvis {
    left: 12px;
    right: 12px;
    bottom: 80px;
    width: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}

/* ===== Light colour treatment ===== */
.service-selector {
  background: linear-gradient(135deg, #f8fbff, #eaf3ff);
  border: 1px solid #cddff1;
  color: var(--text);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.08);
}
.service-selector:after {
  background: rgba(85, 136, 226, 0.1);
}
.service-selector .kicker {
  color: var(--blue);
}
.service-selector h3 {
  color: var(--text);
}
.selector-options button {
  background: rgba(255, 255, 255, 0.78);
  border-color: #c9d9ec;
  color: var(--text);
}
.selector-options button:hover,
.selector-options button.selected {
  background: #fff;
  border-color: #78aee2;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.09);
}
.selector-result {
  color: var(--muted);
}
.selector-result a {
  color: var(--blue);
}
.process-section {
  background: linear-gradient(180deg, #eef5ff, #f7faff) !important;
  color: var(--text);
  border-block: 1px solid var(--line) !important;
}
.process-section .headrow p,
.process-section .process-step p {
  color: var(--muted);
}
.process-section .gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.process-section .process-step {
  background: rgba(255, 255, 255, 0.5);
  border-color: #d6e3f2;
}
.process-section .process-step > span {
  background: #fff;
  border-color: #a8c8ed;
  color: var(--blue);
}
.process-section .process-grid:before {
  opacity: 0.3;
}
.process-section:before {
  background: linear-gradient(to bottom, transparent, rgba(77, 132, 197, 0.06));
}
.process-section:after {
  background: linear-gradient(to bottom, rgba(77, 132, 197, 0.06), transparent);
}
.opportunity {
  background: linear-gradient(145deg, #fff, #edf5ff);
  color: var(--text);
  border: 1px solid var(--line);
}
.opportunity p,
.opportunity .ticks {
  color: var(--muted);
}
.opportunity .icon {
  background: #eaf4ff;
  border-color: #c9dff5;
  color: var(--blue);
}
.footer {
  background: linear-gradient(180deg, #edf4fc, #f8fbff);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer:before {
  opacity: 0.55;
}
.footer-grid b {
  color: var(--text);
}
.footer-grid p,
.footer-grid a {
  color: var(--muted);
}
.footer-grid a:hover {
  color: var(--blue);
}
.footer-logo {
  height: 120px !important;
  width: auto !important;
  background: #fff;
  border: 1px solid var(--line);
}
.copyright {
  border-top-color: var(--line);
  color: #71839a;
}

/* ===== Refined project process ===== */
.process-section {
  padding-block: clamp(78px, 8vw, 108px) !important;
}
.process-section .headrow {
  grid-template-columns: 1fr 0.62fr;
  align-items: center;
  margin-bottom: 44px;
}
.process-section .headrow h2 {
  max-width: 720px;
  font-size: clamp(44px, 5.2vw, 76px);
}
.process-section .headrow p {
  max-width: 430px;
  font-size: 18px;
}
.process-section .process-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-section .process-grid:before {
  display: none;
}
.process-section .process-step {
  min-height: 245px;
  padding: 28px !important;
  border: 1px solid #d8e4f1 !important;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(38, 79, 128, 0.055);
}
.process-section .process-step:before {
  display: none;
}
.process-section .process-step:first-child {
  border-top-color: #3494ee !important;
}
.process-section .process-step:nth-child(2) {
  border-top-color: #586bf2 !important;
}
.process-section .process-step:nth-child(3) {
  border-top-color: #785ee9 !important;
}
.process-section .process-step:nth-child(4) {
  border-top-color: #9a62de !important;
}
.process-section .process-step > span {
  width: 38px;
  height: 38px;
  border: 0;
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px #c9dcf2;
  color: var(--blue);
  font-size: 11px;
}
.process-section .process-step h3 {
  margin: 25px 0 10px;
  font-size: 24px;
}
.process-section .process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.process-section .process-step:hover {
  transform: translateY(-6px);
  border-color: #a9c8e8 !important;
  background: #fff;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.1);
}
@media (max-width: 1000px) {
  .process-section .headrow {
    grid-template-columns: 1fr;
  }
  .process-section .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .process-section .process-grid {
    grid-template-columns: 1fr;
  }
  .process-section .process-step {
    min-height: auto;
  }
  .process-section .headrow h2 {
    font-size: clamp(38px, 11vw, 50px);
  }
}

.nav-services-toggle.is-current,
.nav-services-toggle.is-section-current {
  color: var(--blue);
  background: #edf5ff;
}
.nav-services-toggle.is-current:before,
.nav-services-toggle.is-section-current:before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.nav-services-toggle:after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}
.nav-services.open .nav-services-toggle:after {
  transform: translateY(2px) rotate(225deg);
}

.contact-form .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 10px 0;
}
.contact-form .consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--blue);
}
.contact-form .consent span {
  line-height: 1.5;
}

/* ===== Team and contact confirmation ===== */
.team-section {
  background: linear-gradient(180deg, #f4f8fe, #fff) !important;
  border-block: 1px solid var(--line);
}
.team-heading {
  align-items: end;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 26px;
  border: 1px solid #cfdeee;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.055);
  overflow: hidden;
}
.team-card:before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 58px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--grad);
}
.team-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #78def2, #6677f5);
  color: #10213b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.team-person {
  min-width: 0;
}
.team-person h3 {
  margin: 2px 0 2px;
  font-size: 20px;
  line-height: 1.15;
}
.team-person p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.team-contact {
  grid-column: 1/-1;
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.team-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.team-contact a:hover {
  color: var(--blue);
}
.team-contact span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 13px;
}
.contact-success {
  align-self: start;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid #bcded0;
  border-top: 3px solid #2f9d72;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #effaf5);
  box-shadow: 0 20px 50px rgba(31, 117, 83, 0.09);
}
.contact-success[hidden] {
  display: none;
}
.success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: #daf4e8;
  color: #237857;
  font-size: 27px;
  font-weight: 900;
}
.contact-success h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}
.contact-success > p {
  max-width: 520px;
}
.success-contact {
  display: grid;
  gap: 5px;
  margin: 26px 0;
  padding: 18px;
  border: 1px solid #cfe7dc;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}
.success-contact span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
}
.success-contact a {
  width: fit-content;
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}
.success-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.success-reset {
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.success-reset:hover {
  color: var(--blue);
}
@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-card:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card:last-child {
    grid-column: auto;
  }
  .success-actions {
    display: grid;
  }
  .success-actions .btn {
    width: 100%;
  }
}

.contact-form[hidden] {
  display: none !important;
}

/* ===== Services overview ===== */
.services-overview-hero .wrap {
  max-width: 1050px;
}
.services-overview-hero h1 {
  max-width: 980px;
}
.overview-services .service-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.overview-services .rich-service {
  min-height: 430px;
}
.service-connection-section {
  background: linear-gradient(180deg, #f1f7ff, #f9fbfe) !important;
}
.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.connection-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.05);
}
.connection-card > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: #eaf4ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}
.connection-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
}
.connection-card p {
  margin: 0;
  color: var(--muted);
}
.services-help {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.services-help h2 {
  max-width: 500px;
  margin: 12px 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}
.services-help-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.services-help-links a {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.services-help-links a:hover {
  transform: translateY(-3px);
  border-color: #9fc5eb;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}
.services-help-links strong {
  font-size: 15px;
}
.services-help-links span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}
@media (max-width: 1000px) {
  .connection-grid {
    grid-template-columns: 1fr 1fr;
  }
  .connection-card:last-child {
    grid-column: 1/-1;
  }
  .services-help {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .connection-grid,
  .services-help-links {
    grid-template-columns: 1fr;
  }
  .connection-card:last-child {
    grid-column: auto;
  }
  .overview-services .rich-service {
    min-height: auto;
  }
}

/* ===== Shared navigation refinement ===== */
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(185, 206, 230, 0.7);
  box-shadow: 0 1px 0 rgba(14, 24, 41, 0.02);
  transition:
    height 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.nav.is-scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(20, 48, 86, 0.09);
}
.navin {
  height: 100%;
}
.brand {
  position: relative;
  z-index: 2;
}
.logo {
  width: clamp(210px, 20vw, 280px);
  height: 80px;
}
.links {
  gap: 6px;
}
.links > a,
.nav-services-toggle {
  position: relative;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}
.links > a:hover,
.nav-services-toggle:hover,
.nav-services.open .nav-services-toggle {
  color: var(--text);
  background: #edf5ff;
}
.links > a[aria-current]:not(.nav-cta) {
  color: var(--blue);
}
.links > a[aria-current]:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.links .nav-cta {
  margin-left: 8px;
  padding: 11px 17px;
  color: #fff;
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.2);
}
.links .nav-cta:hover {
  color: #fff;
  background: linear-gradient(100deg, #0284c7, #1d4ed8 62%, #5b4ce7);
  transform: translateY(-1px);
}
.nav-services {
  position: relative;
}
.nav-services-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-services-toggle span {
  font-size: 16px;
  transition: transform 0.18s ease;
}
.nav-services.open .nav-services-toggle span {
  transform: rotate(180deg);
}
.services-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 430px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(14, 40, 76, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 70;
}
.nav-services.open .services-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.services-menu > a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.services-menu > a:hover {
  background: #edf5ff;
  transform: translateX(2px);
}
.services-menu i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e8f3ff;
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}
.services-menu strong,
.services-menu small {
  display: block;
}
.services-menu strong {
  font-size: 14px;
}
.services-menu small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}
.services-menu .services-all {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.nav-backdrop {
  display: none;
}
.nav-open {
  overflow: hidden;
}
@media (max-width: 1120px) {
  .menu-toggle {
    position: relative;
    z-index: 72;
    display: grid;
    place-items: center;
    margin-left: auto;
    cursor: pointer;
  }
  .links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(390px, calc(100% - 28px));
    height: 100dvh;
    max-height: none;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    margin: 0;
    padding: 100px 20px 24px;
    background: #fff;
    box-shadow: -24px 0 60px rgba(14, 40, 76, 0.18);
    border: 0;
    border-radius: 0;
    overflow: auto;
    visibility: hidden;
    transform: translateX(105%);
    transition:
      transform 0.28s ease,
      visibility 0.28s;
    z-index: 71;
  }
  .links.open {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: min(390px, calc(100% - 28px));
    height: 100dvh !important;
    max-height: none !important;
    padding: 100px 20px 24px;
    background: #fff;
    border: 0;
    border-radius: 0;
    visibility: visible;
    transform: translateX(0);
  }
  .links.open:before {
    content: "NAVIGATION";
    margin: 0 15px 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
  }
  .links > a,
  .links.open > a,
  .nav-services-toggle {
    display: block !important;
    width: 100%;
    padding: 14px 15px;
    border: 0;
    text-align: left;
    color: var(--muted);
    font-size: 16px;
  }
  .links > a[aria-current]:not(.nav-cta):after {
    top: 12px;
    bottom: 12px;
    left: 3px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .links .nav-cta,
  .links.open .nav-cta {
    display: flex !important;
    justify-content: center;
    margin: 15px 0 0;
    padding: 15px 18px;
    color: #fff;
  }
  .nav-services-toggle {
    display: flex;
    justify-content: space-between;
  }
  .services-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    overflow: hidden;
    transform: none;
    background: #f7faff;
    transition:
      max-height 0.25s ease,
      padding 0.25s ease,
      visibility 0.25s;
  }
  .nav-services.open .services-menu {
    max-height: 430px;
    padding: 8px;
    visibility: visible;
    transform: none;
  }
  .services-menu > a {
    padding: 10px;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(5, 18, 35, 0.48);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.25s ease,
      visibility 0.25s;
    z-index: 69;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 620px) {
  .nav,
  .nav.is-scrolled {
    height: 68px;
  }
  .navin {
    gap: 12px;
  }
  .logo {
    width: 210px;
    height: 46px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .links,
  .links.open {
    width: calc(100% - 18px);
    padding: 84px 14px 18px;
  }
  .services-menu small {
    display: none;
  }
}

/* Rich service selector and expandable process */
.service-selector {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}
.selector-options {
  margin-top: 20px;
}
.selector-result {
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-areas: "icon eyebrow" "icon title" ". copy" ". list" ". outcome" ". action";
  align-content: center;
  gap: 5px 18px;
  padding: 24px;
  border: 1px solid #cbdff2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}
.selector-result.is-changing {
  animation: selector-in 0.28s ease;
}
.selector-illustration {
  grid-area: icon;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--grad);
  color: #fff;
  font-weight: 900;
}
.selector-eyebrow {
  grid-area: eyebrow;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.selector-result h4 {
  grid-area: title;
  margin: 0;
  font-size: 23px;
}
.selector-result p {
  grid-area: copy;
  margin: 7px 0;
  color: var(--muted);
}
.selector-result ul {
  grid-area: list;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 5px 0 10px;
  padding: 0;
  list-style: none;
}
.selector-result li {
  padding: 5px 8px;
  border-radius: 6px;
  background: #eaf4ff;
  color: #35506e;
  font-size: 11px;
}
.selector-outcome {
  grid-area: outcome;
  font-size: 12px;
}
.selector-result .btn {
  grid-area: action;
  width: max-content;
  margin-top: 12px;
  color: #fff;
}
@keyframes selector-in {
  from {
    opacity: 0.3;
    transform: translateY(7px);
  }
}
.process-section .process-step {
  height: auto;
  min-height: 245px;
}
.process-detail {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.process-detail strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-detail ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.process-detail p {
  font-size: 13px !important;
}

/* Service-specific enquiry details */
.smart-fields {
  margin: 18px 0 4px;
  padding: 18px;
  border: 1px solid #cfe0f1;
  border-radius: 14px;
  background: #f7faff;
}
.smart-fields[hidden] {
  display: none;
}
.smart-fields legend {
  padding: 0 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.smart-fields > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.smart-fields label {
  margin: 0 !important;
  font-size: 12px;
}
.smart-fields label:nth-child(2) {
  grid-column: auto;
}
.smart-fields textarea {
  min-height: 85px !important;
}
.smart-fields input,
.smart-fields select,
.smart-fields textarea {
  margin-top: 6px;
  background: #fff;
}

/* Pointer lighting and quick page transitions */
.pointer-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.16s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.pointer-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    260px circle at var(--pointer-x) var(--pointer-y),
    rgba(106, 208, 250, 0.16),
    transparent 62%
  );
  pointer-events: none;
}
.pointer-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(-3px);
}
body {
  opacity: 1;
  transition: opacity 0.17s ease;
}
body.page-ready {
  animation: page-enter 0.2s ease;
}
body.page-leaving {
  opacity: 0;
}
@keyframes page-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .service-selector {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .selector-result {
    grid-template-columns: 1fr;
    grid-template-areas: "icon" "eyebrow" "title" "copy" "list" "outcome" "action";
  }
  .smart-fields > div {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  body,
  .selector-result {
    transition: none !important;
    animation: none !important;
  }
  .pointer-card,
  .pointer-card:hover {
    transform: none !important;
  }
}

/* Keep the technology analysis panels compact and content-led. */
.analysis-grid {
  align-items: start;
}
.analysis-summary,
.analysis-grid .opportunity {
  min-height: 0;
  height: auto;
}
.analysis-grid .opportunity .btn {
  margin-top: 26px;
}
.contact-page .footer {
  margin-top: 0;
}

/* ===== Distinct service identities and aligned card content ===== */
.service-page .split-intro > p {
  color: var(--muted);
}
.service-showcase .rich-service {
  text-decoration: none;
}
.service-showcase .rich-service {
  --card-accent: #0ea5e9;
  --card-soft: rgba(14, 165, 233, 0.075);
  border-top-color: var(--card-accent);
  background: linear-gradient(155deg, #fff 45%, var(--card-soft));
  box-shadow: 0 12px 30px color-mix(in srgb, var(--card-accent) 8%, transparent);
}
.service-showcase .rich-service:nth-child(2) {
  --card-accent: #2563eb;
  --card-soft: rgba(37, 99, 235, 0.075);
}
.service-showcase .rich-service:nth-child(3) {
  --card-accent: #7957e8;
  --card-soft: rgba(121, 87, 232, 0.085);
}
.service-showcase .rich-service:nth-child(4) {
  --card-accent: #24966d;
  --card-soft: rgba(36, 150, 109, 0.08);
}
.service-showcase .rich-service .icon {
  border-color: color-mix(in srgb, var(--card-accent) 24%, #d9e6f5);
  background: color-mix(in srgb, var(--card-accent) 9%, #fff);
  color: var(--card-accent);
}
.service-showcase .rich-service .mini-list li:before,
.service-showcase .rich-service .service-link,
.overview-services .rich-service .service-number {
  color: var(--card-accent);
}
.service-showcase .rich-service:hover {
  border-color: color-mix(in srgb, var(--card-accent) 55%, #d9e6f5);
  box-shadow: 0 20px 42px
    color-mix(in srgb, var(--card-accent) 15%, transparent);
}
@media (min-width: 1001px) {
  .service-showcase .rich-service h3 {
    min-height: 2.45em;
  }
  .service-showcase .rich-service > p {
    min-height: 6.35em;
    margin-bottom: 0;
  }
}

.service-page.theme-web {
  --service-accent: #079dcc;
  --service-accent-2: #21c5dc;
  --service-soft: rgba(7, 157, 204, 0.105);
}
.service-page.theme-software {
  --service-accent: #2563eb;
  --service-accent-2: #5089f3;
  --service-soft: rgba(37, 99, 235, 0.105);
}
.service-page.theme-ai {
  --service-accent: #7654df;
  --service-accent-2: #a15ce5;
  --service-soft: rgba(118, 84, 223, 0.115);
}
.service-page.theme-it {
  --service-accent: #238c68;
  --service-accent-2: #45b58b;
  --service-soft: rgba(35, 140, 104, 0.11);
}
.service-page .gradient {
  background: linear-gradient(
    100deg,
    var(--service-accent),
    var(--service-accent-2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-page .btn.primary,
.service-page .service-signal i {
  background: linear-gradient(
    110deg,
    var(--service-accent),
    var(--service-accent-2)
  );
}
.service-page .service-hero {
  background: linear-gradient(
    180deg,
    var(--service-soft),
    rgba(248, 251, 255, 0)
  );
}
.service-page .deliver-card {
  border-top: 3px solid var(--service-accent);
  background: linear-gradient(150deg, #fff, var(--service-soft));
}
.service-page .ticks li:before {
  color: var(--service-accent);
}

/* Fill and align the footer logo frame without changing the footer columns. */
.footer-logo {
  width: 260px;
  height: 64px;
  padding: 0;
  object-fit: cover;
  object-position: left center;
}


/* =========================================================
   INTERACTIVE Nucleus AI DEMO
   ========================================================= */

.jarvis-live-demo {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(109, 94, 252, .09),
      transparent 35%
    ),
    #f7fbff;
}

.jarvis-demo-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);

  min-height: 570px;
  overflow: hidden;

  border: 1px solid #d9e6f5;
  border-radius: 26px;

  background: #07111f;

  box-shadow:
    0 35px 90px
    rgba(14, 24, 41, .16);
}


/* SIDEBAR */

.jarvis-demo-sidebar {
  padding: 24px;

  border-right:
    1px solid
    rgba(255, 255, 255, .08);

  background: #091524;

  color: #fff;
}


.jarvis-demo-brand {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 20px;
}


.jarvis-demo-logo {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #0ea5e9,
      #2563eb 55%,
      #6d5efc
    );

  color: #fff;

  font-weight: 900;
}


.jarvis-demo-brand strong {
  display: block;

  font-size: 13px;
  letter-spacing: .12em;
}


.jarvis-demo-brand small {
  display: block;

  margin-top: 3px;

  color: #71869f;

  font-size: 9px;
}


/* STATUS */

.jarvis-demo-status {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 28px;

  color: #82dba7;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}


.jarvis-demo-status span {
  width: 7px;
  height: 7px;

  border-radius: 999px;

  background: #22c55e;

  box-shadow:
    0 0 12px
    rgba(34, 197, 94, .7);
}


/* DEMO BUTTONS */

.jarvis-demo-nav {
  display: grid;

  gap: 7px;
}


.jarvis-demo-task {
  display: flex;
  align-items: center;

  gap: 11px;

  width: 100%;

  padding: 13px 12px;

  border: 1px solid transparent;
  border-radius: 11px;

  background: transparent;

  color: #9fb2c7;

  font: inherit;
  font-size: 13px;

  text-align: left;

  cursor: pointer;

  transition: .2s ease;
}


.jarvis-demo-task span {
  color: #55718f;

  font-size: 10px;
  font-weight: 900;
}


.jarvis-demo-task:hover,
.jarvis-demo-task.active {
  border-color:
    rgba(103, 214, 255, .15);

  background:
    rgba(255, 255, 255, .055);

  color: #fff;
}


.jarvis-demo-task.active span {
  color: #67d6ff;
}


/* AUTOMATIC DEMO */

.jarvis-demo-play {
  width: 100%;

  margin-top: 25px;

  padding: 13px;

  border:
    1px solid
    rgba(103, 214, 255, .2);

  border-radius: 11px;

  background:
    rgba(14, 165, 233, .08);

  color: #73dcff;

  font: inherit;
  font-size: 12px;
  font-weight: 800;

  cursor: pointer;
}


.jarvis-demo-play:hover {
  background:
    rgba(14, 165, 233, .14);
}


.jarvis-demo-play:disabled {
  cursor: wait;

  opacity: .7;
}


/* MAIN DEMO */

.jarvis-demo-main {
  min-width: 0;

  color: #fff;
}


.jarvis-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  min-height: 72px;

  padding: 0 26px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, .08);
}


.jarvis-demo-topbar small {
  display: block;

  color: #60768e;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}


.jarvis-demo-topbar strong {
  display: block;

  margin-top: 4px;

  font-size: 12px;
  letter-spacing: .08em;
}


.jarvis-demo-mode {
  padding: 6px 9px;

  border:
    1px solid
    rgba(103, 214, 255, .14);

  border-radius: 999px;

  color: #67d6ff;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}


/* CHAT */

.jarvis-demo-chat {
  padding: 30px;
}


.jarvis-demo-message {
  max-width: 760px;

  padding: 18px;

  border-radius: 15px;
}


.jarvis-demo-message span {
  display: block;

  margin-bottom: 8px;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}


.jarvis-demo-message p {
  margin: 0;

  color: #d4dfeb;

  line-height: 1.7;
}


.jarvis-demo-message.user {
  margin-left: auto;

  border:
    1px solid
    rgba(255, 255, 255, .08);

  background:
    rgba(255, 255, 255, .04);
}


.jarvis-demo-message.user span {
  color: #748aa2;
}


.jarvis-demo-message.jarvis {
  margin-top: 18px;

  border:
    1px solid
    rgba(109, 94, 252, .25);

  background:
    linear-gradient(
      135deg,
      rgba(14, 165, 233, .08),
      rgba(109, 94, 252, .08)
    );
}


.jarvis-demo-message.jarvis span {
  color: #67d6ff;
}


/* PROCESSING */

.jarvis-processing {
  margin: 18px 0;

  padding: 14px 17px;

  border:
    1px solid
    rgba(255, 255, 255, .07);

  border-radius: 13px;

  background:
    rgba(255, 255, 255, .025);
}


.jarvis-processing-top {
  display: flex;
  align-items: center;

  gap: 9px;

  color: #7f96ad;

  font-size: 9px;
  letter-spacing: .1em;
}


.jarvis-processing-dot {
  width: 7px;
  height: 7px;

  border-radius: 999px;

  background: #0ea5e9;

  animation:
    jarvisPulse
    1.2s
    infinite;
}


.jarvis-processing-bars {
  display: flex;

  gap: 4px;

  margin-top: 12px;
}


.jarvis-processing-bars i {
  width: 30px;
  height: 3px;

  border-radius: 10px;

  background: #2563eb;

  animation:
    jarvisBars
    1.1s
    infinite;
}


.jarvis-processing-bars i:nth-child(2) {
  animation-delay: .15s;
}


.jarvis-processing-bars i:nth-child(3) {
  animation-delay: .3s;
}


@keyframes jarvisPulse {

  50% {
    opacity: .35;
  }

}


@keyframes jarvisBars {

  50% {
    opacity: .25;
  }

}


/* AGENT INFO */

.jarvis-demo-agents {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;

  margin-top: 22px;
}


.jarvis-demo-agents > div {
  padding: 15px;

  border:
    1px solid
    rgba(255, 255, 255, .07);

  border-radius: 12px;

  background:
    rgba(255, 255, 255, .025);
}


.jarvis-demo-agents small {
  display: block;

  margin-bottom: 6px;

  color: #637991;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}


.jarvis-demo-agents strong {
  font-size: 12px;
}


/* DEMO FOOTER */

.jarvis-demo-footer {
  padding: 14px 26px;

  border-top:
    1px solid
    rgba(255, 255, 255, .07);

  color: #5f748b;

  font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 850px) {

  .jarvis-demo-shell {
    grid-template-columns: 1fr;
  }


  .jarvis-demo-sidebar {
    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, .08);
  }


  .jarvis-demo-nav {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .jarvis-demo-nav {
    grid-template-columns: 1fr;
  }


  .jarvis-demo-agents {
    grid-template-columns: 1fr;
  }


  .jarvis-demo-chat {
    padding: 18px;
  }

}



/* Nucleus AI now sits with the other WebTech products. */
@media (min-width: 1001px) {
  #projects .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#projects .jarvis-project {
  border-top-color: #5965e8;
  background:
    radial-gradient(circle at 92% 12%, rgba(89, 101, 232, .11), transparent 36%),
    linear-gradient(145deg, #fff, #f3f4ff);
}

.jarvis-project-mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid #cdd4ff;
  border-radius: 18px;
  background: #eef0ff;
  color: #5965e8;
  font-size: 30px;
  font-weight: 900;
}

@media (max-width: 1000px) {
  #projects .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  #projects .project-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Nucleus AI homepage feature repair ===== */

.jarvis-home-section {
  background: transparent !important;
  border: 0 !important;
}

.jarvis-home-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;

  padding: clamp(30px, 4.5vw, 56px);

  overflow: hidden;

  border: 1px solid #dbe7f4;
  border-radius: 28px;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(109, 94, 252, .12),
      transparent 34%
    ),
    radial-gradient(
      circle at 16% 82%,
      rgba(14, 165, 233, .10),
      transparent 34%
    ),
    #f8fbff;

  box-shadow:
    0 24px 70px
    rgba(14, 24, 41, .06);
}

.jarvis-home-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.jarvis-home-copy h2 {
  margin: 8px 0 20px;

  font-size:
    clamp(
      44px,
      5vw,
      70px
    );

  line-height: 1;
  letter-spacing: -.05em;
}

.jarvis-home-copy p {
  max-width: 680px;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.7;
}

.jarvis-home-copy .btn {
  margin-top: 14px;
}

.jarvis-home-visual {
  position: relative;
  z-index: 2;

  min-width: 0;

  padding: 22px;

  border:
    1px solid
    rgba(255, 255, 255, .08);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #0a1424,
      #07101c
    );

  box-shadow:
    0 30px 70px
    rgba(14, 24, 41, .18);

  color: #fff;
}

.jarvis-home-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 18px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, .08);
}

.jarvis-home-top strong {
  display: block;

  color: #fff;

  font-size: 14px;
  letter-spacing: .12em;
}

.jarvis-home-top small {
  display: block;

  margin-top: 3px;

  color: #788da5;

  font-size: 10px;
}

.jarvis-home-status {
  color: #79d99f;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.jarvis-home-command,
.jarvis-home-response {
  margin-top: 16px;

  padding: 16px;

  border:
    1px solid
    rgba(255, 255, 255, .07);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, .035);
}

.jarvis-home-command small,
.jarvis-home-response small {
  display: block;

  margin-bottom: 7px;

  color: #67d6ff;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}

.jarvis-home-command p,
.jarvis-home-response p {
  margin: 0;

  color: #d6e2ef;

  font-size: 14px;
  line-height: 1.6;
}

.jarvis-home-response {
  border-color:
    rgba(109, 94, 252, .24);

  background:
    linear-gradient(
      135deg,
      rgba(14, 165, 233, .07),
      rgba(109, 94, 252, .08)
    );
}

.jarvis-home-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 16px;
}

.jarvis-home-tags span {
  padding: 7px 10px;

  border:
    1px solid
    rgba(255, 255, 255, .08);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .04);

  color: #9fb3c8;

  font-size: 11px;
}

@media (max-width: 950px) {

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

}

@media (max-width: 650px) {

  .jarvis-home-panel {
    padding: 24px;

    border-radius: 22px;
  }

  .jarvis-home-top {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* Battle Independent Business Rate */
.battle-rate-section {
  background: radial-gradient(circle at 82% 18%, rgba(109, 94, 252, .08), transparent 30%), #f4f8ff;
}

.battle-rate-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  padding: clamp(38px, 5vw, 70px);
  border: 1px solid var(--line);
  border-top: 3px solid #5965e8;
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0, rgba(89, 101, 232, .08), transparent 32%), #fff;
  box-shadow: 0 22px 60px rgba(37, 74, 132, .08);
}

.battle-rate-intro h2 {
  margin: 12px 0 22px;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1;
}

.battle-rate-intro p,
.battle-rate-details p {
  color: var(--muted);
  line-height: 1.7;
}

.battle-rate-intro .btn {
  margin-top: 12px;
}

.battle-rate-details {
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid #d9e5f2;
  border-radius: 22px;
  background: #f8fbff;
}

.battle-rate-badge {
  display: flex;
  gap: 14px;
  align-items: center;
  width: fit-content;
  margin-bottom: 25px;
  padding: 12px 17px;
  border-radius: 14px;
  background: linear-gradient(110deg, #eaf5ff, #efedff);
  color: #3f4ed3;
}

.battle-rate-badge strong {
  font-size: 28px;
}

.battle-rate-badge span {
  max-width: 135px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.battle-rate-details h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.battle-rate-benefits {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.battle-rate-benefits li {
  position: relative;
  padding-left: 28px;
  color: #4f6178;
  line-height: 1.5;
}

.battle-rate-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2196d3;
  font-weight: 900;
}

@media (max-width: 900px) {
  .battle-rate-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .battle-rate-panel {
    gap: 30px;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .battle-rate-details {
    padding: 24px 20px;
  }
}
