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

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  bottom: 0;
  top: inherit;
  background:
    radial-gradient(ellipse 70% 60% at 12% 75%,
      rgba(190, 230, 255, 0.75) 0%,
      rgba(190, 230, 255, 0) 70%),
    radial-gradient(ellipse 70% 60% at 88% 75%,
      rgba(215, 200, 245, 0.75) 0%,
      rgba(215, 200, 245, 0) 70%),
    linear-gradient(135deg,
      #ffffff 0%,
      #f7fcff 20%,
      #eaf7ff 45%,
      #eeeafb 70%,
      #ddd3ef 100%);
}


body::after {
  background: url(../src/hero-top.png);
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  bottom: inherit;
  top: 0;
  width: 100%;
  height: 479px;
  z-index: 1;
}

.page-content-bg {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 40px;
  background:
    radial-gradient(ellipse 70% 60% at 10% 75%,
      rgba(190, 230, 255, 0.8),
      transparent 70%),
    radial-gradient(ellipse 70% 60% at 90% 75%,
      rgba(215, 200, 245, 0.8),
      transparent 70%),
    linear-gradient(180deg,
      #ffffff 0%,
      #f8fcff 20%,
      #eaf7ff 45%,
      #eeeafb 70%,
      #ddd3ef 100%);
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  color: #212B36;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── DESIGN TOKENS ─── */
:root {
  --grad: linear-gradient(160deg, #32A5FB 0%, #391E95 100%);
  --dark: #212B36;
  --mid: #454F5B;
  --light-bg: #F9FAFB;
  --black: #000;
  --radius-card: 32px;
  --radius-sm: 16px;
}

/* ─── UTILITIES ─── */
.container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 2vw, 1.25rem);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 4px;
  background-image: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 20px;
  transition: opacity .2s;
  font-family: 'Manrope', sans-serif;
}

.btn-gradient:hover {
  opacity: .85;
}

.section-title {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 1.3;
  color: var(--dark);
}

.body-text {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.5;
  color: var(--mid);
}

.text-dark {
  color: var(--dark);
}

.service-card:hover .service-card-name {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: 0.4s;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(33, 43, 54, .06);
}

.nav-inner {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(16px, 6vw, 148px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
  margin-inline: auto;
}

.nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: -.2px;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--dark);
}

.nav-link--active {
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.375rem;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #b2e7fe 0%, #b2e7fe 57%, #fff 100%);
  z-index: 0;
}

.hero-scan-line {
  position: absolute;
  top: 410px;
  left: calc(41.67% + 142px);
  width: 8px;
  height: 844px;
  background: radial-gradient(ellipse at center, rgba(33, 43, 54, 1) 0%, rgba(33, 43, 54, 0) 100%);
  z-index: 1;
  opacity: .6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 0px;
  text-align: center;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 200px;
  z-index: 5;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  line-height: 1.4;
  color: var(--dark);
  max-width: 1307px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  padding-inline: 1.25rem;
  color: var(--mid);
  max-width: 1307px;
  margin-inline: auto;
}

.hero-image-wrap {
  position: relative;
  margin-top: 60px;
  height: 700px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 367px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

/* ─── TRUST ─── */
.trust {
  padding: 80px 0 180px;
  text-align: center;
}

.trust-label {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 40px;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1600px;
  padding-inline: 1.25rem;
  margin-inline: auto;
}

.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.trust-num {
  font-weight: 700;
  font-size: clamp(2.75rem, 4.5vw, 4.625rem);
  line-height: 1.4;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}

.trust-desc {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--mid);
}

.trust-divider {
  width: 1px;
  height: 140px;
  background: var(--dark);
  opacity: .3;
  flex-shrink: 0;
}

/* ─── ABOUT ─── */
.about {
  position: relative;
  background: var(--light-bg);
  padding: 180px 0;
  overflow: hidden;
}

.about-image-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 63%;
  z-index: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(249, 250, 251, 0) 80%, #F9FAFB 100%);
}

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

.about-text {
  max-width: 645px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text .section-title {
  max-width: 644px;
}

/* ─── SERVICES ─── */
.services {
  background: var(--black);
  padding: 180px 0;
}

.services-header {
  margin-bottom: 80px;
}

.services-title {
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.3;
  color: #fff;
  max-width: 663px;
  margin-bottom: 16px;
}

.services-sub {
  font-size: 1.25rem;
  color: #D7D7D7;
  max-width: 711px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #1A1A1A;
  border-radius: var(--radius-sm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 224px;
  min-height: 224px;
  justify-content: flex-end;
  position: relative;
  transition: 0.4s;
}

.service-card-icon {
  width: auto;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
  position: absolute;
  right: 32px;
  top: 32px;
  align-self: flex-start;
}

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-name {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}

.service-card-desc {
  font-size: .875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 59px;
}

/* ─── QA/QC ─── */
.qaqc {
  position: relative;
  height: 250vh;
  background: #fff;
  padding: 180px 0 90px 0;
}

.qaqc-sticky {
  position: sticky;
  top: 80px;
  height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.qaqc-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 105px;
}

/* Arc Navigation Wrapper */
.qaqc-arc-wrapper {
  position: relative;
  width: 23%;
  height: auto;
  user-select: none;
}

.qaqc-arc-wrapper svg {
  height: auto;
}

.qaqc-arc-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.qaqc-arc-nodes {
  position: absolute;
  inset: 0;
  padding-inline: 2rem;
}

.qaqc-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.qaqc-node:focus-visible {
  box-shadow: 0 0 0 2px #32A5FB;
}

/* Individual node positions along the circular arc */
.qaqc-node[data-index="0"] {
  top: -0.8%;
  left: 26.6%;
}

.qaqc-node[data-index="1"] {
  top: 15.6%;
  left: 80%;
}

.qaqc-node[data-index="2"] {
  top: 50.0%;
  left: 100%;
}

.qaqc-node[data-index="3"] {
  top: 81.4%;
  left: 80%;
}

.qaqc-node[data-index="4"] {
  top: 99%;
  left: 26.6%;
}

.node-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0;
  outline: 1px solid #a6c5eb;
  transform: scale(0);
  outline-offset: 5px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.node-num {
  font-size: 1.75rem;
  font-weight: 600;
  color: #B0BCCB;
  letter-spacing: -0.02em;
  transition: all 0.35s ease;
  font-family: inherit;
}

.qaqc-node:hover .node-num {
  color: #64748B;
}

.qaqc-node.active .node-dot {
  opacity: 1;
  transform: scale(1);
}

.qaqc-node.active .node-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212B36;
}

/* Content Panel & Slides */
.qaqc-content-wrapper {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  width: 77%;
}

.qaqc-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.qaqc-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.qaqc-text {
  display: flex;
  flex-direction: column;
}

.qaqc-text .section-title {
  font-size: 3.75rem;
  line-height: 130%;
  color: #212B36;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.qaqc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  max-width: 75%;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  box-shadow: 0 2px 8px #DAE0E7;
  transition: all 0.25s ease;
}

.tag:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #1D4ED8;
  transform: translateY(-1px);
}

.qaqc-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qaqc-image img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.5s ease;
}

.qaqc-slide.active .qaqc-image img {
  animation: qaqcFloat 4s ease-in-out infinite alternate;
}

@keyframes qaqcFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* ─── WHY US ─── */
.why-us {
  padding: 90px 0;
  background: #fff;
}

.why-us-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
  max-width: 770px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-bar {
  height: 4px;
  width: 100%;
  border-radius: 40px;
  background: linear-gradient(84.3deg, #32A5FB 0%, #391E95 200.33%);
  transform: scaleX(0);
  transform-origin: left center;
}

.stats-row.is-visible .stat-bar {
  animation: statBarFill .9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.stats-row.is-visible .stat-item:nth-child(2) .stat-bar {
  animation-delay: .08s;
}

.stats-row.is-visible .stat-item:nth-child(3) .stat-bar {
  animation-delay: .16s;
}

.stats-row.is-visible .stat-item:nth-child(4) .stat-bar {
  animation-delay: .24s;
}

@keyframes statBarFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.stat-num {
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4.625rem);
  line-height: 1.4;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
  margin-top: 8px;
}

.stat-label {
  font-size: 1.375rem;
  color: var(--mid);
}

.why-us-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-us-col {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  font-size: 1.375rem;
  color: var(--mid);
}

.why-icon {
  display: flex;
  flex-shrink: 0;
}

.why-divider {
  height: 1px;
  background: rgba(37, 36, 48, .2);
  border-radius: 40px;
}

/* ─── PLATFORMS ─── */
.platforms {
  padding: 90px 0 200px 0;
  background: #fff;
  overflow: hidden;
}

.platforms .section-title {
  text-align: center;
  max-width: 825px;
  margin: 0 auto 32px;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 1.3;
  color: var(--dark);
}

.platforms .body-text {
  text-align: center;
  max-width: 825px;
  margin: 0 auto 40px;
}

.platform-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.platform-stage::after {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../src/platform-stage-bg.png')no-repeat top center;
  z-index: 1;
  background-size: 100% 50%;
  background-position: top center;
}

.platform-tab {
  padding: 10px 14px;
  border-radius: 12px;
  background: #F3F4F6;
  font-size: 18px;
  font-weight: 500;
  color: #475569;
  line-height: 1.4;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
}

.platform-tab:hover {
  background: #E5E7EB;
  color: #0F172A;
}

.platform-tab--active {
  background: #000000;
  color: #ffffff;
  font-weight: 600;
}

.platform-tab--active:hover {
  background: #111827;
  color: #ffffff;
}

/* Platform Arc Stage & Nodes */
.platform-stage {
  position: relative;
  width: 100%;
  max-width: 948px;
  height: 500px;
  margin: 0 auto;
  background: url('../src/bim-platform-bg.png') no-repeat center top -340px / 828px 788px;
}

.platform-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(8px);
  pointer-events: none;
  z-index: 2;
}

.platform-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.platform-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.platform-node-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

/* Circle background variations matching reference screenshot */
.platform-circle--navy {
  background: #041A41;
}

.platform-circle--dark {
  background: #001116;
}

.platform-circle--black {
  background: #000000;
}

.platform-circle--light-blue {
  background: #C6DCF8;
}

.platform-circle--soft-blue {
  background: #D4E5F9;
}

.platform-circle--cyan {
  background: #0284C7;
}

.platform-circle--pink {
  background: #F8D7E8;
}

/* Node Text & SVG Styles */
.platform-node-text {
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
}

.platform-node-text--b {
  color: #1E40AF;
  font-size: 1.75rem;
  font-weight: 800;
}

.platform-node-text--rvt {
  color: #60A5FA;
  font-size: 0.9375rem;
}

.platform-node-text--ifc {
  color: #FFFFFF;
  font-size: 0.9375rem;
}

.platform-node-text--dwg {
  color: #F43F5E;
  font-size: 0.9375rem;
}

.platform-node-text--e57 {
  color: #9333EA;
  font-size: 0.9375rem;
}

.platform-node-text--rcp {
  color: #0284C7;
  font-size: 0.9375rem;
}

.platform-node-text--faro {
  color: #38BDF8;
  font-size: 0.8125rem;
}

.platform-node-text--leica {
  color: #EF4444;
  font-size: 0.8125rem;
}

.platform-node-text--matterport {
  color: #FFFFFF;
  font-size: 0.6875rem;
}

.platform-node-text--trimble {
  color: #D97706;
  font-size: 0.75rem;
}

.platform-node-text--riegl {
  color: #1D4ED8;
  font-size: 0.8125rem;
}

.platform-node:hover .platform-node-circle {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.platform-node-circle img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.platform-tooltip-tag {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #041A41;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(4, 26, 65, 0.3);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 20;
}

.platform-tooltip-tag::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #041A41;
}

.platform-node:hover .platform-tooltip-tag {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


/* Precise Node Positions matching reference screenshot */
.platform-node--pos1 {
  left: 20%;
  top: 30%;
}

.platform-node--pos2 {
  left: 24.5%;
  top: 78%;
}

.platform-node--pos3 {
  left: 39.5%;
  top: 51%;
}

.platform-node--pos4 {
  left: 65.5%;
  top: 67.5%;
}

.platform-node--pos5 {
  left: 90.5%;
  top: 37%;
}

.platform-node--pos6 {
  left: 50%;
  top: 88%;
}
.platform-node--pos6 .platform-circle--pink img{
  width: 45px;
  height: 45px;
}

/* ─── TAB 2: SUPPORTED FILE FORMATS (8 NODES) ─── */
.fmt-circle--light {
  background: linear-gradient(90deg,
      rgba(50, 165, 251, 0.2) 0%,
      rgba(57, 30, 149, 0.2) 100%);
  ;
  color: #1D4ED8;
}

.fmt-circle--light .fmt-node-content .fmt-node-label {
  color: #212B36;
}

.fmt-circle--blue {
  background: linear-gradient(90deg, rgba(50, 165, 251, 1) 0%, rgba(57, 30, 149, 1) 100%);
  color: #FFFFFF;
}

.fmt-circle--dark {
  background: #041A41;
  color: #FFFFFF;
}

.fmt-node-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.fmt-node-label {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Precise 8 Node Positions matching reference screenshot */
.platform-node--fmt1 {
  left: 14%;
  top: 25%;
}

.platform-node--fmt2 {
  left: 29%;
  top: 35.5%;
}

.platform-node--fmt3 {
  left: 20%;
  top: 67.5%;
}

.platform-node--fmt4 {
  left: 40.5%;
  top: 68.5%;
}

.platform-node--fmt5 {
  left: 56%;
  top: 55.5%;
}

.platform-node--fmt6 {
  left: 66%;
  top: 78%;
}

.platform-node--fmt7 {
  left: 76%;
  top: 51.5%;
}

.platform-node--fmt8 {
  left: 93%;
  top: 19.5%;
}

/* ─── TAB 3: SUPPORTED SCAN PLATFORMS (3 NODES) ─── */
.scan-circle--leica {
  background: #E60012;
  color: #FFFFFF;
}

.scan-circle--faro {
  background: #D4E5F9;
  color: #003865;
}

.scan-circle--matterport {
  background: #FCE7F3;
  color: #1F2937;
}

.scan-matterport-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.scan-matterport-text {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.72rem;
  color: #1F2937;
  line-height: 1;
}

.scan-tooltip-red {
  margin-top: 6px;
  background: #E60012;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
  white-space: nowrap;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
  left: 22px;
  top: 5px;
}

.scan-tooltip-red::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #E60012;
}

.platform-node:hover .scan-tooltip-red {
  transform: translateY(-2px);
}

/* 3 Scan Node Positions matching 3rd tab reference screenshot */
.scan-node--leica {
  left: 26.5%;
  top: 32%;
}

.scan-node--faro {
  left: 47.5%;
  top: 86%;
}

.scan-node--matterport {
  left: 80%;
  top: 40%;
}



/* ─── AEC (SUPPORTING) ─── */
.aec {
  background: var(--black);
  padding: 160px 0;
  overflow: hidden;
}

.aec .container {
  margin-bottom: 80px;
}

.aec-title {
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.3;
  color: #fff;
  max-width: 917px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 16px;
}

.aec-sub {
  font-size: 1.25rem;
  color: #D7D7D7;
  max-width: 711px;
  margin-inline: auto;
  text-align: center;
}

.aec-ticker-wrap {
  position: relative;
  overflow: hidden;
}

.aec-fade-left,
.aec-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 400px;
  z-index: 2;
}

.aec-fade-left {
  left: 0;
  background: linear-gradient(to right, #000, rgba(0, 0, 0, 0));
}

.aec-fade-right {
  right: 0;
  background: linear-gradient(to left, #000, rgba(0, 0, 0, 0));
}

.aec-ticker {
  overflow: hidden;
}

.aec-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ticker-fwd 30s linear infinite;
}

.aec-track--rev {
  animation-direction: reverse;
}

@keyframes ticker-fwd {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.aec-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #101010;
  border-radius: var(--radius-sm);
  padding: 24px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  line-height: 26px;
  white-space: nowrap;
  height: 107px;
}

/* ─── CASE STUDIES ─── */
.case-studies {
  padding: 180px 0 90px 0;
  background: #fff;
}

.case-inner {
  background: var(--light-bg);
  border-radius: var(--radius-card);
  padding: 120px;
  display: grid;
  grid-template-columns: 562px 674px;
  gap: 84px;
  align-items: center;
}

.case-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-text .case-list-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.case-text .section-title {
  max-width: 100%;
}

.case-text .btn-gradient {
  max-width: max-content;
}

.case-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.case-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  color: var(--mid);
}

.dot-grad {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to right, #0578CE, #391E95);
  flex-shrink: 0;
}

.case-image {
  min-width: 0;
  width: 100%;
}

.case-image>img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 505px;
  object-fit: cover;
}

/* Case studies before/after compare */
.case-compare {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 7;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #e8eaed;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.case-compare-img,
.case-image .case-compare-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.case-compare-img--after,
.case-image .case-compare-img--after {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.case-compare-before-pane,
.case-image .case-compare-before-pane {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}

.case-compare-img--before,
.case-image .case-compare-img--before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
}

.case-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 44px;
  margin-left: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  outline: none;
}

.case-compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.hero-inner .case-compare-knob {
  width: 60px;
  height: 60px;
}

.case-compare-knob {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-compare-label {
  position: absolute;
  bottom: 16px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}

.case-compare-label--before {
  left: 16px;
  background: rgba(33, 43, 54, 0.85);
}

.case-compare-label--after {
  right: 16px;
  background: #1e88e5;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  align-items: self-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 80px;
}

.testimonials-header .section-title {
  max-width: 770px;
  margin-bottom: 24px;
}

.testimonials-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(33, 43, 54, .05);
  transition: opacity .2s;
  padding: 0;
  flex-shrink: 0;
}

.nav-arrow:hover {
  opacity: .85;
}

.nav-arrow--disabled,
.nav-arrow.slick-disabled {
  opacity: .37;
  cursor: default;
  pointer-events: none;
}

.testimonials .container.testimonial-main {
  margin-inline-end: 0;
  padding-inline-end: 0;
  margin-left: calc((100% - 1600px) / 2);
  max-width: 100%;
}

.testimonials-slider {
  margin: 0;
}

.testimonials-slider .slick-list {
  margin: 0 -12px;
}

.testimonials-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.testimonials-slider .slick-slide {
  height: auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.testimonials-slider .slick-slide>div {
  height: 100%;
}

.testimonial-slide {
  height: 100%;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 459px;
  height: 100%;
  box-sizing: border-box;
}

.quote-mark {
  margin-bottom: 24px;
}

.testimonial-text {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--dark);
  flex: 1;
}

.testimonial-author {
  margin-top: 32px;
}

.author-name {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 12px;
}

.testimonial-card .author-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-role {
  font-size: .875rem;
  color: var(--mid);
  margin-bottom: 12px;
}

.stars {
  color: #FFAB00;
  font-size: 1.25rem;
}

/* ─── BENEFITS ─── */
.benefits {
  padding: 90px 0;
  background: #fff;
}

.benefits-inner {
  display: grid;
  grid-template-columns: 636px 1fr;
  background: #F9FAFB;
  border-radius: 32px;
  align-items: center;
}

.benefits-card {
  background: var(--black);
  border-radius: var(--radius-card);
  padding: 80px;
  min-height: 698px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
  box-shadow: 0 4px 4px 0 #0000003d;
}

.benefits-title {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  line-height: 1.3;
  color: #fff;
  padding: 0 20px 0 0;
}

.benefits-sub {
  font-size: 1.25rem;
  color: #D7D7D7;
  line-height: 1.5;
}

.benefits-list-wrap {
  padding: 80px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0px 16px;
  font-size: 1.375rem;
  color: var(--mid);
  border-bottom: 1px solid rgba(37, 36, 48, .2);
  padding-bottom: 20px;
}

.benefits-list li svg {
  flex-shrink: 0;
}

/* ─── FAQ ─── */
.faq {
  padding: 90px 0;
  background: #fff;
}

.faq .section-title {
  margin-bottom: 32px;
}

.faq .body-text {
  margin-bottom: 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--light-bg);
  border-radius: 6px;
  overflow: hidden;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  cursor: pointer;
  list-style: none;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark);
  gap: 16px;
}


.faq-summary .faq-icon {
  padding: 8px;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: none !important;
}


.faq-item[open] .faq-icon svg {
  transform: rotate(180deg) !important;
}

.faq-icon--closed {
  background: #fff;
}

.faq-answer {
  padding: 0 32px 32px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--mid);
}

/* ─── CTA ─── */
.cta {
  padding: 0 0 90px 0;
  text-align: center;
}

.cta .section-title {
  margin-bottom: 32px;
}

.cta .body-text {
  margin-bottom: 32px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-radius: 32px;
  margin: 0 auto;
  max-width: 1600px;
  width: calc(100% - 80px);
  overflow: hidden;
}

.footer-inner {
  padding: clamp(40px, 5vw, 80px) clamp(16px, 6vw, 148px) clamp(24px, 3vw, 40px);
}

.footer-top {
  display: flex;
  gap: 92px;
  margin-bottom: 60px;
}

.footer-brand {
  flex-shrink: 0;
  max-width: 346px;
}

.footer-logo {
  height: 60px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -.32px;
}

.footer-links {
  display: flex;
  gap: 92px;
  flex: 1;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}

.footer-col-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.footer-col a {
  font-size: 1rem;
  line-height: 40px;
  color: #fff;
  opacity: .8;
  transition: opacity .2s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(30deg, #32A5FB, #391E95);
  opacity: .5;
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -.32px;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: #fff;
  opacity: .8;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ─── RESPONSIVE ─── */


@media (max-width: 1600px) {
  .container {
    max-width: 95%;
  }

  .testimonials .container.testimonial-main {
    margin-inline-start: auto;
    max-width: 95%;
    padding: 0;
  }

  .about-text {
    max-width: 42%;
  }

  .case-inner {
    grid-template-columns: 1fr 1fr;
    padding: 42px;
  }

  .about,
  .services,
  .qaqc,
  .why-us,
  .aec,
  .case-studies,
  .benefits,
  .testimonials,
  .faq,
  .platforms {
    padding: 80px 0;
  }

  .qaqc-tags {
    max-width: 100%;
  }

  .qaqc-text .section-title {
    font-size: 2.75rem;
  }

  .benefits-inner {
    grid-template-columns: 550px 1fr;
  }

  .benefits-card,
  .benefits-list-wrap {
    padding: 60px;
  }

}

@media (max-width: 1200px) {
  .nav-inner {
    padding-inline: 40px;
  }

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-lists {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
  }

  .benefits-card {
    min-height: auto;
    padding: 40px;
  }

  .benefits-list-wrap {
    padding: 30px;
  }

  .footer-top {
    flex-direction: column;
    gap: 48px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about,
  .services,
  .qaqc,
  .why-us,
  .aec,
  .case-studies,
  .benefits,
  .testimonials,
  .faq,
  .platforms {
    padding: 60px 0;
  }

  .qaqc-text .section-title {
    font-size: 2.5rem;
    line-height: 1;
  }

  .qaqc-arc-wrapper {
    width: 28%;
  }

  .qaqc-content-wrapper {
    width: 72%;
  }

  .qaqc-inner {
    gap: 80px;
  }

  .qaqc-slide {
    grid-template-columns: 1.5fr 1fr;
  }

  .aec-fade-left,
  .aec-fade-right {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .hero-inner .case-compare-knob {
    width: 40px;
    height: 40px;
  }

  .fmt-node-label {
    font-size: 13px;
  }

  .page-content-bg {
    padding-top: 40px;
  }

  .platform-tab {
    font-size: 16px;
  }

  body::after {
    height: 150px;
    background-size: 100% 150px;
    background-repeat: no-repeat;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .nav-arrow svg {
    height: 20px;
    width: 20px;
  }

  .qaqc-arc-wrapper svg {
    display: none;
  }

  .play-btn a img {
    width: 45px;
  }

  .faq .body-text {
    margin-bottom: 50px;
  }

  .benefits-list li {
    padding: 0px 10px;
    padding-bottom: 16px;
    font-size: 1.1rem;
  }

  .benefits-list {
    gap: 10px;
  }

  .qaqc-image img {
    max-height: 280px;
  }

  .qaqc-inner {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-cta {
    font-size: .875rem;
    padding: 10px 16px;
  }

  .nav-inner {
    gap: 16px;
  }

  .hero {
    padding-top: 0px;
    min-height: auto;
  }

  .hero-image-wrap {
    margin-top: 24px;
  }

  .about-image-col {
    display: none;
  }

  .about-inner {
    padding-block: 48px;
  }

  .services {
    padding-block: 48px;
  }

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

  .case-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 32px;
  }

  .case-compare-label {
    padding: 6px 10px;
    bottom: 10px;
  }

  .case-compare-knob {
    width: 38px;
    height: 38px;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonial-card {
    min-height: 380px;
    padding: 24px;
  }

  .testimonial-text {
    font-size: 1.35rem;
    line-height: normal;
  }

  .benefits-list-wrap {
    padding: 30px 20px 20px;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    flex-direction: column;
    gap: 24px;
  }

  .trust-divider {
    width: 80px;
    height: 1px;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .cta {
    padding: 0 0 48px 0;
  }

  .page-content {
    padding-top: 0px;
    padding-bottom: 32px;
  }

  .footer {
    width: calc(100% - 24px);
    margin: 0 auto;
    border-radius: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .faq-summary {
    font-size: 1.2rem;
    padding: 20px;
  }

  .faq-answer {
    font-size: 1rem;
    padding: 0 20px 20px;
  }

  .about {
    padding: 0px 0;
  }

  .about-text {
    max-width: 100%;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .qaqc-arc-wrapper {
    width: 100%;
  }

  .qaqc-arc-svg {
    display: none;
  }

  .qaqc-arc-nodes {
    position: relative;
    display: flex;
    justify-content: start;
    gap: 50px;
    align-items: center;
    width: 100%;
    height: 100%;
    border-bottom: 2px dashed #E2E8F0;
    padding-bottom: 12px;
  }

  .qaqc-node[data-index] {
    position: relative;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .qaqc-slide {
    position: relative;
    grid-template-columns: 1fr;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateY(16px);
  }

  .qaqc-slide.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    transform: translateY(0);
  }

  .qaqc-content-wrapper {
    min-height: auto;
    display: block;
    padding-inline: 2rem;
    width: 100%;
  }

  .qaqc-text .section-title {
    font-size: 2rem;
  }

  .qaqc-sticky {
    position: static;
    height: auto;
  }

  .qaqc {
    height: auto;
  }

  .why-item span {
    font-size: 1.1rem;
  }

  .qaqc-node.active .node-num,
  .node-num {
    font-size: 2.0rem;
  }

  .qaqc-node .node-dot {
    display: none;
  }

  .qaqc-tags {
    max-width: 100%;
  }

  .scan-tooltip-red {
    font-size: 14px;
    padding: 6px 10px;
  }

  .platform-node-circle.scan-circle--leica svg {
    width: 30px;
    height: 30px;
  }

  .platform-node.scan-node--faro svg {
    width: 40px;
    height: 40px;
  }

  .platform-node.scan-node--matterport svg {
    width: 45px;
    height: 45px;
  }


  .qaqc,
  .aec,
  .trust,
  .case-studies,
  .benefits,
  .testimonials,
  .faq,
  .platforms {
    padding: 48px 0;
  }

  .aec .container {
    margin-bottom: 50px;
  }

  .platform-stage {
    height: 400px;
    background-size: 100% 700px;
  }

  .platform-node-circle {
    width: 68px;
    height: 68px;
  }

  .platform-node-circle svg {
    width: 22px;
    height: 22px;
  }

  .platform-node--pos1 {
    left: 7%;
    top: 28%;
  }

  .platform-node--pos2 {
    left: 19%;
    top: 69%;
  }

  .platform-node--pos3 {
    left: 48%;
    top: 75%;
  }

  .platform-node--pos4 {
    left: 74%;
    top: 60%;
  }

  .platform-node--pos5 {
    left: 93%;
    top: 28%;
  }

  .platform-node--pos6 {
    left: 55%;
    top: 78%;
  }

  .platform-node--fmt1 {
    left: 5%;
    top: 19%;
  }

  .platform-node--fmt2 {
    left: 29%;
    top: 35.5%;
  }

  .platform-node--fmt3 {
    left: 13%;
    top: 53.5%;
  }

  .platform-node--fmt4 {
    left: 40.5%;
    top: 68.5%;
  }

  .platform-node--fmt5 {
    left: 56%;
    top: 45.5%;
  }

  .platform-node--fmt6 {
    left: 66%;
    top: 71%;
  }

  .platform-node--fmt7 {
    left: 84%;
    top: 47.5%;
  }

  .platform-node--fmt8 {
    left: 93%;
    top: 19.5%;
  }

  .scan-node--leica {
    left: 24%;
    top: 45%;
  }

  .scan-node--faro {
    left: 47.5%;
    top: 74%;
  }

  .scan-node--matterport {
    left: 75%;
    top: 54%;
  }

  .qaqc-text .section-title br {
    display: none;
  }
}

@media (max-width: 600px) {
  .platform-tooltip-tag {
    display: none;
  }

  .platform-stage {
    height: 270px;
    background: url(../src/bim-platform-bg.png) no-repeat center top -150px / 100% 340px;
  }

  .case-inner {
    padding: 20px;
  }

  .case-compare-label {
    display: none;
  }

  .faq-summary {
    font-size: 1rem;
    padding: 16px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 16px 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .body-text {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 1.2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-num {
    font-size: 2.5rem;
  }

  .platform-tabs {
    flex-direction: column;
    align-items: center;
  }

  .services-title {
    font-size: 1.75rem;
  }

  .nav-cta {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .node-num,
  .qaqc-node.active .node-num {
    font-size: 1.5rem;
  }

  .qaqc-arc-nodes {
    gap: 20px;
  }

  .qaqc-node {
    padding: 8px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .cta .btn-gradient {
    width: auto;
  }

  .service-card-icon {
    right: 16px;
    top: 16px;
  }

  .service-card {
    padding: 20px 110px 20px 20px;
  }

  .container {
    max-width: 97%;
  }

  .aec-fade-left,
  .aec-fade-right {
    width: 100px;
  }
}