/* =========================
   SF Pro Text
   ========================= */

:root {
  --bg: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #fff;
  --text: #28313d;
  --heading: #101923;
  --muted: #637083;
  --line: rgba(45, 64, 89, 0.12);
  --line-strong: rgba(45, 64, 89, 0.18);
  --purple: #603c97;
  --blue: #1a93d1;
  --cyan: #0db4d7;
  --gold: #e7a728;
  --shadow: 0 22px 60px rgba(38, 57, 77, 0.1);
  --shadow-soft: 0 10px 32px rgba(38, 57, 77, 0.07);
  --shell: min(1180px, calc(100% - 48px));
  --r: 14px;
  --font-display: "SF Pro Display", "SF Pro Text", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-text: "SF Pro Text", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  padding: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 251, 0.78);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 5px 24px rgba(35, 50, 67, 0.05);
}
.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 198px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  padding: 9px 12px;
  color: #445064;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.75);
  color: var(--heading);
}
.site-nav .nav-cta {
  margin-left: 8px;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 4px 15px rgba(38, 57, 77, 0.06);
  padding: 9px 14px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: #273345;
  margin: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 92px 0 72px;
  background: #fbfbfc;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(251, 251, 252, 0.98) 0%,
    rgba(251, 251, 252, 0.95) 35%,
    rgba(251, 251, 252, 0.72) 49%,
    rgba(251, 251, 252, 0.12) 66%,
    rgba(251, 251, 252, 0) 100%
  );
}
.hero-content {
  position: relative;
}
.hero-copy {
  width: min(610px, 52%);
}
.eyebrow {
  display: inline-block;
  color: var(--purple);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.hero h1 {
  font-size: clamp(52px, 5.9vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.01em;
  margin: 19px 0 24px;
  font-weight: 700;
  color: #111820;
  max-width: 700px;
}
.hero-accent {
  background: linear-gradient(
    90deg,
    #2964d5 0%,
    var(--blue) 48%,
    var(--cyan) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.hero-dot {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
.hero-lead {
  font-size: 19px;
  line-height: 1.58;
  color: #566477;
  max-width: 590px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background-color: var(--purple);
  color: #fff;
  box-shadow: 0 10px 24px rgba(72, 72, 177, 0.19);
}
.btn-primary:hover {
  box-shadow: 0 13px 30px rgba(72, 72, 177, 0.25);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(52, 67, 91, 0.2);
  color: var(--heading);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  width: min(760px, 78vw);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(54, 68, 88, 0.09);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border-radius: 12px;
  overflow: hidden;
}
.hero-capabilities a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 15px 16px;
  color: #253244;
  text-decoration: none;
  border-right: 1px solid rgba(45, 64, 89, 0.1);
  transition: background 0.18s ease;
}
.hero-capabilities a:last-child {
  border-right: 0;
}
.hero-capabilities a:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero-capabilities strong,
.hero-capabilities small {
  display: block;
}
.hero-capabilities strong {
  font-size: 12px;
  line-height: 1.2;
}
.hero-capabilities small {
  font-size: 10px;
  color: #778397;
  margin-top: 2px;
  white-space: nowrap;
}
.cap-icon {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.cap-code {
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
}
.cap-shield:before {
  content: "";
  position: absolute;
  inset: 3px 5px 2px;
  border: 2px solid var(--gold);
  border-radius: 9px 9px 12px 12px;
  clip-path: polygon(50% 0, 100% 19%, 91% 70%, 50% 100%, 9% 70%, 0 19%);
}
.cap-ms {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 2px;
}
.cap-ms i:nth-child(1) {
  background: #1a93d1;
}
.cap-ms i:nth-child(2) {
  background: #0db4d7;
}
.cap-ms i:nth-child(3) {
  background: #2d6cb5;
}
.cap-ms i:nth-child(4) {
  background: #603c97;
}
.cap-lock:before {
  content: "";
  position: absolute;
  width: 17px;
  height: 14px;
  border: 2px solid var(--cyan);
  border-radius: 3px;
  bottom: 3px;
}
.cap-lock:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 9px;
  border: 2px solid var(--cyan);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  top: 2px;
  left: 8px;
}
.hero-note {
  margin-top: 24px;
  color: #738096;
  font-size: 13px;
}
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item strong {
  display: block;
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 3px;
}
.trust-item span {
  font-size: 14px;
  color: var(--muted);
}
.section {
  padding: 92px 0;
}
.section-white {
  background: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 650px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  border-radius: 12px;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--blue);
}
.service-card.software:before {
  background: var(--purple);
}
.service-card h3 {
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 18px 0 12px;
}
.service-card p {
  color: var(--muted);
  max-width: 580px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.service-card li {
  font-size: 16px;
  color: #465367;
}
.service-card li:before {
  content: "→";
  margin-right: 8px;
  color: var(--blue);
}
.service-card.software li:before {
  color: var(--purple);
}
.text-link {
  color: #176f9b;
  text-decoration: none;
  font-weight: 750;
  font-size: 16px;
}
.software .text-link {
  color: var(--purple);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.feature-card .num {
  font-size: 11px;
  font-weight: 800;
  color: #7c8797;
  letter-spacing: 0.08em;
}
.feature-card h3 {
  font-size: 21px;
  margin: 14px 0 8px;
}
.feature-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.credibility {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 74px;
  align-items: start;
}
.credibility h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 9px 0 18px;
}
.credibility > div > p {
  font-size: 18px;
  color: var(--muted);
}
.proof-list {
  border-top: 1px solid var(--line);
}
.proof-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.proof-row b {
  font-size: 12px;
  color: #8792a2;
}
.proof-row h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.proof-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 42px 46px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  border-radius: 14px;
}
.cta-panel h2 {
  font-size: 38px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.cta-panel p {
  margin: 0;
  color: var(--muted);
}
.page-hero {
  padding: 74px 0 62px;
  background: linear-gradient(180deg, #fbfcfe, #f6f8fb);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  font-size: 12px;
  color: #7a8797;
  margin-bottom: 18px;
}
.breadcrumbs a {
  color: #617084;
  text-decoration: none;
}
.page-hero h1 {
  font-size: clamp(46px, 5.8vw, 70px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  max-width: 980px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 820px;
  margin: 0;
}
.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
}
.side-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.side-nav a {
  display: block;
  padding: 7px 0;
  color: #667386;
  text-decoration: none;
  font-size: 13px;
}
.side-nav a:hover {
  color: var(--heading);
}
.article {
  max-width: 780px;
}
.article h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.article h2:not(:first-child) {
  margin-top: 55px;
}
.article h3 {
  font-size: 23px;
  margin: 28px 0 8px;
}
.article p,
.article li {
  color: #5f6d80;
}
.article ul {
  padding-left: 20px;
}
.article-callout {
  margin: 35px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--blue);
  background: #f1f6fa;
  border-radius: 0 8px 8px 0;
}
.article-callout strong {
  color: var(--heading);
}
.related {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.related-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.related-links a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #425166;
  font-weight: 650;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
}
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
}
.contact-card h2 {
  font-size: 30px;
  margin: 0 0 12px;
}
.contact-card p {
  color: var(--muted);
}
.form {
  display: grid;
  gap: 17px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: #354255;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  border: 1px solid #d7dee8;
  border-radius: 8px;
  background: #fff;
  padding: 12px 13px;
  color: #1e2937;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(26, 147, 209, 0.12);
  border-color: #64abd1;
}
.notice {
  padding: 12px 14px;
  border-radius: 8px;
}
.notice.success {
  background: #edf8f2;
  color: #286b4f;
}
.notice.error {
  background: #fff1f1;
  color: #8a3535;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
}
.legal {
  max-width: 820px;
}
.site-footer {
  padding: 62px 0 25px;
  background: #eef2f6;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.7fr;
  gap: 42px;
}
.footer-brand img {
  width: 180px;
}
.footer-brand p {
  color: var(--muted);
  max-width: 300px;
}
.footer-grid h2 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 4px 0 14px;
  color: #5c697b;
}
.footer-grid a {
  display: block;
  color: #5f6d80;
  text-decoration: none;
  font-size: 14px;
  margin: 8px 0;
}
.footer-grid a:hover {
  color: #176f9b;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 42px;
  color: #8390a0;
  font-size: 12px;
}
@media (max-width: 950px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open {
    display: flex;
  }
  .hero {
    padding-top: 58px;
  }
  .hero-grid,
  .section-head,
  .credibility,
  .article-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .side-nav {
    position: static;
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
}
@media (max-width: 620px) {
  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }
  .hero-lead,
  .page-hero .lead {
    font-size: 17px;
  }
  .hero-visual {
    min-height: 440px;
  }
  .main-window {
    left: 0;
  }
  .float-a {
    right: -6px;
  }
  .float-b {
    left: -4px;
  }
  .service-grid,
  .feature-grid,
  .trust-bar-inner,
  .form-row,
  .related-links {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .service-card {
    min-height: auto;
    padding: 26px;
  }
  .service-card ul {
    grid-template-columns: 1fr;
  }
  .section-head {
    gap: 20px;
  }
  .section-head h2 {
    font-size: 39px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cta-panel {
    padding: 30px;
  }
  .cta-panel h2 {
    font-size: 31px;
  }
}

/* Responsive treatment for the image-led homepage hero */
@media (max-width: 950px) {
  .hero.hero-home {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 58px 0 0;
  }
  .hero.hero-home:after {
    background: linear-gradient(
      180deg,
      rgba(251, 251, 252, 0.98) 0%,
      rgba(251, 251, 252, 0.94) 58%,
      rgba(251, 251, 252, 0.35) 78%,
      rgba(251, 251, 252, 0) 100%
    );
  }
  .hero-home .hero-content {
    order: 1;
  }
  .hero-home .hero-copy {
    width: 100%;
    max-width: 680px;
  }
  .hero-home .hero-art {
    position: relative;
    order: 2;
    inset: auto;
    height: 410px;
    margin-top: 34px;
    z-index: 0;
    overflow: hidden;
  }
  .hero-home .hero-art img {
    object-fit: cover;
    object-position: 72% center;
  }
  .hero-capabilities {
    width: 100%;
    max-width: 760px;
  }
}
@media (max-width: 700px) {
  .hero-capabilities {
    grid-template-columns: 1fr 1fr;
  }
  .hero-capabilities a:nth-child(2) {
    border-right: 0;
  }
  .hero-capabilities a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(45, 64, 89, 0.1);
  }
  .hero-home .hero-art {
    height: 335px;
  }
  .hero-home .hero-art img {
    object-position: 71% center;
  }
}
@media (max-width: 620px) {
  .hero.hero-home {
    padding-top: 44px;
  }
  .hero-home h1 {
    font-size: 46px;
  }
  .hero-home .hero-lead {
    font-size: 17px;
  }
  .hero-capabilities {
    margin-top: 32px;
    border-radius: 10px;
  }
  .hero-capabilities a {
    padding: 13px 12px;
  }
  .hero-capabilities small {
    display: none;
  }
  .hero-home .hero-art {
    height: 300px;
    margin-top: 22px;
  }
}

/* V5 visual system ------------------------------------------------------ */
:root {
  --aurora-purple: rgba(96, 60, 151, 0.16);
  --aurora-blue: rgba(26, 147, 209, 0.13);
  --aurora-cyan: rgba(13, 180, 215, 0.14);
  --aurora-gold: rgba(246, 178, 41, 0.1);
  --section-tint: #f8fafc;
}
body {
  background: #f8fafc;
}
.section {
  position: relative;
  overflow: hidden;
}
.section:not(.section-white):before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.42;
  pointer-events: none;
  background: radial-gradient(circle, var(--aurora-purple), transparent 65%);
  right: -300px;
  top: -250px;
}
.section > .shell {
  position: relative;
  z-index: 1;
}
.section-white {
  background: linear-gradient(180deg, #fff, #fcfdff);
}
.section-white:after {
  content: "";
  position: absolute;
  left: -220px;
  bottom: -290px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  background: radial-gradient(circle, var(--aurora-cyan), transparent 68%);
  opacity: 0.32;
}

/* Sharper, calmer image-led homepage hero */
.hero.hero-home {
  background: #fff;
  min-height: 710px;
}
.hero-home .hero-art img {
  image-rendering: auto;
  filter: saturate(0.98) contrast(1.015);
  object-position: center center;
}
.hero-home:after {
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.99) 34%,
    rgba(255, 255, 255, 0.86) 47%,
    rgba(255, 255, 255, 0.24) 64%,
    rgba(255, 255, 255, 0) 80%
  );
}
.hero-home:before {
  content: "";
  position: absolute;
  width: 620px;
  height: 300px;
  right: 13%;
  bottom: -140px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(
    ellipse,
    rgba(13, 180, 215, 0.2),
    rgba(96, 60, 151, 0.11) 45%,
    rgba(246, 178, 41, 0.07) 66%,
    transparent 75%
  );
  pointer-events: none;
  z-index: -1;
}
.trust-bar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

/* Home service cards: image first, then content */
.service-grid {
  gap: 24px;
}
.service-card {
  padding: 0;
  min-height: 0;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(57, 75, 99, 0.1);
  box-shadow: 0 24px 65px rgba(41, 58, 79, 0.09);
  border-radius: 10px;
}
.service-card:before {
  display: none;
}
.service-photo {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid rgba(44, 63, 87, 0.1);
}
.service-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(17, 25, 35, 0.14));
}
.service-photo-software {
  background-image: linear-gradient(
      135deg,
      rgba(96, 60, 151, 0.05),
      rgba(13, 180, 215, 0.03)
    ),
    url("/assets/img/photo-software.webp");
  background-position: center 45%;
}
.service-photo-it {
  background-image: linear-gradient(
      135deg,
      rgba(26, 147, 209, 0.04),
      rgba(246, 178, 41, 0.03)
    ),
    url("/assets/img/photo-it.webp");
  background-position: center;
}
.service-card-body {
  padding: 30px 32px 34px;
}
.service-card h3 {
  margin-top: 12px;
}
.service-card ul {
  margin: 22px 0 26px;
  gap: 9px 18px;
}

/* Editorial photo story section */
.visual-story-section {
  background: linear-gradient(135deg, #f7f4fb 0%, #f4fbfd 55%, #fff9ef 100%);
}
.visual-story-section:before {
  width: 680px !important;
  height: 420px !important;
  right: -130px !important;
  top: 18% !important;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(96, 60, 151, 0.18),
    rgba(13, 180, 215, 0.15) 42%,
    rgba(246, 178, 41, 0.1) 64%,
    transparent 76%
  ) !important;
  filter: blur(90px) !important;
}
.visual-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: center;
}
.visual-story-copy h2 {
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 10px 0 20px;
  color: var(--heading);
}
.visual-story-copy p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
}
.visual-story-media {
  position: relative;
  min-height: 520px;
}
.story-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(43, 59, 79, 0.17);
  border-radius: 8px;
}
.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  font-size: 12px;
  color: #354257;
  border-radius: 6px;
}
.story-photo-office {
  width: 67%;
  height: 385px;
  left: 0;
  top: 14px;
  transform: rotate(-2deg);
}
.story-photo-network {
  width: 53%;
  height: 315px;
  right: 0;
  bottom: 8px;
  transform: rotate(2.5deg);
}
.visual-story-media:before,
.visual-story-media:after {
  content: "";
  position: absolute;
  z-index: -1;
  transform: rotate(-22deg);
}
.visual-story-media:before {
  width: 180px;
  height: 520px;
  background: linear-gradient(180deg, #603c97, #2d6cb5);
  right: 90px;
  top: -20px;
  opacity: 0.93;
}
.visual-story-media:after {
  width: 115px;
  height: 310px;
  background: linear-gradient(180deg, #0db4d7, #f6b229);
  left: 90px;
  bottom: 4px;
  opacity: 0.86;
}

/* Give generic feature cards colour and depth without rainbow gradients */
.feature-grid {
  gap: 20px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 40px rgba(38, 57, 77, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(38, 57, 77, 0.095);
}
.feature-card:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.52;
  right: -50px;
  top: -48px;
  background: var(--aurora-blue);
}
.feature-card:nth-child(3n + 1):before {
  background: var(--aurora-purple);
}
.feature-card:nth-child(3n + 2):before {
  background: var(--aurora-cyan);
}
.feature-card:nth-child(3n):before {
  background: var(--aurora-gold);
}
.feature-card .num {
  color: var(--purple);
}

/* Service-page hero: photography + Forge Soft geometry */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 82px 0 72px;
  background: #fff;
  isolation: isolate;
}
.page-hero > .shell {
  position: relative;
  z-index: 4;
  padding-right: 43%;
}
.page-hero h1 {
  max-width: 780px;
}
.page-hero .lead {
  max-width: 690px;
}
.page-hero:before {
  content: "";
  position: absolute;
  right: -2%;
  top: 0;
  width: 46%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 18% 56%);
  filter: saturate(0.86) contrast(0.96);
}
.page-software .page-hero:before {
  background-image: linear-gradient(
      rgba(96, 60, 151, 0.06),
      rgba(13, 180, 215, 0.05)
    ),
    url("/assets/img/photo-software.webp");
}
.page-it .page-hero:before {
  background-image: linear-gradient(
      rgba(13, 180, 215, 0.05),
      rgba(45, 108, 181, 0.05)
    ),
    url("/assets/img/photo-it.webp");
}
.page-generic .page-hero:before {
  background-image: linear-gradient(
      rgba(96, 60, 151, 0.04),
      rgba(246, 178, 41, 0.03)
    ),
    url("/assets/img/photo-office.webp");
}
.page-hero:after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 31%;
  top: -180px;
  width: 90px;
  height: 760px;
  transform: rotate(23deg);
  transform-origin: center;
  background: linear-gradient(
    180deg,
    #603c97 0%,
    #2d6cb5 42%,
    #0db4d7 76%,
    #f6b229 100%
  );
  box-shadow: 0 0 0 8px #fff;
}
.page-hero .breadcrumbs {
  color: #768397;
}
.page-hero .breadcrumbs a {
  color: #58677a;
}
.page-hero > .shell:after {
  content: "";
  position: absolute;
  left: -210px;
  top: -150px;
  width: 450px;
  height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(
    circle,
    rgba(96, 60, 151, 0.12),
    rgba(13, 180, 215, 0.06) 48%,
    transparent 70%
  );
  z-index: -1;
}

/* Service content: editorial rather than bullet-heavy */
.article-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 62px;
}
.article {
  max-width: 840px;
}
.article > section {
  padding: 0 0 46px;
  margin: 0 0 42px;
  border-bottom: 1px solid rgba(45, 64, 89, 0.1);
}
.article > section:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}
.article h2 {
  font-size: clamp(31px, 3.4vw, 42px);
  line-height: 1.08;
  margin: 0 0 17px;
}
.article h2:not(:first-child) {
  margin-top: 0;
}
.article p {
  font-size: 17px;
  line-height: 1.72;
  margin: 0 0 20px;
  color: #58677a;
}
.article ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.article li {
  position: relative;
  margin: 0;
  padding: 15px 16px 15px 42px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(247, 250, 253, 0.94)
  );
  border: 1px solid rgba(54, 72, 95, 0.1);
  border-radius: 7px;
  line-height: 1.42;
  color: #455469;
  box-shadow: 0 8px 24px rgba(38, 57, 77, 0.035);
}
.article li:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}
.page-software .article li:before {
  border-color: var(--purple);
}
.article-callout {
  position: relative;
  overflow: hidden;
  margin: 42px 0;
  padding: 30px 32px;
  border: 1px solid rgba(45, 64, 89, 0.09);
  border-left: 3px solid var(--blue);
  background: linear-gradient(
    135deg,
    rgba(241, 246, 250, 0.96),
    rgba(249, 247, 253, 0.96)
  );
  border-radius: 0 9px 9px 0;
  box-shadow: 0 14px 35px rgba(38, 57, 77, 0.05);
}
.article-callout:after {
  content: "";
  position: absolute;
  right: -50px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 180, 215, 0.14),
    transparent 68%
  );
  filter: blur(25px);
}
.related {
  margin-top: 58px;
  padding-top: 34px;
}
.related h3 {
  margin-top: 0;
}
.related-links {
  gap: 12px;
}
.related-links a {
  padding: 17px 18px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 9px 24px rgba(38, 57, 77, 0.035);
}
.related-links a:hover {
  border-color: rgba(26, 147, 209, 0.32);
  transform: translateY(-1px);
}

/* Sticky article navigation gets its own real photograph */
.side-nav {
  border-left: 0;
  padding-left: 0;
}
.side-nav:before {
  content: "On this page";
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #8a95a4;
  margin-bottom: 8px;
}
.side-nav a {
  padding: 8px 0 8px 13px;
  border-left: 1px solid var(--line);
  transition: 0.18s;
}
.side-nav a:hover {
  border-color: var(--blue);
  padding-left: 17px;
}
.side-nav:after {
  content: "";
  display: block;
  height: 220px;
  margin-top: 30px;
  background-size: cover;
  background-position: center;
  border-radius: 7px;
  box-shadow: 0 16px 38px rgba(38, 57, 77, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 82% 100%, 0 100%);
}
.page-software .side-nav:after {
  background-image: linear-gradient(
      145deg,
      rgba(96, 60, 151, 0.1),
      rgba(13, 180, 215, 0.02)
    ),
    url("/assets/img/photo-software.webp");
}
.page-it .side-nav:after {
  background-image: linear-gradient(
      145deg,
      rgba(13, 180, 215, 0.06),
      rgba(45, 108, 181, 0.06)
    ),
    url("/assets/img/photo-it.webp");
}
.page-generic .side-nav:after {
  background-image: url("/assets/img/photo-office.webp");
}

/* More interesting CTA and footer */
.cta-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 10px;
}
.cta-panel:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -130px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  filter: blur(66px);
  background: radial-gradient(
    circle,
    rgba(96, 60, 151, 0.2),
    rgba(13, 180, 215, 0.15) 48%,
    rgba(246, 178, 41, 0.09) 68%,
    transparent 75%
  );
  pointer-events: none;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f2f5f9, #edf3f7);
}
.site-footer:before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(95px);
  background: radial-gradient(
    circle,
    rgba(13, 180, 215, 0.17),
    rgba(96, 60, 151, 0.1) 48%,
    transparent 70%
  );
}
.site-footer:after {
  content: "";
  position: absolute;
  left: -160px;
  top: -200px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(95px);
  background: radial-gradient(circle, rgba(246, 178, 41, 0.1), transparent 68%);
}
.site-footer > .shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 1050px) {
  .page-hero > .shell {
    padding-right: 34%;
  }
  .page-hero:before {
    width: 36%;
    opacity: 0.82;
  }
  .page-hero:after {
    right: 27%;
    width: 72px;
  }
  .visual-story {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .visual-story-media {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 950px) {
  .page-hero {
    min-height: 0;
    padding-bottom: 320px;
  }
  .page-hero > .shell {
    padding-right: 0;
  }
  .page-hero:before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 275px;
    clip-path: polygon(0 18%, 72% 0, 100% 18%, 100% 100%, 0 100%);
    background-position: center;
  }
  .page-hero:after {
    right: auto;
    left: 62%;
    top: auto;
    bottom: -130px;
    width: 62px;
    height: 430px;
    transform: rotate(62deg);
  }
  .article ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .service-photo {
    height: 210px;
  }
  .service-card-body {
    padding: 26px;
  }
  .visual-story-media {
    min-height: 430px;
  }
  .story-photo-office {
    width: 78%;
    height: 310px;
  }
  .story-photo-network {
    width: 62%;
    height: 245px;
  }
  .article ul {
    grid-template-columns: 1fr;
  }
  .article > section {
    padding-bottom: 34px;
    margin-bottom: 34px;
  }
  .page-hero {
    padding-bottom: 265px;
  }
  .page-hero:before {
    height: 225px;
  }
}
@media (max-width: 620px) {
  .hero-home .hero-art img {
    object-fit: cover;
    object-position: 70% center;
  }
  .visual-story-media {
    min-height: 360px;
  }
  .story-photo-office {
    width: 82%;
    height: 255px;
  }
  .story-photo-network {
    width: 62%;
    height: 200px;
  }
  .visual-story-media:before {
    width: 95px;
    height: 350px;
    right: 55px;
  }
  .visual-story-media:after {
    width: 70px;
    height: 220px;
    left: 55px;
  }
  .page-hero {
    padding-top: 56px;
    padding-bottom: 235px;
  }
  .page-hero:before {
    height: 200px;
  }
  .page-hero:after {
    width: 48px;
    left: 66%;
  }
  .article p {
    font-size: 16px;
  }
}

/* =========================================================
   V6 navigation — desktop mega menu + mobile drill-down drawer
   ========================================================= */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.desktop-nav > a,
.mega-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  padding: 9px 12px;
  color: #445064;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s ease, color 0.18s ease;
}
.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.mega-trigger:hover,
.mega-trigger[aria-expanded="true"],
.mega-trigger.is-current {
  background: rgba(255, 255, 255, 0.78);
  color: var(--heading);
}
.mega-trigger svg {
  width: 11px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 0.18s ease;
}
.mega-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.desktop-nav .nav-cta {
  margin-left: 6px;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 4px 15px rgba(38, 57, 77, 0.06);
  padding: 9px 15px;
}
.mega-nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  background: rgba(249, 251, 253, 0.96);
  backdrop-filter: blur(28px) saturate(155%);
  -webkit-backdrop-filter: blur(28px) saturate(155%);
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 52px rgba(34, 52, 73, 0.12);
}
.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-menu:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 12% -30%,
      rgba(96, 60, 151, 0.11),
      transparent 33%
    ),
    radial-gradient(
      circle at 63% -50%,
      rgba(13, 180, 215, 0.09),
      transparent 34%
    ),
    radial-gradient(
      circle at 96% 120%,
      rgba(246, 178, 41, 0.08),
      transparent 30%
    );
}
.mega-menu-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.12fr 1.24fr;
  gap: 46px;
  padding-top: 38px;
  padding-bottom: 42px;
}
.mega-intro {
  padding: 3px 34px 0 0;
  border-right: 1px solid var(--line);
}
.mega-kicker {
  display: block;
  color: var(--purple);
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 10px;
}
.mega-intro h2 {
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 13px;
  color: var(--heading);
}
.mega-intro p {
  font-size: 14px;
  line-height: 1.58;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 310px;
}
.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}
.mega-all-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mega-column {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr;
  gap: 2px;
}
.mega-column-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.mega-column-heading span:not(.mega-icon) {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
}
.mega-column-heading small {
  display: block;
  font-size: 12px;
  color: #7c8898;
  margin-top: 1px;
}
.mega-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(45, 64, 89, 0.08);
  box-shadow: 0 5px 14px rgba(38, 57, 77, 0.05);
}
.mega-icon-code {
  color: var(--purple);
  font-weight: 850;
  font-size: 16px;
}
.mega-icon-shield {
  position: relative;
}
.mega-icon-shield:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 19px;
  border: 2px solid var(--gold);
  clip-path: polygon(50% 0, 100% 18%, 92% 68%, 50% 100%, 8% 68%, 0 18%);
  border-radius: 7px;
}
.mega-column > a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.16s ease, transform 0.16s ease;
}
.mega-column > a:hover,
.mega-column > a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(2px);
}
.mega-column > a strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  color: #263246;
  font-weight: 500;
}
.mega-column > a span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #7a8798;
  margin-top: 2px;
}
.mega-column-software > a:hover strong,
.mega-column-software > a[aria-current="page"] strong {
  color: var(--purple);
}
.mega-column-it > a:hover strong,
.mega-column-it > a[aria-current="page"] strong {
  color: #187eae;
}
.site-header.mega-open {
  background: rgba(249, 251, 253, 0.95);
  border-bottom-color: transparent;
}

.menu-scrim,
.mobile-menu {
  display: none;
}

@media (max-width: 950px) {
  .desktop-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(45, 64, 89, 0.1);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    padding: 7px 8px;
  }
  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 1.5px;
    margin: 4px;
    background: #273345;
    border-radius: 2px;
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .menu-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(22, 31, 44, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .menu-scrim.is-open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    width: min(430px, 94vw);
    height: 100dvh;
    background: rgba(250, 252, 254, 1);
    box-shadow: -26px 0 70px rgba(28, 43, 61, 0.16);
    transform: translateX(102%);
    transition: transform 0.34s cubic-bezier(0.22, 0.78, 0.27, 1);
    overflow: hidden;
    isolation: isolate;
  }
  .mobile-menu:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(
        circle at 90% 0,
        rgba(96, 60, 151, 0.13),
        transparent 28%
      ),
      radial-gradient(
        circle at 4% 84%,
        rgba(13, 180, 215, 0.1),
        transparent 28%
      ),
      radial-gradient(
        circle at 92% 100%,
        rgba(246, 178, 41, 0.08),
        transparent 22%
      );
      overflow: hidden;
  }
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  .mobile-menu-head {
    height: 76px;
    padding: 0 20px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(45, 64, 89, 0.09);
  }
  .mobile-menu-brand img {
    width: 172px;
    height: auto;
    display: block;
  }
  .mobile-menu-close {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(45, 64, 89, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    cursor: pointer;
  }
  .mobile-menu-close span {
    position: absolute;
    left: 10px;
    top: 18px;
    width: 17px;
    height: 1.5px;
    background: #273345;
  }
  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }
  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }
  .mobile-menu-viewport {
    position: relative;
    height: calc(100dvh - 76px);
    overflow: hidden;
  }
  .mobile-panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 28px 22px 36px;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.22, 0.78, 0.27, 1),
      opacity 0.24s ease, visibility 0.32s;
      background-color: #fff;
    overscroll-behavior: contain;
  }
  .mobile-panel[data-mobile-panel="root"] {
    transform: translateX(-24%);
  }
  .mobile-panel.is-active {
    transform: translateX(0) !important;
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu[data-view="root"] .mobile-panel:not(.is-active) {
    transform: translateX(100%);
  }
  .mobile-menu[data-view="software"] .mobile-panel[data-mobile-panel="root"],
  .mobile-menu[data-view="it"] .mobile-panel[data-mobile-panel="root"] {
    transform: translateX(-32%);
    visibility: visible;
    opacity: 0.25;
    pointer-events: none;
  }
  .mobile-panel-copy {
    padding: 4px 4px 20px;
  }
  .mobile-menu-kicker {
    display: block;
    color: var(--purple);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 850;
  }
  .mobile-panel-copy p {
    font-size: 13px;
    color: #738095;
    line-height: 1.5;
    margin: 7px 0 0;
    max-width: 320px;
  }
  .mobile-menu-links {
    display: grid;
    gap: 7px;
  }
  .mobile-menu-links > a,
  .mobile-drill {
    width: 100%;
    appearance: none;
    border: 1px solid rgba(45, 64, 89, 0.09);
    background: rgba(255, 255, 255, 0.67);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 15px 15px 15px 16px;
    border-radius: 9px;
    text-decoration: none;
    color: var(--heading);
    font: inherit;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(38, 57, 77, 0.035);
  }
  .mobile-menu-links > a:active,
  .mobile-drill:active {
    transform: scale(0.995);
  }
  .mobile-menu-links strong,
  .mobile-drill strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
  }
  .mobile-menu-links small,
  .mobile-drill small {
    display: block;
    font-size: 10.5px;
    color: #788597;
    margin-top: 3px;
    line-height: 1.35;
  }
  .mobile-arrow {
    font-size: 18px;
    color: var(--blue);
    margin-left: 12px;
  }
  .mobile-contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 9px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    background: linear-gradient(100deg, #603c97, #3560cf 52%, #168cd4);
    box-shadow: 0 10px 24px rgba(72, 72, 177, 0.18);
  }
  .mobile-back {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 2px 0 18px;
    color: #647184;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  .mobile-panel-title {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-panel-title h2 {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 3px 0 0;
    color: var(--heading);
  }
  .mobile-sub-links {
    display: grid;
    gap: 0;
  }
  .mobile-sub-links a {
    display: block;
    text-decoration: none;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(45, 64, 89, 0.09);
  }
  .mobile-sub-links a strong {
    display: block;
    color: #263246;
    font-size: 13.5px;
    line-height: 1.25;
  }
  .mobile-sub-links a span {
    display: block;
    color: #7b8798;
    font-size: 10.5px;
    line-height: 1.35;
    margin-top: 3px;
  }
  .mobile-sub-links a:active strong {
    color: var(--purple);
  }
}

@media (max-width: 520px) {
  .mobile-menu {
    width: 100vw;
  }
  .mobile-menu-head {
    padding-left: 18px;
    padding-right: 16px;
  }
  .mobile-panel {
    padding-left: 18px;
    padding-right: 18px;
  }
  .brand img {
    width: 174px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .mega-trigger svg,
  .mobile-menu,
  .menu-scrim,
  .mobile-panel {
    transition: none !important;
  }
}

/* =========================
   ForgeDesk product page
   ========================= */
.mega-product-inner{display:grid;grid-template-columns:.82fr 1.18fr;gap:44px;padding:36px 0 40px;align-items:stretch}.mega-menu-product .mega-intro{padding-right:28px}.mega-product-card{position:relative;display:flex;flex-direction:column;justify-content:center;min-height:215px;padding:30px 34px;border:1px solid rgba(60,70,98,.12);border-radius:16px;background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(246,248,253,.86));box-shadow:0 18px 45px rgba(38,57,77,.07);text-decoration:none;overflow:hidden}.mega-product-card:after{content:"";position:absolute;width:250px;height:250px;border-radius:50%;right:-75px;top:-105px;background:radial-gradient(circle,rgba(96,60,151,.15),rgba(26,147,209,.05) 48%,transparent 70%)}.mega-product-card:hover{border-color:rgba(96,60,151,.25);transform:translateY(-1px)}.mega-product-badge{position:absolute;right:22px;top:20px;padding:5px 9px;border-radius:999px;background:#f7eed7;color:#8d6411;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.09em}.mega-product-logo{font-family:var(--font-display);font-size:28px;line-height:1;margin-bottom:18px;color:#182333;letter-spacing:-.03em}.mega-product-logo b{color:var(--purple)}.mega-product-card>strong{position:relative;z-index:1;font-size:18px;line-height:1.28;color:var(--heading);max-width:510px}.mega-product-card>span:not(.mega-product-badge):not(.mega-product-link){position:relative;z-index:1;margin-top:9px;color:#68768a;font-size:12.5px;line-height:1.55;max-width:520px}.mega-product-card .mega-product-link{position:relative;z-index:1;margin-top:18px;color:var(--purple);font-size:12px;font-weight:800}.mobile-early{font-style:normal;margin-left:6px;padding:3px 6px;border-radius:999px;background:#f7eed7;color:#916914;font-size:8px;text-transform:uppercase;letter-spacing:.06em}
.fd-hero{position:relative;overflow:hidden;padding:88px 0 92px;background:linear-gradient(180deg,#fbfbfd 0%,#f5f7fb 100%);border-bottom:1px solid var(--line);isolation:isolate}.fd-hero-glow{position:absolute;inset:-160px -160px auto auto;width:720px;height:720px;border-radius:50%;background:radial-gradient(circle,rgba(93,68,180,.14),rgba(33,144,208,.08) 38%,transparent 68%);z-index:-1}.fd-hero-grid{display:grid;grid-template-columns:.88fr 1.12fr;gap:58px;align-items:center}.fd-label-row{display:flex;align-items:center;gap:14px;margin-bottom:22px}.fd-product-mark{font-family:var(--font-display);font-size:21px;font-weight:750;letter-spacing:-.035em;color:#182333}.fd-product-mark span{color:var(--purple)}.fd-badge{display:inline-flex;align-items:center;width:max-content;padding:6px 10px;border-radius:999px;background:#f7eed7;color:#8d6411;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.1em}.fd-hero h1{font-family:var(--font-display);font-size:clamp(48px,5vw,69px);line-height:1.01;letter-spacing:-.035em;margin:0 0 24px;color:#111820}.fd-hero h1 span{background:linear-gradient(90deg,#603c97,#3560cf 55%,#168cd4);-webkit-background-clip:text;background-clip:text;color:transparent}.fd-lead{max-width:610px;margin:0 0 30px;font-size:19px;line-height:1.58;color:#5b687a}.fd-hero-actions{display:flex;gap:12px;flex-wrap:wrap}.fd-hero-proof{display:flex;gap:22px;flex-wrap:wrap;margin-top:29px;color:#667487;font-size:12px;font-weight:650}.fd-hero-proof span{display:flex;align-items:center;gap:7px}.fd-hero-proof i{width:7px;height:7px;border-radius:50%;background:var(--blue);box-shadow:0 0 0 4px rgba(26,147,209,.09)}.fd-hero-product{position:relative;padding:34px 8px 48px}.fd-screen-wrap{border-radius:19px;overflow:hidden;box-shadow:0 30px 72px rgba(34,49,68,.17);border:1px solid rgba(33,49,70,.1);background:#fff}.fd-screen-wrap img{display:block;width:100%;height:auto}.fd-screen-main{transform:perspective(1600px) rotateY(-3deg) rotateX(1deg)}.fd-float-card{position:absolute;z-index:4;display:flex;align-items:center;gap:12px;width:230px;padding:13px 15px;border-radius:13px;background:rgba(255,255,255,.92);border:1px solid rgba(61,76,97,.12);box-shadow:0 17px 38px rgba(38,57,77,.15);backdrop-filter:blur(15px)}.fd-float-card strong,.fd-float-card small{display:block}.fd-float-card strong{font-size:11.5px;color:#1e2937}.fd-float-card small{font-size:9.5px;line-height:1.35;color:#778396;margin-top:2px}.fd-float-planner{right:-8px;top:8px}.fd-float-email{left:-12px;bottom:0}.fd-ms-grid{display:grid;grid-template-columns:repeat(2,8px);grid-template-rows:repeat(2,8px);gap:2px;flex:0 0 auto}.fd-ms-grid i:nth-child(1){background:#f25022}.fd-ms-grid i:nth-child(2){background:#7fba00}.fd-ms-grid i:nth-child(3){background:#00a4ef}.fd-ms-grid i:nth-child(4){background:#ffb900}.fd-tick{display:grid;place-items:center;width:29px;height:29px;border-radius:50%;background:#eaf7f2;color:#288764;font-weight:900}.fd-strip{background:#fff;border-bottom:1px solid var(--line)}.fd-strip-inner{display:grid;grid-template-columns:repeat(3,1fr)}.fd-strip-inner>div{padding:24px 27px;border-right:1px solid var(--line)}.fd-strip-inner>div:first-child{padding-left:0}.fd-strip-inner>div:last-child{border-right:0}.fd-strip strong,.fd-strip span{display:block}.fd-strip strong{font-size:13px;color:var(--heading)}.fd-strip span{font-size:11px;color:#768397;margin-top:2px}.fd-problem-grid{display:grid;grid-template-columns:1fr .86fr;gap:80px;align-items:start}.fd-problem h2,.fd-showcase-copy h2,.fd-early h2,.fd-contact-copy h2{font-family:var(--font-display);font-size:clamp(34px,4vw,51px);line-height:1.08;letter-spacing:-.025em;color:var(--heading);margin:13px 0 0}.fd-problem-copy{padding-top:31px}.fd-problem-copy p{font-size:17px;line-height:1.72;color:#606e81;margin:0 0 20px}.fd-problem-copy strong{color:#2b3543}.fd-centred-head{align-items:end}.fd-workflow-image{margin:12px 0 36px;border:1px solid var(--line);border-radius:22px;overflow:hidden;box-shadow:var(--shadow-soft);background:#f7f9fc}.fd-workflow-image img{display:block;width:100%;height:auto}.fd-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.fd-steps article{padding:25px 25px 27px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.72)}.fd-steps article>span{font-size:11px;font-weight:850;color:var(--purple)}.fd-steps h3{margin:9px 0 7px;font-size:17px;color:var(--heading)}.fd-steps p{margin:0;color:#69778b;font-size:13px;line-height:1.6}.fd-showcase-grid{display:grid;grid-template-columns:.76fr 1.24fr;gap:65px;align-items:center}.fd-showcase-copy p{font-size:16px;color:#647185;line-height:1.68}.fd-check-list{list-style:none;padding:0;margin:26px 0 0;display:grid;gap:13px}.fd-check-list li{position:relative;padding-left:28px;color:#3e4b5e;font-size:13.5px}.fd-check-list li:before{content:"✓";position:absolute;left:0;top:-1px;display:grid;place-items:center;width:19px;height:19px;border-radius:50%;background:#efe9f7;color:var(--purple);font-size:10px;font-weight:900}.fd-benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.fd-benefit-grid article{padding:28px;border-radius:15px;border:1px solid var(--line);background:rgba(255,255,255,.74);box-shadow:0 8px 28px rgba(38,57,77,.035)}.fd-benefit-icon{display:grid;place-items:center;width:37px;height:37px;margin-bottom:20px;border-radius:10px;background:linear-gradient(135deg,#eee8f7,#e7f4fb);color:var(--purple);font-weight:850}.fd-benefit-grid h3{font-size:17px;color:var(--heading);margin:0 0 8px}.fd-benefit-grid p{font-size:13px;line-height:1.6;color:#69768a;margin:0}.fd-early-panel{display:grid;grid-template-columns:1fr .9fr;gap:65px;padding:54px 58px;border-radius:23px;background:linear-gradient(135deg,#101925,#172536);color:#fff;box-shadow:0 28px 70px rgba(33,49,69,.16)}.fd-early-copy{display:flex;flex-direction:column;align-items:flex-start}.fd-early .eyebrow{color:#9abce4;margin-top:15px}.fd-early h2{color:#fff;font-size:42px}.fd-early-copy p{color:#b9c4d1;line-height:1.68;margin:18px 0 0;font-size:14px}.fd-now-next{display:grid;grid-template-columns:1fr 1fr;gap:14px;align-content:start}.fd-now-next>div{padding:24px 23px;border-radius:14px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09)}.fd-now-next span{display:block;color:#fff;font-weight:750;font-size:13px;margin-bottom:14px}.fd-now-next ul{padding:0;margin:0;list-style:none;display:grid;gap:9px}.fd-now-next li{position:relative;padding-left:17px;color:#aebbc9;font-size:11.5px;line-height:1.4}.fd-now-next li:before{content:"";position:absolute;left:0;top:.55em;width:6px;height:6px;border-radius:50%;background:#5c9fe8}.fd-contact-section{background:linear-gradient(180deg,#f4f7fb,#eef3f8);border-top:1px solid var(--line)}.fd-contact-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:70px;align-items:start}.fd-contact-copy{padding-top:16px}.fd-contact-copy p{font-size:16px;line-height:1.7;color:#647286}.fd-contact-note{display:flex;flex-direction:column;margin-top:28px;padding:18px 20px;border-left:3px solid var(--gold);background:rgba(255,255,255,.63);border-radius:0 10px 10px 0}.fd-contact-note strong{color:var(--heading);font-size:12.5px}.fd-contact-note span{color:#738094;font-size:11px;line-height:1.5;margin-top:3px}.fd-form-card{padding:31px;border-radius:18px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}.fd-submit{width:100%;border:0;cursor:pointer;font:inherit}.fd-form-privacy{font-size:11px;color:var(--muted);margin:0}.fd-form-privacy a{color:inherit}.page-software .fd-hero{margin-top:0}
@media(max-width:1050px){.fd-hero-grid{grid-template-columns:1fr;gap:25px}.fd-hero-copy{max-width:760px}.fd-hero-product{max-width:850px;margin-inline:auto}.fd-float-planner{right:0}.fd-float-email{left:0}.fd-problem-grid,.fd-showcase-grid,.fd-early-panel,.fd-contact-grid{grid-template-columns:1fr}.fd-problem-grid{gap:25px}.fd-problem-copy{padding-top:0}.fd-showcase-grid{gap:42px}.fd-contact-grid{gap:35px}.fd-benefit-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:950px){.mega-product-inner{display:block}.mega-menu-product{display:none}.mobile-menu[data-view="products"] .mobile-panel[data-mobile-panel="root"]{transform:translateX(-32%);visibility:visible;opacity:.25;pointer-events:none}.fd-strip-inner{grid-template-columns:1fr}.fd-strip-inner>div{padding:16px 0;border-right:0;border-bottom:1px solid var(--line)}.fd-strip-inner>div:last-child{border-bottom:0}.fd-steps{grid-template-columns:1fr}.fd-early-panel{padding:36px 30px}.fd-now-next{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.fd-hero{padding:58px 0 66px}.fd-hero-grid{gap:18px}.fd-hero h1{font-size:43px}.fd-lead{font-size:16px}.fd-hero-proof{gap:10px 18px}.fd-hero-product{padding:22px 0 75px}.fd-screen-main{transform:none;border-radius:12px}.fd-float-card{width:210px}.fd-float-planner{right:-6px;top:-12px}.fd-float-email{left:-4px;bottom:18px}.fd-problem h2,.fd-showcase-copy h2,.fd-contact-copy h2{font-size:34px}.fd-benefit-grid{grid-template-columns:1fr}.fd-early-panel{padding:29px 22px;border-radius:16px;gap:35px}.fd-early h2{font-size:34px}.fd-now-next{grid-template-columns:1fr}.fd-form-card{padding:22px 18px}.fd-workflow-image{border-radius:12px}}

/* ForgeDesk deployment section */

.fd-deployment-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(95, 72, 145, 0.14);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 55px rgba(30, 38, 55, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.fd-deployment-flow {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fd-deployment-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(30, 45, 70, 0.08);
    box-shadow: 0 8px 24px rgba(30, 38, 55, 0.05);
}

.fd-deployment-step > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #7547b3 0%,
        #4167d6 55%,
        #1a93d1 100%
    );

    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.fd-deployment-step div {
    min-width: 0;
}

.fd-deployment-step strong {
    display: block;
    margin-bottom: 6px;
    color: #182231;
    font-size: 1rem;
    font-weight: 700;
}

.fd-deployment-step small {
    display: block;
    color: #68788b;
    font-size: 0.9rem;
    line-height: 1.55;
}

.fd-deployment-arrow {
    text-align: center;
    color: #8f9caf;
    font-size: 1.2rem;
    line-height: 1;
}


/* Mobile */

@media (max-width: 760px) {

    .fd-deployment-card {
        padding: 20px;
        border-radius: 20px;
    }

    .fd-deployment-step {
        padding: 18px;
        gap: 14px;
    }

    .fd-deployment-step > span {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

}
