@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
:root {
  --blue: #0825a8;
  --blue2: #06196f;
  --cyan: #0aaeea;
  --ink: #10131b;
  --muted: #5d6470;
  --pale: #f3f5fa;
  --line: #dfe3ec;
  --white: #fff;
  --yellow: #ffca28;
  --max: 1240px;
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  background: #fff;
  overflow-x: clip;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
button {
  font: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.skip {
  position: fixed;
  left: 16px;
  top: -50px;
  background: #fff;
  padding: 10px;
  z-index: 9999;
}
.skip:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
}
.topbar {
  height: 34px;
  background: #07145b;
  color: #cbd5ff;
  font-size: 12px;
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-links {
  display: flex;
  gap: 24px;
}
.nav {
  height: 82px;
  background: var(--blue);
  color: #fff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 22px #06155b22;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  color: #fff;
}
.brand > span:last-child {
  display: grid;
  line-height: 0.92;
}
.brand b {
  font: 800 19px Manrope;
  letter-spacing: 1px;
}
.brand strong {
  font: 500 10px Manrope;
  letter-spacing: 4px;
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  gap: 2px;
  transform: rotate(45deg);
}
.brand-mark i {
  width: 9px;
  height: 9px;
  background: #20b5e9;
  border-radius: 2px;
}
.brand-mark i:nth-child(2) {
  background: #ffcb2c;
}
.brand-mark i:nth-child(3) {
  background: #fff;
}
.brand-mark i:nth-child(4) {
  background: #59d0f6;
}

/* Brand logo + wordmark */
.brand-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-with-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.brand-name {
  display: grid;
  line-height: 0.92;
}
.brand-name b {
  font: 800 19px Manrope, sans-serif;
  letter-spacing: 1px;
}
.brand.light .brand-name b,
.brand.light .brand-name strong {
  color: #fff;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.nav-item {
  position: static;
}
.nav-item > button,
.nav-link {
  border: 0;
  background: none;
  color: #fff;
  padding: 31px 10px;
  font-size: 13px;
  white-space: nowrap;
}
.nav-item > button span {
  font-size: 12px;
  margin-left: 4px;
}
.nav-item:hover > button,
.nav-link:hover {
  background: #061c89;
}
.mega {
  position: absolute;
  top: 82px;
  left: 50%;
  width: 820px;
  max-width: calc(100vw - 32px);
  background: #fff;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(8, 37, 168, 0.08), 0 12px 24px rgba(8, 37, 168, 0.04);
  border-top: 4px solid var(--cyan);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.25s;
  z-index: 999;
}
.mega.iso {
  grid-template-columns: 1.2fr 1.2fr 1.1fr;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega h4 {
  margin: 0 0 12px 14px;
  font: 800 15px Manrope;
  color: var(--blue);
}
.mega a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #424754;
  transition: all 0.2s ease;
}
.mega a:hover {
  background: #f3f7ff;
  color: var(--blue);
  transform: translateX(4px);
}
.mega aside {
  background: linear-gradient(135deg, #f5f8ff 0%, #edf3ff 100%);
  border-radius: 8px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega aside small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
}
.mega aside h3 {
  font: 800 22px Manrope;
  margin: 10px 0;
  color: var(--blue2);
}
.mega aside p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  margin-bottom: 15px;
}
.mega-link {
  font-weight: 700 !important;
  color: var(--blue) !important;
  display: inline-flex !important;
  align-items: center;
  padding: 0 !important;
  background: none !important;
}
.mega-link:hover {
  background: none !important;
  transform: translateX(4px) !important;
}
.iso {
  grid-template-columns: 1fr 1fr 1fr;
}
.demo {
  margin-left: 12px;
  background: #fff;
  color: var(--blue);
  padding: 12px 18px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 13px;
}
.demo span {
  margin-left: 7px;
}
.menu-toggle {
  display: none;
}
.hero {
  background: linear-gradient(135deg, #06175e 0%, #092da7 52%, #071e82 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    radial-gradient(
      circle at 10% 30%,
      transparent 0 20px,
      #4bb8e9 21px 22px,
      transparent 23px
    ),
    radial-gradient(
      circle at 80% 20%,
      transparent 0 30px,
      #4bb8e9 31px 32px,
      transparent 33px
    );
  background-size:
    130px 120px,
    180px 160px;
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}
.hero-copy {
  padding: 140px 0 90px;
  max-width: 620px;
}
.eyebrow,
.section-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: #3cc5f5;
}
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #aeeaff;
}
.eyebrow span {
  width: 25px;
  height: 2px;
  background: #ffc72c;
}
.hero h1 {
  font: 800 clamp(48px, 5.2vw, 76px)/0.98 Manrope;
  margin: 22px 0 25px;
  letter-spacing: -3.2px;
}
.hero h1 mark {
  background: none;
  color: #ffcc29;
}
.hero h1 span {
  font-size: 0.68em;
  letter-spacing: -2px;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #dbe6ff;
  max-width: 590px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin: 34px 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 22px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid transparent;
}
.btn-cyan {
  background: #09afea;
  color: #fff;
}
.btn-cyan:hover {
  background: #20c2f8;
}
.btn-outline {
  border-color: #86a5ed;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--blue);
}
.btn-dark {
  background: #10131b;
  color: #fff;
}
.hero-note {
  font-size: 12px;
  color: #b9caf9;
}
.hero-note span {
  color: #48d1f4;
}
.hero-visual {
  height: 570px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(
    circle at 32% 28%,
    #3ad8ff 0%,
    #0b7ecb 28%,
    #052a86 62%,
    #02124d 100%
  );
  box-shadow:
    0 0 90px #0bbaf055,
    inset -35px -20px 70px #0005;
  overflow: hidden;
  transform: perspective(700px) rotateX(8deg);
  isolation: isolate;
}
.globe-atmosphere {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2px #4fdcff44,
    inset 18px 10px 40px #ffffff22,
    inset -28px -18px 50px #00000055;
  z-index: 5;
  pointer-events: none;
}
.globe-map-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 200%;
  height: 100%;
  animation: globeSpin 48s linear infinite;
  z-index: 1;
}
.globe-world {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: block;
}
.globe-land {
  fill: rgba(150, 230, 255, 0.28);
  stroke: rgba(180, 240, 255, 0.35);
  stroke-width: 1.2;
}
.globe-uk {
  fill: rgba(255, 214, 80, 0.55) !important;
  stroke: rgba(255, 214, 80, 0.8) !important;
}
.globe-borders path {
  stroke: rgba(180, 235, 255, 0.22);
  stroke-width: 1;
  stroke-linecap: round;
}
.globe-hubs .hub {
  fill: #fff;
  opacity: 0.75;
  filter: drop-shadow(0 0 3px #7ae9ff);
}
.globe-hubs .hub-uk {
  fill: #ffca28;
  opacity: 1;
  filter: drop-shadow(0 0 5px #ffca28);
}
.globe-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}
.globe-shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, transparent 0%, transparent 42%, rgba(2, 12, 48, 0.35) 72%, rgba(1, 8, 32, 0.72) 100%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.14) 0%, transparent 28%, transparent 62%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 3;
  pointer-events: none;
}
@keyframes globeSpin {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.globe:before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 2px solid #4fdcff40;
  border-radius: 50%;
  box-shadow: inset 0 0 40px #00cfff33;
  z-index: 4;
  pointer-events: none;
}
.latitude,
.longitude {
  position: absolute;
  border: 1px solid #35dcff66;
  border-radius: 50%;
}
.latitude {
  left: -10%;
  width: 120%;
  height: 38%;
  top: 31%;
}
.l2 {
  top: 13%;
  height: 74%;
}
.l3 {
  top: 45%;
  height: 12%;
}
.longitude {
  top: -10%;
  height: 120%;
  width: 42%;
  left: 29%;
}
.g2 {
  left: 5%;
  width: 90%;
}
.g3 {
  left: 42%;
  width: 16%;
}
.glow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 22px 8px #0ad7ff;
  left: 62%;
  top: 34%;
  z-index: 6;
}
.orbital {
  position: absolute;
  border: 1px solid #25cfff44;
  border-radius: 50%;
  width: 530px;
  height: 210px;
  transform: rotate(-19deg);
}
.o2 {
  width: 590px;
  height: 250px;
  transform: rotate(22deg);
}
.o3 {
  width: 410px;
  height: 410px;
  transform: rotate(70deg);
}
.core {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ffca28;
  color: #06155b;
  font: 800 22px Manrope;
  box-shadow: 0 0 0 10px #ffca2825;
}
.node {
  position: absolute;
  background: #fff;
  color: #07165f;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 30px #00125d44;
}
.node b {
  font: 800 18px Manrope;
}
.node span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #69707c;
}
.n1 {
  left: 2%;
  top: 28%;
}
.n2 {
  right: 2%;
  top: 19%;
  background: #08b5ed;
  color: #fff;
}
.n3 {
  right: 10%;
  bottom: 14%;
  background: #ffca28;
}
.hero-bottom {
  background: #05175f99;
  border-top: 1px solid #ffffff1c;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metrics div {
  padding: 18px 25px;
  border-right: 1px solid #ffffff19;
}
.metrics div:first-child {
  padding-left: 0;
}
.metrics b {
  display: block;
  font: 700 12px Manrope;
}
.metrics span {
  font-size: 11px;
  color: #b7c8f8;
}
.section {
  padding: 100px 0;
}
.intro {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}
.intro h2,
.section-head h2,
.review-head h2,
.resource-grid h2,
.contact-cta h2 {
  font: 800 clamp(36px, 4.2vw, 58px)/1.04 Manrope;
  letter-spacing: -2.2px;
  margin: 12px 0;
}
.intro h2 em,
.section-head h2 em,
.review-head h2 em,
.resource-grid h2 em,
.contact-cta h2 em {
  font-style: normal;
  color: var(--blue);
}
.intro p,
.section-head > p,
.resource-grid p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 26px;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  color: var(--blue);
  font-weight: 800;
  margin-top: 20px;
}
.services {
  background: #f5f7fb;
}
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head > p {
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(7, 80, 187, 0.12);
  border-color: #0750bb;
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(7, 80, 187, 0.06);
  border: 1px solid rgba(7, 80, 187, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background 0.3s ease;
}
.service-card:hover .service-card-icon {
  background: rgba(7, 80, 187, 0.12);
}
.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.service-tag {
  font: 800 11px/1 "Manrope", sans-serif;
  color: #0750bb;
  background: #eef3ff;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-card h3 {
  font: 800 20px/1.3 "Manrope", sans-serif;
  color: #0f172a;
  margin: 0 0 12px 0;
}
.service-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 20px 0;
}
.service-includes {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 24px;
  margin-top: auto;
}
.includes-label {
  display: block;
  font: 800 11px "Manrope", sans-serif;
  color: #0750bb;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.service-includes p {
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
  margin: 0;
  font-weight: 500;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  background: #0750bb;
  color: #ffffff !important;
  font: 800 13px "Manrope", sans-serif;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.service-btn:hover {
  background: #06175e;
  color: #ffffff !important;
}
.credibility {
  background: #f1f3f9;
  padding: 76px 0;
}
.credibility-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
  align-items: center;
}
.cred-title h2 {
  font: 800 38px/1 Manrope;
  letter-spacing: -1.8px;
  margin: 10px 0 15px;
}
.cred-title h2 em {
  font-style: normal;
  color: var(--blue);
}
.cred-title p {
  font-size: 14px;
  color: #687080;
  line-height: 1.6;
}
.cert-window {
  overflow: hidden;
  position: relative;
}
.cert-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform 0.45s ease;
}
.cert {
  height: 130px;
  width: 230px;
  background: #fff;
  border: 1px solid #dce1eb;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px;
  box-shadow: 0 8px 22px #0a1d7910;
}
.cert b {
  font: 800 21px Manrope;
  color: #0d278e;
}
.cert strong {
  font: 800 13px/1.15 Manrope;
  color: #16204b;
}
.cert.gold b {
  color: #e3a51d;
}
.slider-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 15px; /* space below logos */
  /* keep larger tap area via button styles */
}
/* ensure buttons have sufficient size */
.slider-controls button,
.review-controls button {
  min-width: 48px;
  min-height: 48px;
  touch-action: manipulation;
}
@media (max-width: 760px) {
  .slider-controls button,
  .review-controls button {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
.slider-controls button,
.review-controls button {
  border: 1.5px solid #c8d0e0;
  background: #fff;
  width: 42px;
  height: 42px;
  min-width: 48px; /* larger tap area */
  min-height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #0825a810;
  touch-action: manipulation; /* improve mobile tapping */
}
.slider-controls button:hover,
.review-controls button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px #0825a830;
  transform: scale(1.08);
}
.slider-controls button:active,
.review-controls button:active {
  transform: scale(0.95);
  box-shadow: none;
}
@media (max-width: 760px) {
  .slider-controls button,
  .review-controls button {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

.ai-feature {
  background: #fff;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.ai-copy h2 {
  font: 800 clamp(38px, 4.5vw, 60px)/1.02 Manrope;
  letter-spacing: -2.5px;
  margin: 12px 0 20px;
}
.ai-copy h2 em {
  font-style: normal;
  color: var(--blue);
}
.ai-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 580px;
}
.flow {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.flow span {
  padding: 9px 12px;
  background: #f0f3f9;
  font-size: 11px;
  font-weight: 800;
  color: #18265f;
}
.flow i {
  font-style: normal;
  color: #0aaeea;
}
.ai-panel {
  height: 450px;
  background: linear-gradient(135deg, #06165d, #092bb0);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.scan-ring {
  position: absolute;
  border: 1px solid #18c4f64d;
  border-radius: 50%;
}
.r1 {
  width: 310px;
  height: 310px;
}
.r2 {
  width: 440px;
  height: 220px;
  transform: rotate(45deg);
}
.r3 {
  width: 500px;
  height: 500px;
}
.ai-core {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: #0bb9ec;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 30px Manrope;
  box-shadow: 0 0 60px #11c6ff55;
}
.ai-core small {
  font: 800 9px Manrope;
  letter-spacing: 2px;
}
.signal {
  position: absolute;
  background: #ffffff12;
  border: 1px solid #ffffff20;
  color: #a9c8ff;
  padding: 11px 14px;
  font-size: 10px;
  letter-spacing: 1px;
}
.signal b {
  color: #fff;
  margin-left: 8px;
}
.s1 {
  top: 20%;
  left: 9%;
}
.s2 {
  right: 8%;
  top: 32%;
}
.s3 {
  bottom: 17%;
  left: 15%;
}
.reviews {
  background: #fff;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}
.review-track {
  display: flex;
  transition: transform 0.45s ease;
}
.review-window {
  overflow: hidden;
  border-top: 1px solid #dce1e9;
  border-bottom: 1px solid #dce1e9;
}
.review {
  flex: 0 0 25%;
  min-height: 330px;
  padding: 36px;
  border-right: 1px solid #dce1e9;
  background: #fff;
}
.stars {
  color: #f1a923;
  letter-spacing: 3px;
  font-size: 14px;
}
.review blockquote {
  font: 600 21px/1.35 Manrope;
  margin: 35px 0;
  color: #252a33;
}
.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9eef9;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.person b,
.person small {
  display: block;
}
.person b {
  font-size: 12px;
}
.person small {
  font-size: 10px;
  color: #8a919c;
  margin-top: 4px;
}
.industries {
  background: #f5f7fb;
}
.industry-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d7dce5;
}
.industry-row a {
  padding: 24px;
  border-bottom: 1px solid #d7dce5;
  border-right: 1px solid #d7dce5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  transition: 0.2s;
}
.industry-row a:hover {
  background: #fff;
  color: var(--blue);
}
.industry-row b {
  font: 800 15px Manrope;
}
.industry-row span {
  grid-column: 1;
  color: #737b89;
  font-size: 12px;
}
.industry-row a > :last-child {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
}
.resources {
  background: #fff;
}
.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.resource-grid h2 {
  margin-bottom: 0;
}
.resource-grid p {
  max-width: 540px;
}
.resource-list {
  border-top: 1px solid #dce1e9;
}
.resource-list a {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  gap: 15px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #dce1e9;
}
.resource-list a > span {
  font: 700 11px Manrope;
  color: #8a92a0;
}
.resource-list b,
.resource-list small {
  display: block;
}
.resource-list b {
  font: 800 15px Manrope;
}
.resource-list small {
  font-size: 12px;
  color: #737b89;
  margin-top: 4px;
}
.resource-list strong {
  font-size: 18px;
  color: var(--blue);
}
.contact-cta {
  background: #07175f;
  color: #fff;
  padding: 85px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 100px;
  align-items: end;
}
.contact-cta h2 {
  color: #fff;
  margin-top: 12px;
}
.contact-cta h2 em {
  color: #ffcb2d;
}
.contact-inner p {
  color: #c7d4ff;
  line-height: 1.7;
}
.contact-inner small {
  display: block;
  color: #8ea9e8;
  margin-top: 15px;
}
.footer {
  background: #fff;
  padding-top: 75px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(5, 1fr);
  gap: 30px;
  padding-bottom: 65px;
}
.footer-brand p {
  max-width: 290px;
  color: #69717d;
  line-height: 1.6;
  font-size: 13px;
}
.footer-brand > a:last-child {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.footer h4 {
  font-size: 12px;
  font-weight: 500;
  color: #8a919c;
  margin: 0 0 24px;
}
.footer-grid > div > a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 17px;
}
.footer-grid > div > a:hover {
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid #e2e5eb;
  padding: 18px 0;
  font-size: 11px;
  color: #777f8b;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom a {
  margin-left: 22px;
}
.chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  border: 0;
  background: #07aee8;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px #071a7850;
  cursor: pointer;
}
.chat span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #078fc5;
}
.chat b {
  font-size: 11px;
}
.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 82px;
  width: 310px;
  background: #fff;
  z-index: 1099;
  padding: 24px;
  box-shadow: 0 20px 60px #071a7830;
  border: 1px solid #e2e6ee;
  display: none;
}
.chat-panel.open {
  display: block;
}
.chat-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: none;
  font-size: 22px;
}
.chat-panel strong {
  font: 800 18px Manrope;
}
.chat-panel p {
  font-size: 13px;
  color: #687080;
  line-height: 1.5;
}
.chat-suggestions button {
  width: 100%;
  border: 1px solid #dce1e9;
  background: #f7f9fc;
  text-align: left;
  padding: 9px;
  margin-top: 7px;
  font-size: 11px;
  cursor: pointer;
}
.chat-panel small {
  display: block;
  color: #9aa1ad;
  font-size: 9px;
  margin-top: 15px;
}
@media (max-width: 1100px) {
  .nav-menu {
    gap: 0;
  }
  .nav-item > button,
  .nav-link {
    font-size: 11px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .demo {
    font-size: 11px;
    padding: 11px;
  }
  .brand {
    min-width: 180px;
  }
  /* Mega already uses left:50% translateX(-50%) — no overrides needed at 1100px */
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-visual {
    height: 420px;
    margin-top: -20px;
  }
  .hero {
    padding-bottom: 0;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
  .footer-grid > div:nth-child(5),
  .footer-grid > div:nth-child(6) {
    margin-top: 25px;
  }
  .credibility-inner {
    grid-template-columns: 1fr;
  }
  .ai-grid,
  .resource-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .review {
    flex-basis: 50%;
  }
}
@media (max-width: 760px) {
  /* Classic Mobile Safeguards */
  html, body {
    overflow-x: clip;
    width: 100%;
  }
  img, svg, video, iframe, canvas {
    max-width: 100%;
    height: auto;
  }
  /* Prevent fixed-width elements from breaking the container */
  .container > * {
    max-width: 100%;
  }
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .topbar {
    display: none;
  }
  .nav {
    height: 72px;
  }
  .nav-inner {
    justify-content: space-between;
    position: static;
  }
  .menu-toggle {
    display: flex;
    background: none;
    border: 0;
    color: #fff;
    align-items: center;
    gap: 4px;
    flex-direction: column;
  }
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }
  .menu-toggle em {
    font-style: normal;
    font-size: 8px;
    margin-top: 2px;
  }
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    width: 100%;
    background: #071c86;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 20px;
    box-shadow: 0 20px 40px #071a7850;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 9999;
  }
  .nav-menu.open {
    display: flex;
  }
  /* Kill the desktop translateX(-50%) transform on mobile — it shifts static elements off-screen */
  .nav-item:hover .mega,
  .nav-item:focus-within .mega,
  .nav-item.open .mega {
    transform: none !important;
  }
  /* ── Mobile nav items ── */
  .nav-item > button,
  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 24px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }
  .nav-item > button .caret {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    transition: transform 0.25s ease, border-color 0.2s;
  }
  .nav-item.open > button .caret {
    transform: rotate(180deg);
    border-color: var(--cyan);
    color: var(--cyan);
  }
  /* ── Mobile mega accordion ── */
  .mega {
    position: static;
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(0,0,0,0.15);
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    left: auto;
    right: auto;
    padding: 0;
    grid-template-columns: 1fr;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    z-index: auto;
    visibility: visible;
  }
  .nav-item.open .mega {
    max-height: 600px;
    opacity: 1;
    padding: 4px 0 8px;
  }
  .mega.iso {
    grid-template-columns: 1fr;
  }
  .mega > div {
    display: block;
  }
  .mega aside,
  .mega h4 {
    display: none;
  }
  .mega a {
    padding: 10px 24px 10px 36px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    border-bottom: none;
    border-radius: 0;
    background: none;
    transform: none;
    transition: color 0.15s, padding-left 0.15s;
  }
  .mega a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    padding-left: 40px;
    transform: none;
  }
  .demo {
    margin: 14px 0 0;
    text-align: center;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-copy {
    padding: 70px 0 35px;
  }
  .hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    --scale-factor: min(1, calc((100vw - 32px) / 362));
    height: calc(350px * var(--scale-factor));
    transform: scale(var(--scale-factor));
    transform-origin: center center;
    margin: 10px auto;
    width: 100%;
    max-width: 362px;
  }
  .globe {
    width: 250px;
    height: 250px;
  }
  .orbital {
    width: 290px;
    height: 120px;
  }
  .o2 {
    width: 330px;
  }
  .o3 {
    width: 230px;
  }
  .node {
    width: 66px;
    height: 66px;
  }
  .n1 {
    left: 2%;
  }
  .n2 {
    right: 0;
  }
  .n3 {
    right: 4%;
    bottom: 8%;
  }
  .node b {
    font-size: 13px;
  }
  .node span {
    font-size: 7px;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .metrics div,
  .metrics div:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid #ffffff19;
  }
  .section {
    padding: 70px 0;
  }
  .intro-grid,
  .section-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .intro h2,
  .section-head h2,
  .review-head h2,
  .resource-grid h2 {
    font-size: 38px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 350px;
  }
  .icon {
    margin-bottom: 45px;
  }
  .credibility-inner {
    gap: 35px;
  }
  .cert {
    width: 205px;
    height: 115px;
  }
  .ai-panel {
    height: 360px;
  }
  .flow {
    gap: 5px;
  }
  .flow span {
    font-size: 9px;
  }
  .review {
    flex-basis: 100%;
    min-height: 300px;
  }
  .industry-row {
    grid-template-columns: 1fr;
  }
  .industry-row a {
    border-right: 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom .container {
    flex-direction: column;
  }
  .footer-bottom a {
    margin: 0 14px 0 0;
  }
  .chat b {
    display: none;
  }
  .chat {
    padding: 10px;
  }
  .chat-panel {
    right: 16px;
    left: 16px;
    width: auto;
  }
  .review-head {
    align-items: center;
  }
}

/* --- NEW HERO VISUAL UPGRADE --- */

.hero-visual {
  z-index: 1;
}

.data-network {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -50%) scale(0.893);
  pointer-events: none;
  z-index: 2;
}

.network-paths path {
  fill: none;
  stroke: #0bbaf0;
  stroke-width: 4px;
  opacity: 0.4;
  filter: drop-shadow(0 0 6px #0bbaf0);
}

.network-packets .packet {
  fill: #fff;
  filter: url(#packet-glow);
}

.network-packets .packet.fast {
  fill: #0bbaf0;
}

/* Ensure node layout over the network */
.node, .core {
  z-index: 3;
}

.node svg {
  margin-bottom: 3px;
  color: inherit;
}

@keyframes nodePulse {
  0% { transform: scale(1); box-shadow: 0 12px 30px #00125d44; }
  50% { transform: scale(1.03); box-shadow: 0 12px 40px #0bbaf077; }
  100% { transform: scale(1); box-shadow: 0 12px 30px #00125d44; }
}

.node {
  transition: transform 0.3s;
}

.n-ai {
  left: calc(50% - 44px);
  top: calc(50% - 267px);
  background: #08b5ed;
  color: #fff;
  animation: nodePulse 3s infinite;
  cursor: pointer;
}
.n-lock {
  left: calc(50% - 303px);
  top: calc(50% - 44px);
  background: #fff;
  animation: nodePulse 3.8s infinite 1s;
  cursor: pointer;
}
.n-cloud {
  left: calc(50% + 215px);
  top: calc(50% - 44px);
  background: #fff;
  animation: nodePulse 4.2s infinite 0.5s;
  cursor: pointer;
}
.n-vis {
  left: calc(50% - 44px);
  top: calc(50% + 179px);
  background: #fff;
  animation: nodePulse 4.5s infinite 2s;
  cursor: pointer;
}
.core {
  animation: nodePulse 2.5s infinite 0.8s;
  cursor: pointer;
}

/* Node hover: lift, glow, pause pulse, show tooltip */
.node {
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s;
  position: absolute;
}

.node:hover {
  animation-play-state: paused;
  transform: scale(1.15) translateY(-4px) !important;
  z-index: 10;
}

.n-ai:hover {
  box-shadow: 0 0 0 6px #08b5ed33, 0 20px 45px #08b5ed55;
}

.n-lock:hover {
  box-shadow: 0 0 0 6px #0bbaf033, 0 20px 45px #0bbaf044;
  color: #0bbaf0;
}
.n-cloud:hover {
  box-shadow: 0 0 0 6px #0825a822, 0 20px 45px #0825a833;
  color: #0825a8;
}
.n-vis:hover {
  box-shadow: 0 0 0 6px #ffca2833, 0 20px 45px #ffca2844;
}
.core:hover {
  box-shadow: 0 0 0 10px #ffca2833, 0 0 40px #ffca2866 !important;
  transform: scale(1.12);
}

/* Tooltip on node hover */
.node::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #07175f;
  color: #e8f0ff;
  font: 600 10px/1.3 Manrope;
  letter-spacing: 0.8px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.node::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 5px solid transparent;
  border-top-color: #07175f;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.node:hover::after,
.node:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Globe hover: intensify glow */
.globe {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.globe:hover {
  box-shadow: 0 0 120px #0bbaf088, inset -35px -20px 70px #0005;
  transform: perspective(700px) rotateX(8deg) scale(1.02);
}
.globe:hover .globe-map-track {
  animation-play-state: paused;
}
@keyframes hubPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
.globe-hubs .hub {
  transform-box: fill-box;
  transform-origin: center;
  animation: hubPulse 2.8s ease-in-out infinite;
}
.globe-hubs .hub-uk {
  animation: hubPulse 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .globe-map-track,
  .globe-hubs .hub {
    animation: none;
  }
}

/* Network lines speed up on globe hover */
.hero-visual:hover .partners-slider {
  animation-duration: 16s;
}


/* Mobile scaling matching the globe's exact scale factor (300/470 = ~0.638) */
@media (max-width: 760px) {
  .data-network {
    transform: translate(-50%, -50%) scale(0.51);
  }
  .n-ai {
    left: calc(50% - 33px);
    top: calc(50% - 161px);
  }
  .n-lock {
    left: calc(50% - 181px);
    top: calc(50% - 33px);
  }
  .n-cloud {
    left: calc(50% + 115px);
    top: calc(50% - 33px);
  }
  .n-vis {
    left: calc(50% - 33px);
    top: calc(50% + 95px);
  }
}

/* ── Partners Banner ─────────────────────────────────────── */
.partners-banner {
  background: #fff;
  border-top: 1px solid #e8ecf4;
  border-bottom: 1px solid #e8ecf4;
  padding: 46px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 40px;
}

.partners-text {
  flex-shrink: 0;
}

.partners-text strong {
  font: 700 22px/1.35 Manrope;
  color: var(--ink);
  letter-spacing: -0.4px;
}

.partners-text strong::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  margin-top: 8px;
}

/* Slider */
.partners-slider-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-slider {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scrollLogos 22s linear infinite;
}

.partners-slider:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  width: 220px;
  height: 110px;
  background: #fff;
  border: 1px solid #e2e6f0;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  padding: 16px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.partner-logo:hover {
  border-color: #c5d0e8;
  box-shadow: 0 4px 16px #0825a812;
}

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-slider { animation: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .partners-grid {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }
  .partner-logo {
    width: 180px;
    height: 90px;
  }
}

@media (max-width: 760px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .partners-text strong {
    font-size: 18px;
  }
  .partner-logo {
    width: 150px;
    height: 76px;
  }
}


/* ── Clients we serve ─────────────────────────────────────── */
.clients-banner {
  background: #f7f9fc;
  border-bottom: 1px solid #e8ecf4;
  padding: 72px 0 68px;
}

.clients-head {
  margin-bottom: 36px;
}

.clients-head-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}

.clients-head-grid h2 {
  margin: 12px 0 0;
  font: 800 clamp(30px, 3.6vw, 44px) / 1.08 Manrope, sans-serif;
  letter-spacing: -1.6px;
  color: var(--ink);
}

.clients-head-grid h2 em {
  font-style: normal;
  color: var(--blue);
}

.clients-head-grid p {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.client-logo-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid #e2e6f0;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.client-logo-card:hover {
  border-color: #c8d2ea;
  box-shadow: 0 10px 28px #0825a812;
  transform: translateY(-2px);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.client-logo-card--dark {
  background: #0a0a0a;
  border-color: #1a1a1a;
}

.client-logo-card.is-placeholder {
  border-style: dashed;
  border-color: #d5dbe8;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  color: #9aa3b5;
}

.client-logo-card.is-placeholder span {
  font: 700 12px / 1 Manrope, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .clients-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .clients-banner {
    padding: 56px 0 52px;
  }

  .clients-head-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .clients-head-grid p {
    max-width: none;
  }

  .clients-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logo-card {
    min-height: 96px;
  }
}


/* =========================================================
 *  CYBER KEY SERVICES — recovered (equal image + text combo)
 *  ========================================================= */

.cyber-key-services {
  width: 100%;
  background:
    linear-gradient(180deg, #f5f7fb 0%, #ffffff 18%, #ffffff 100%);
  padding: 88px 0 72px;
  border-top: 1px solid var(--line);
}

.cyber-key-intro {
  margin-bottom: 56px;
}

.cyber-key-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: end;
}

.cyber-key-intro-grid h2 {
  margin: 12px 0 0;
  font: 800 clamp(34px, 4vw, 52px) / 1.06 Manrope, sans-serif;
  letter-spacing: -2px;
  color: var(--ink);
}

.cyber-key-intro-grid h2 em {
  font-style: normal;
  color: var(--blue);
}

.cyber-key-intro-grid p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.cyber-service-row {
  --cyber-row-h: 640px;
  width: min(1240px, calc(100% - 48px));
  height: var(--cyber-row-h);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e4e8f0;
  overflow: hidden;
}

.cyber-service-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #07175f;
}

.cyber-service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.cyber-service-row:hover .cyber-service-image img {
  transform: scale(1.04);
}

.cyber-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(4, 14, 62, 0.15) 0%,
      rgba(4, 14, 62, 0.55) 48%,
      rgba(4, 14, 62, 0.9) 100%
    );
  pointer-events: none;
}

.cyber-image-caption {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  z-index: 2;
  color: #fff;
}

.cyber-caption-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #7adfff;
  font: 800 12px / 1 Manrope, sans-serif;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.cyber-caption-text {
  margin: 0;
  max-width: 18ch;
  color: #fff;
  font: 700 clamp(22px, 2.2vw, 30px) / 1.2 Manrope, sans-serif;
  letter-spacing: -0.8px;
}

.cyber-service-content {
  height: 100%;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.cyber-service-number {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 8px;
  color: var(--cyan);
  font: 800 12px / 1 Manrope, sans-serif;
  letter-spacing: 2.4px;
}

.cyber-service-content h3 {
  flex: 0 0 auto;
  margin: 0 0 10px;
  color: #111936;
  font: 800 20px / 1.08 Manrope, sans-serif; /* match service-card heading */
  letter-spacing: -1.2px;
}
  flex: 0 0 auto;
  margin: 0 0 10px;
  color: #111936;
  font: 800 clamp(26px, 2.6vw, 36px) / 1.08 Manrope, sans-serif;
  letter-spacing: -1.2px;
}

.cyber-service-content > p {
  flex: 0 0 auto;
  max-width: 48ch;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.cyber-service-links {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #e6eaf2;
}

.cyber-service-link {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 12px;
  align-items: center;
  min-height: 0;
  padding: 0 6px 0 0;
  border-bottom: 1px solid #e6eaf2;
  color: var(--muted);
  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}

.cyber-service-link:hover {
  padding-left: 6px;
  background: linear-gradient(90deg, #f5f8ff 0%, transparent 100%);
}

.cyber-link-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cyber-link-copy strong {
  color: #1429a8;
  font: 800 14.5px / 1.25 Manrope, sans-serif;
  letter-spacing: -0.2px;
}

.cyber-link-copy span {
  color: #667084;
  font-size: 12.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cyber-service-link:hover .cyber-link-copy strong {
  color: var(--blue2);
}

.cyber-arrow {
  justify-self: end;
  color: var(--blue);
  font-size: 17px;
  line-height: 1;
  opacity: 0.35;
  transform: translateX(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.cyber-service-link:hover .cyber-arrow {
  opacity: 1;
  transform: translateX(0);
}

.cyber-service-row-reverse {
  grid-template-columns: 1fr 1fr;
}

.cyber-service-row-reverse .cyber-service-image {
  order: 2;
}

.cyber-service-row-reverse .cyber-service-content {
  order: 1;
}

@media (max-width: 1100px) {
  .cyber-service-row {
    --cyber-row-h: 580px;
  }

  .cyber-service-content {
    padding: 28px 28px;
  }

  .cyber-link-copy span {
    font-size: 12px;
  }
}

@media (max-width: 1000px) {
  .cyber-key-services {
    padding-top: 72px;
  }

  .cyber-key-intro {
    margin-bottom: 40px;
  }

  .cyber-key-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .cyber-key-intro-grid p {
    max-width: none;
  }

  .cyber-service-row,
  .cyber-service-row-reverse {
    --cyber-row-h: auto;
    width: min(100% - 40px, 1240px);
    height: auto;
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .cyber-service-row-reverse .cyber-service-image {
    order: 1;
  }

  .cyber-service-row-reverse .cyber-service-content {
    order: 2;
  }

  .cyber-service-image {
    height: 300px;
  }

  .cyber-service-content {
    height: auto;
    padding: 32px 28px;
    overflow: visible;
  }

  .cyber-service-links {
    flex: 0 0 auto;
  }

  .cyber-service-link {
    flex: 0 0 auto;
    padding: 13px 0;
  }

  .cyber-caption-text {
    max-width: 24ch;
  }
}

@media (max-width: 600px) {
  .cyber-key-services {
    padding-top: 56px;
  }

  .cyber-service-row,
  .cyber-service-row-reverse {
    width: 100%;
    margin-bottom: 0;
    border-left: 0;
    border-right: 0;
  }

  .cyber-service-image {
    height: 240px;
  }

  .cyber-image-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .cyber-service-content {
    padding: 26px 22px 22px;
  }

  .cyber-service-content h3 {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .cyber-service-content > p {
    font-size: 14.5px;
    margin-bottom: 16px;
  }

  .cyber-service-link {
    grid-template-columns: 1fr 22px;
    gap: 10px;
    padding: 12px 0;
  }

  .cyber-link-copy strong {
    font-size: 14px;
  }

  .cyber-link-copy span {
    font-size: 12.5px;
  }

  .cyber-arrow {
    opacity: 0.7;
    transform: none;
  }
}


/* =========================================================
 *  WC INSIGHTS — ANIMATED DARK IMAGE CARDS
 *  ========================================================= */

.wc-insights-section {
  padding: 110px 0;
  background: #060e2e;
}

.wc-insights-container {
  width: min(calc(100% - 80px), 1300px);
  margin: 0 auto;
}

.wc-insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.wc-insights-kicker {
  display: block;
  margin-bottom: 14px;
  color: #45d5ff;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.wc-insights-header h2 {
  margin: 0;
  font: 800 clamp(36px, 4.5vw, 56px) / 1.04 Manrope;
  letter-spacing: -2px;
  color: #ffffff;
}

.wc-insights-header h2 em {
  color: #45d5ff;
  font-style: normal;
}

.wc-insights-intro {
  max-width: 440px;
}

.wc-insights-intro p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.wc-insights-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #45d5ff;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.wc-insights-all:hover {
  gap: 14px;
}

.wc-insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}


/* ---------------------------------------------------------
 *  INSIGHT CARD
 *  --------------------------------------------------------- */

.wc-insight-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}


/* ---------------------------------------------------------
 *  IMAGE
 *  --------------------------------------------------------- */

.wc-insight-image {
  position: absolute;
  inset: 0;
}

.wc-insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wc-insight-card:hover .wc-insight-image img {
  transform: scale(1.08);
}


/* ---------------------------------------------------------
 *  OVERLAY
 *  --------------------------------------------------------- */

.wc-insight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 14, 46, 0.92) 0%,
    rgba(6, 14, 46, 0.45) 40%,
    rgba(6, 14, 46, 0) 70%
  );
  z-index: 1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.wc-insight-card:hover .wc-insight-overlay {
  opacity: 1;
}


/* ---------------------------------------------------------
 *  CONTENT
 *  --------------------------------------------------------- */

.wc-insight-content {
  position: relative;
  z-index: 2;
  padding: 22px 20px;
  width: 100%;
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.wc-insight-card:hover .wc-insight-content {
  transform: translateY(0);
}

.wc-insight-category {
  display: inline-block;
  font-family: Manrope, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #45d5ff;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wc-insight-card:hover .wc-insight-category {
  opacity: 1;
  transform: translateY(0);
}

.wc-insight-content h3 {
  font: 800 17px / 1.28 Manrope;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.wc-insight-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wc-insight-read {
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.8);
}

.wc-insight-arrow {
  font-size: 20px;
  color: #45d5ff;
  transition: transform 0.2s ease;
}

.wc-insight-card:hover .wc-insight-arrow {
  transform: translateX(4px);
}


/* ---------------------------------------------------------
 *  RESPONSIVE — INSIGHTS
 *  --------------------------------------------------------- */

@media (max-width: 1100px) {

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

  .wc-insight-card {
    height: 400px;
  }

  .wc-insight-content h3 {
    font-size: 19px;
  }

}


@media (max-width: 760px) {

  .wc-insights-section {
    padding: 80px 0;
  }

  .wc-insights-container {
    width: min(calc(100% - 32px), 1240px);
  }

  .wc-insights-header {
    display: block;
    margin-bottom: 30px;
  }

  .wc-insights-header h2 {
    font-size: 38px;
  }

  .wc-insights-intro {
    margin-top: 24px;
  }

  .wc-insights-grid {
    grid-template-columns: 1fr;
  }

  .wc-insight-card {
    height: 380px;
  }

}


@media (hover: none) {

  .wc-insight-overlay {
    transform: translateY(0);
    opacity: .08;
  }

  .wc-insight-content {
    transform: translateY(0);
  }

  .wc-insight-category {
    transform: translateY(0);
    opacity: 1;
  }

}


/* =========================================================
 *  BLOG — CARD CAROUSEL
 *  ========================================================= */

.blog-window {
  overflow: hidden;
}

.blog-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 260px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e2e6ee;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 16px 40px rgba(7, 23, 95, 0.12);
  transform: translateY(-4px);
}

.blog-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.04);
}

.blog-card .blog-tag {
  display: inline-block;
  margin: 18px 20px 8px;
  padding: 4px 10px;
  background: #e8f0ff;
  color: #0750bb;
  font-family: Manrope, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.blog-card h3 {
  margin: 0 20px 10px;
  font: 800 17px / 1.3 Manrope;
  color: #111936;
  letter-spacing: -0.3px;
}

.blog-card p {
  margin: 0 20px 14px;
  font-size: 13px;
  line-height: 1.65;
  color: #697080;
}

.blog-card small {
  display: block;
  margin: 0 20px 20px;
  color: #8a919c;
  font-size: 11px;
  font-weight: 600;
}


/* ---------------------------------------------------------
 *  RESPONSIVE — BLOG
 *  --------------------------------------------------------- */

@media (max-width: 900px) {
  .blog-card {
    flex: 0 0 calc(50% - 9px);
  }

  .section-head.blog-head {
    display: block;
  }

  .blog-controls {
    margin-top: 20px;
  }
}

@media (max-width: 580px) {
  .blog.section {
    padding: 70px 0;
  }

  .blog-card {
    flex: 0 0 calc(100% - 4px);
  }
}

/* ── FOOTER SUBSCRIBE FORM ── */
.footer-subscribe-wrapper {
  margin-top: 18px;
  width: 100%;
  max-width: 380px;
}

.footer-subscribe-form {
  width: 100%;
}

.subscribe-input-group {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #081754;
  border: 2px solid #9333ea;
  border-radius: 50px;
  padding: 4px 4px 4px 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.35);
}

.subscribe-input-group:focus-within {
  border-color: #c084fc;
  background: #0c1f6b;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.6);
}

.subscribe-email-input {
  flex: 1 1 0%;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff !important;
  font-size: 13px;
  font-family: inherit;
  padding: 8px 4px 8px 0;
}

.subscribe-email-input::-webkit-input-placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

.subscribe-email-input::-moz-placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

.subscribe-email-input:-ms-input-placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

.subscribe-email-input::placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

.subscribe-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #9333ea, #6366f1);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(147, 51, 234, 0.45);
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, #7e22ce, #4f46e5);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(147, 51, 234, 0.7);
}

.subscribe-btn:active {
  transform: translateY(0);
}
