:root {
  --ink: #101828;
  --muted: #667085;
  --soft: #344054;
  --line: #dce1ff;
  --paper: #ffffff;
  --wash: #f7f8ff;
  --brand: rgb(126, 139, 255);
  --brand-deep: #5363e6;
  --brand-soft: #f0f2ff;
  --brand-tint: #d9deff;
  --blue: rgb(126, 139, 255);
  --cyan: #a9b4ff;
  --green: #18a985;
  --red: rgb(126, 139, 255);
  --violet: #8d6cff;
  --shadow: 0 18px 48px rgba(70, 82, 166, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -4%, rgba(126, 139, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f0f2ff 48%, #fbfdff 100%);
}

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

.site-header,
.section-shell,
.footer-inner,
.copyright {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 64px;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.92);
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.18);
  backdrop-filter: blur(16px);
}

.brand img,
.site-footer img {
  display: block;
  width: 150px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.nav a {
  color: #cbd5e1;
  font-size: 14px;
  white-space: nowrap;
}

.nav a:hover {
  color: #fff;
}

.language-toggle {
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: #080b10;
  background: #f7faff;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 34px;
  min-height: 640px;
  margin-top: 28px;
  padding: 54px 38px 42px;
  border: 1px solid #d6ecfb;
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 201, 139, 0.17), transparent 28%),
    linear-gradient(135deg, #edf8ff 0%, #fbfeff 50%, #edfff7 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow,
.mini-title {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.green {
  color: var(--green);
}

.cyan {
  color: #8debff;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead,
.section-heading > p {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-lead {
  max-width: 550px;
  margin: 24px 0 10px;
}

.hero-sub {
  max-width: 550px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #9ca8ff 58%, var(--brand-deep));
  box-shadow: 0 12px 28px rgba(126, 139, 255, 0.24);
}

.btn.secondary {
  border: 1px solid #d6dcff;
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  display: grid;
  align-content: center;
  gap: 16px;
}

.architecture-card,
.partner-strip,
.showcase-card,
.why-grid article,
.service-grid article,
.contact-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(31, 91, 128, 0.09);
  backdrop-filter: blur(12px);
}

.architecture-card {
  min-height: 350px;
  padding: 22px;
  border-radius: 22px;
}

.architecture-card.is-switching,
.showcase-card.is-switching {
  animation: softPulse 0.52s ease;
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  color: var(--green);
  font-weight: 800;
}

.architecture-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 18px;
  min-height: 282px;
  padding-top: 32px;
}

.node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid #c9e1f3;
  border-radius: 14px;
  color: var(--soft);
  background: #f4faff;
  font-size: 14px;
  font-weight: 800;
  animation: floatNode 4s ease-in-out infinite;
}

.node:nth-child(3),
.node:nth-child(6) {
  animation-delay: 0.6s;
}

.node:nth-child(4),
.node:nth-child(7) {
  animation-delay: 1.1s;
}

.node-main {
  grid-column: 1 / -1;
  justify-self: center;
  width: 200px;
  color: var(--blue);
  background: #eaf4ff;
  border-color: #a8d7ff;
}

.node-green {
  color: var(--green);
  background: #effdf7;
  border-color: #b9eedc;
}

.node-orange {
  color: #d66b00;
  background: #fff7ed;
  border-color: #fed7aa;
}

.node-red {
  color: var(--red);
  background: #fff1f3;
  border-color: #fdbac5;
}

.connectors {
  position: absolute;
  inset: 18px 0 0;
  z-index: 1;
  width: 100%;
  height: 300px;
  pointer-events: none;
}

.connectors path {
  fill: none;
  stroke: #95b7d3;
  stroke-dasharray: 7 9;
  stroke-width: 2;
  animation: dashFlow 8s linear infinite;
}

.carousel-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.carousel-tab {
  min-height: 92px;
  padding: 15px;
  border: 1px solid #d7e8f3;
  border-radius: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.carousel-tab:hover,
.carousel-tab.active {
  transform: translateY(-3px);
}

.carousel-tab strong,
.carousel-tab span {
  display: block;
}

.carousel-tab strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
}

.carousel-tab span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.carousel-tab.active {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(126, 139, 255, 0.14);
}

.solution-hero {
  position: relative;
  display: block;
  min-height: 690px;
  padding: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 201, 139, 0.18), transparent 28%),
    radial-gradient(circle at 20% 78%, rgba(17, 107, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #edf8ff 0%, #fbfeff 48%, #effff8 100%);
  overflow: hidden;
}

.hero-floating {
  position: absolute;
  top: 42px;
  left: 36px;
  z-index: 4;
  width: min(540px, calc(100% - 72px));
  padding: 28px;
  border: 1px solid rgba(219, 231, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(31, 91, 128, 0.13);
  backdrop-filter: blur(18px);
}

.hero-floating h1 {
  max-width: 480px;
  font-size: clamp(34px, 4vw, 48px);
}

.hero-floating .hero-lead {
  max-width: 480px;
  margin-top: 20px;
  font-size: 16px;
}

.solution-board {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(197, 220, 235, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.42);
  background-size: 32px 32px;
  overflow: hidden;
}

.board-topline {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 3;
  display: flex;
  gap: 18px;
  color: #6b7b8e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-lines {
  position: absolute;
  inset: 72px 34px 20px;
  width: calc(100% - 68px);
  height: calc(100% - 92px);
  z-index: 1;
}

.line-flow {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: dashFlow 8s linear infinite;
}

.line-sales {
  stroke: rgba(17, 107, 255, 0.55);
}

.line-service {
  stroke: rgba(226, 47, 70, 0.5);
}

.line-collab {
  stroke: rgba(0, 169, 120, 0.58);
}

.solution-hub {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 178px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid #acd7ff;
  border-radius: 28px;
  color: var(--blue);
  text-align: center;
  background: rgba(234, 244, 255, 0.92);
  box-shadow: 0 18px 42px rgba(17, 107, 255, 0.16);
  transform: translate(-50%, -50%);
  animation: hubBreath 4.8s ease-in-out infinite;
}

.solution-hub span,
.solution-hub strong,
.lane-label,
.lane-chip,
.process-steps span {
  position: relative;
  z-index: 2;
}

.solution-hub span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-hub strong {
  display: block;
  margin-top: 8px;
  color: #123a5a;
  font-size: 18px;
  line-height: 1.28;
}

.solution-lane {
  position: absolute;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(216, 232, 242, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(31, 91, 128, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.solution-lane.is-active {
  transform: translateY(-5px);
  border-color: rgba(17, 107, 255, 0.42);
  box-shadow: 0 18px 44px rgba(17, 107, 255, 0.13);
}

.lane-label {
  display: block;
  margin-bottom: 12px;
  color: #475467;
  font-size: 13px;
  font-weight: 900;
}

.lane-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 7px 8px 0;
  padding: 0 12px;
  border: 1px solid rgba(201, 225, 243, 0.88);
  border-radius: 999px;
  color: #344054;
  background: rgba(244, 250, 255, 0.9);
  font-size: 13px;
  font-weight: 760;
}

.acquisition {
  left: 34px;
  top: 252px;
  width: 288px;
}

.sales-flow {
  right: 44px;
  top: 90px;
  width: 468px;
}

.complaint {
  left: 48px;
  bottom: 72px;
  width: 266px;
}

.service-flow {
  right: 42px;
  bottom: 68px;
  width: 488px;
}

.collab-tools {
  left: 50%;
  bottom: 32px;
  width: 330px;
  transform: translateX(-50%);
}

.collab-tools.is-active {
  transform: translateX(-50%) translateY(-5px);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #102033;
  background: #edf5ff;
  font-size: 13px;
  font-weight: 850;
}

.process-steps span::after {
  content: "→";
  margin-left: 10px;
  color: var(--blue);
}

.process-steps span:last-child::after {
  content: "";
  margin: 0;
}

.service-steps span {
  background: #fff2f4;
}

.service-steps span::after {
  color: var(--red);
}

.service-flow p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 13px;
}

.solution-hero {
  display: block;
  min-height: auto;
  padding: 44px 36px 34px;
}

.hero-intro {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.hero-intro h1 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(34px, 4.2vw, 52px);
}

.hero-intro .hero-lead {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 16px;
}

.hero-intro .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.solution-board {
  position: relative;
  inset: auto;
  height: 590px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(17, 107, 255, 0.14), transparent 23%),
    radial-gradient(circle at 18% 22%, rgba(18, 184, 255, 0.13), transparent 24%),
    radial-gradient(circle at 82% 80%, rgba(0, 201, 139, 0.14), transparent 22%),
    linear-gradient(rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.5);
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto;
}

.solution-board::before {
  content: "";
  position: absolute;
  inset: 84px 108px 78px;
  border: 1px solid rgba(17, 107, 255, 0.14);
  border-radius: 50%;
  transform: rotate(-6deg);
}

.solution-board::after {
  content: "";
  position: absolute;
  inset: 120px 206px 116px;
  border: 1px solid rgba(0, 169, 120, 0.16);
  border-radius: 50%;
  transform: rotate(8deg);
}

.solution-lines {
  position: absolute;
  inset: 48px 42px 30px;
  width: calc(100% - 84px);
  height: calc(100% - 78px);
}

.orbit {
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 4 12;
}

.orbit-sales {
  stroke: rgba(17, 107, 255, 0.22);
}

.orbit-service {
  stroke: rgba(226, 47, 70, 0.2);
}

.solution-hub {
  top: 49%;
  width: 196px;
  min-height: 126px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.96), rgba(239, 255, 248, 0.92));
}

.solution-lane {
  padding: 14px;
  border-radius: 22px;
}

.solution-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.35));
  pointer-events: none;
}

.lane-label {
  color: #2f3b4a;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.acquisition {
  left: 34px;
  top: 128px;
  width: 310px;
}

.sales-flow {
  right: 44px;
  top: 112px;
  width: 506px;
}

.complaint {
  left: 50px;
  bottom: 112px;
  width: 280px;
}

.service-flow {
  right: 42px;
  bottom: 92px;
  width: 520px;
}

.collab-tools {
  left: 50%;
  bottom: 24px;
  width: 376px;
}

.icon-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.icon-chip {
  display: inline-grid;
  grid-template-columns: 22px auto;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px 0 8px;
  border: 1px solid rgba(201, 225, 243, 0.9);
  border-radius: 999px;
  color: #344054;
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 8px 18px rgba(31, 91, 128, 0.07);
}

.icon-chip::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.icon-qr::before {
  background:
    linear-gradient(90deg, transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(135deg, var(--ink), var(--blue));
}

.icon-web::before {
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255,255,255,0.8) 44% 56%, transparent 56%),
    linear-gradient(135deg, #12b8ff, #4b68ff);
}

.icon-mail::before {
  background:
    linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.9) 46% 55%, transparent 56%),
    linear-gradient(45deg, #4b68ff, #00a978);
}

.icon-call::before {
  border-radius: 50%;
  background: linear-gradient(135deg, #e22f46, #ff8a9a);
}

.icon-campaign::before {
  background: linear-gradient(135deg, #ffb020, #12b8ff);
}

.icon-bid::before {
  background: linear-gradient(135deg, #7e8bff, #116bff);
}

.icon-referral::before,
.icon-wecom::before,
.icon-ding::before,
.icon-feishu::before,
.icon-mini::before {
  background: linear-gradient(135deg, #00c98b, #12b8ff);
}

.compact-icons .icon-chip {
  grid-template-columns: 20px auto;
  min-height: 34px;
}

.partner-strip {
  display: grid;
  grid-template-columns: 0.32fr minmax(0, 2.15fr) 96px;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 22px;
  border-radius: 22px;
}

.partner-heading .mini-title {
  margin: 0;
  color: var(--brand);
  font-size: 16px;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid #f0d7dc;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 139, 255, 0.38);
  box-shadow: 0 14px 30px rgba(70, 82, 166, 0.12);
}

.partner-card img {
  width: 88px;
  max-height: 38px;
  object-fit: contain;
}

.partner-card span {
  color: #475467;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
}

.partner-note {
  display: grid;
  justify-content: end;
  justify-items: end;
  gap: 4px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}

.showcase {
  margin-top: 28px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 30px;
  min-height: 308px;
  padding: 26px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 18%, rgba(18, 184, 255, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.showcase-card.visual-right {
  grid-template-columns: 0.76fr 1.24fr;
}

.showcase-card.visual-right .showcase-stage {
  order: 2;
}

.showcase-card.visual-right .showcase-copy {
  order: 1;
}

.showcase-copy h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.18;
}

.showcase-copy p:last-child {
  max-width: 470px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.showcase-stage {
  position: relative;
  min-height: 300px;
}

.scene-visual {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  border: 1px solid rgba(244, 215, 220, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(126, 139, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,247,248,0.82));
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
  overflow: hidden;
  pointer-events: none;
}

.scene-visual.active {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.scene-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.scene-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 22px;
  background: transparent;
}

.scene-journey,
.scene-global {
  border: 0;
  background: transparent;
}

.scene-journey::after,
.scene-global::after {
  display: none;
}

.scene-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(126, 139, 255, 0.14);
  pointer-events: none;
}

.scene-node.main-node,
.collab-hub {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(126, 139, 255, 0.28);
}

.journey-orbit {
  position: absolute;
  inset: 32px;
  border: 1px dashed rgba(126, 139, 255, 0.36);
  border-radius: 50%;
  animation: slowRotate 16s linear infinite;
}

.journey-orbit span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #344054;
  background: #fff;
  border: 1px solid #dce1ff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(70, 82, 166, 0.1);
  animation: counterRotate 16s linear infinite;
}

.journey-orbit span:nth-child(1) { top: -16px; left: 50%; transform: translateX(-50%); }
.journey-orbit span:nth-child(2) { right: -20px; top: 46%; }
.journey-orbit span:nth-child(3) { bottom: -16px; left: 50%; transform: translateX(-50%); }
.journey-orbit span:nth-child(4) { left: -22px; top: 46%; }

.global-map {
  position: relative;
  width: min(360px, 92%);
  height: 210px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 22% 52%, rgba(126, 139, 255, 0.18), transparent 18%),
    radial-gradient(circle at 72% 38%, rgba(24, 169, 133, 0.16), transparent 18%),
    linear-gradient(135deg, #fff, #f7f8ff);
  border: 1px solid #dce1ff;
}

.global-map::before,
.global-map::after {
  content: "";
  position: absolute;
  inset: 42px 34px;
  border: 1px dashed rgba(126, 139, 255, 0.28);
  border-radius: 50%;
}

.global-map::after {
  inset: 68px 70px;
  border-color: rgba(24, 169, 133, 0.24);
}

.social-dot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(31, 91, 128, 0.14);
}

.dot-whatsapp { left: 54px; top: 78px; background: #18a985; }
.dot-linkedin { left: 154px; top: 42px; background: #2f7ddf; }
.dot-facebook { right: 62px; top: 82px; background: #3867d6; }
.dot-mail { left: 142px; bottom: 32px; background: var(--brand); }
.dot-call { right: 136px; bottom: 42px; background: #7c5cff; }

.collab-grid {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.collab-grid span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid #dce1ff;
  border-radius: 16px;
  color: #344054;
  background: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(70, 82, 166, 0.08);
}

.scene-collab .collab-hub {
  position: relative;
  z-index: 2;
}

.ai-bulb {
  position: relative;
  width: 150px;
  height: 190px;
  border-radius: 78px 78px 42px 42px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.92), transparent 28%),
    linear-gradient(135deg, #f0f2ff, #d9deff);
  border: 2px solid rgba(126, 139, 255, 0.38);
  box-shadow: 0 24px 48px rgba(126, 139, 255, 0.18);
}

.ai-bulb::after {
  content: "";
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: -22px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--brand), var(--brand-deep));
}

.brain-line {
  position: absolute;
  inset: 46px 34px 66px;
  border: 4px solid var(--brand);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.brain-line::before,
.brain-line::after {
  content: "";
  position: absolute;
  border: 4px solid var(--brand);
  border-right-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
}

.brain-line::before {
  width: 42px;
  height: 42px;
  left: -8px;
  top: 18px;
}

.brain-line::after {
  width: 34px;
  height: 34px;
  right: -6px;
  top: 28px;
}

.ai-sparks span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(126, 139, 255, 0.72);
}

.ai-sparks span:nth-child(1) { top: 54px; left: 90px; }
.ai-sparks span:nth-child(2) { top: 78px; right: 86px; }
.ai-sparks span:nth-child(3) { bottom: 70px; right: 128px; }

.floating-card {
  position: absolute;
  width: 230px;
  padding: 20px;
  border: 1px solid #d8e8f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 91, 128, 0.12);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.floating-card strong {
  margin-top: 12px;
  font-size: 21px;
}

.card-a {
  top: 18px;
  left: 18px;
}

.card-b {
  top: 92px;
  right: 36px;
  animation-delay: 0.7s;
}

.card-c {
  left: 92px;
  bottom: 8px;
  animation-delay: 1.3s;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.showcase-dot {
  border: 1px solid #d5e5ef;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-dot.active {
  color: #fff;
  border-color: transparent;
  background: var(--brand);
}

.dot-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.showcase-dot.active .dot-icon {
  background: rgba(255, 255, 255, 0.22);
}

.dot-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.showcase-dot.active .dot-icon::before {
  background: #fff;
}

.icon-global::before {
  border-radius: 3px;
  background: #18a985;
}

.icon-office::before {
  border-radius: 2px;
  box-shadow: 0 -5px 0 #8d6cff, 0 5px 0 #8d6cff;
  background: #8d6cff;
}

.icon-ai::before {
  border-radius: 50% 50% 35% 35%;
  background: #ffb547;
}

.section-heading {
  margin: 108px 0 38px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading > p {
  max-width: 880px;
  margin: 18px 0 0;
}

.why-grid,
.service-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.why-grid article,
.service-grid article,
.contact-grid article {
  border-radius: 18px;
  padding: 22px;
}

.why-grid article {
  min-height: 210px;
}

.service-grid {
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
}

.service-grid article {
  min-height: 238px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(18, 184, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #b8d6eb;
  box-shadow: 0 20px 48px rgba(31, 91, 128, 0.14);
}

.service-featured {
  grid-column: span 3;
  min-height: 292px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(18, 184, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #102033, #123a5a 56%, #0f6b68);
}

.service-featured p,
.service-featured strong {
  color: #d7ecf8;
}

.service-featured .service-mark {
  background: #8debff;
}

.service-ai {
  grid-column: span 3;
  min-height: 292px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 201, 139, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.9);
}

.why-grid h3,
.service-grid h3,
.contact-grid h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.28;
}

.why-grid p,
.service-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.why-grid strong,
.service-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 15px;
}

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

.service-grid strong {
  position: relative;
  z-index: 1;
  max-width: 260px;
}

.service-featured p,
.service-featured strong {
  color: #d7ecf8;
}

.service-mark {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.blue-mark {
  background: var(--blue);
}

.red-mark {
  background: var(--red);
}

.green-mark {
  background: var(--green);
}

.violet-mark {
  background: var(--violet);
}

.industries {
  margin-top: 108px;
  padding: 0 0 60px;
}

.industry-shell {
  padding: 58px 38px 66px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 184, 255, 0.2), transparent 30%),
    #102033;
  overflow: hidden;
}

.section-heading.invert {
  margin: 0 0 54px;
}

.section-heading.invert p {
  color: #c7d7e8;
}

.industry-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 38px;
}

.industry-timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 12%;
  height: 2px;
  background: #31465e;
}

.industry-timeline article {
  position: relative;
}

.industry-timeline span {
  position: absolute;
  top: -38px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(18, 184, 255, 0.1);
}

.industry-timeline article:nth-child(2) span {
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0, 201, 139, 0.1);
}

.industry-timeline article:nth-child(3) span {
  background: #7e8bff;
  box-shadow: 0 0 0 8px rgba(126, 139, 255, 0.1);
}

.industry-timeline article:nth-child(4) span {
  background: #ffb020;
  box-shadow: 0 0 0 8px rgba(255, 176, 32, 0.1);
}

.industry-timeline h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.industry-timeline p {
  color: #c7d7e8;
  font-size: 15px;
  line-height: 1.7;
}

.contact {
  padding-bottom: 76px;
}

.qr {
  width: 132px;
  height: 132px;
  margin: 20px auto;
  background:
    linear-gradient(90deg, transparent 45%, #101828 45% 55%, transparent 55%),
    linear-gradient(transparent 45%, #101828 45% 55%, transparent 55%),
    repeating-linear-gradient(90deg, #101828 0 10px, transparent 10px 20px),
    repeating-linear-gradient(0deg, #101828 0 10px, #f4f8fc 10px 20px);
  background-color: #f4f8fc;
  border: 12px solid #f4f8fc;
}

.qr-green {
  background-color: #effdf7;
  border-color: #effdf7;
  filter: hue-rotate(90deg) saturate(1.2);
}

.mail-card {
  display: grid;
  place-items: center;
  min-height: 106px;
  margin: 26px 0 18px;
  border: 1px solid #cbe2f5;
  border-radius: 14px;
  color: var(--blue);
  background: #f4faff;
  font-size: 16px;
  font-weight: 800;
  word-break: break-word;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.lead-form input {
  width: 100%;
  height: 42px;
  border: 1px solid #d8e8f2;
  border-radius: 10px;
  padding: 0 12px;
  color: var(--ink);
  background: #f4f8fc;
  font: inherit;
}

.lead-form button {
  width: 126px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--green));
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  color: #cbd5e1;
  background: #101828;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 56px;
  padding: 42px 0 24px;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #f9fafb;
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  font-size: 14px;
}

.copyright {
  padding: 0 0 26px;
  color: #94a3b8;
  font-size: 13px;
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0.6deg);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes softPulse {
  0% {
    opacity: 0.65;
    transform: translateY(6px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .language-toggle {
    margin-left: auto;
  }

  .hero,
  .showcase-card {
    grid-template-columns: 1fr;
  }

  .solution-hero {
    display: block;
    min-height: auto;
    padding: 38px 24px 28px;
  }

  .hero-intro {
    width: min(720px, 100%);
  }

  .solution-board {
    height: 720px;
  }

  .solution-board::before {
    inset: 130px 70px 112px;
  }

  .solution-board::after {
    inset: 176px 142px 156px;
  }

  .sales-flow,
  .service-flow {
    right: 24px;
    width: 390px;
  }

  .acquisition {
    top: 150px;
    left: 24px;
    width: 282px;
  }

  .sales-flow {
    top: 144px;
  }

  .complaint {
    left: 24px;
    bottom: 138px;
  }

  .collab-tools {
    bottom: 26px;
  }

  .partner-strip,
  .why-grid,
  .contact-grid,
  .industry-timeline,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-card,
  .service-featured,
  .service-ai {
    grid-column: span 1;
    min-height: 238px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section-shell,
  .footer-inner,
  .copyright {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    top: 12px;
    height: 62px;
    padding: 0 14px;
  }

  .brand img,
  .site-footer img {
    width: 132px;
  }

  .language-toggle {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 38px 20px 26px;
  }

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

  .hero-floating,
  .solution-board,
  .solution-hub,
  .solution-lane {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }

  .solution-board {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-floating {
    width: auto;
    margin: 14px;
  }

  .board-topline,
  .solution-lines {
    display: none;
  }

  .solution-hub {
    min-height: 96px;
    order: -1;
  }

  .solution-lane,
  .collab-tools.is-active {
    transform: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead,
  .section-heading > p {
    font-size: 17px;
  }

  .carousel-tabs,
  .partner-strip,
  .partner-logos,
  .showcase-dots,
  .why-grid,
  .contact-grid,
  .industry-timeline,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .carousel-tabs,
  .partner-logos,
  .showcase-dots {
    display: grid;
  }

  .partner-strip,
  .showcase-card {
    padding: 22px;
  }

  .partner-logos img {
    width: 100%;
  }

  .architecture-map {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 22px;
  }

  .node-main {
    width: 100%;
  }

  .connectors {
    display: none;
  }

  .showcase-stage {
    min-height: 410px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 14px;
  }

  .section-heading {
    margin-top: 82px;
  }

  .industry-timeline::before {
    display: none;
  }

  .industry-timeline span {
    position: static;
    display: block;
    margin-bottom: 16px;
  }
}

/* Final hero reset: left copy, right CRM flow */
.solution-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 34px;
  min-height: 650px;
  padding: 54px 38px 42px;
}

.solution-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: left;
}

.solution-hero .hero-copy h1 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.15;
}

.solution-hero .hero-copy .hero-lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.7;
}

.solution-hero .hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.flow-board {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  min-height: auto;
  height: auto;
  padding: 52px 22px 22px;
  border: 1px solid rgba(197, 220, 235, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 30px 30px;
  box-shadow: 0 18px 46px rgba(31, 91, 128, 0.11);
  backdrop-filter: blur(14px);
}

.flow-board::before,
.flow-board::after {
  content: none;
}

.flow-board .board-topline {
  position: absolute;
  top: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  color: #667085;
  font-size: 12px;
  font-weight: 850;
}

.flow-section {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(216, 232, 242, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(31, 91, 128, 0.07);
}

.flow-section p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.flow-hub {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid #acd7ff;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, #eaf4ff, #effff8);
  font-size: 15px;
  font-weight: 900;
}

.flow-board .lane-label {
  margin-bottom: 10px;
}

.flow-board .icon-row {
  gap: 7px;
}

.flow-board .process-steps {
  gap: 7px;
}

.flow-board .process-steps span,
.flow-board .icon-chip {
  min-height: 32px;
  font-size: 12px;
}

.flow-board .solution-orbit,
.flow-board .solution-lines,
.flow-board .solution-hub,
.flow-board .solution-lane {
  display: none;
}

@media (max-width: 1080px) {
  .solution-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-hero .hero-copy,
  .solution-hero .hero-copy h1,
  .solution-hero .hero-copy .hero-lead {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .solution-hero {
    padding: 34px 18px 24px;
  }

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

  .flow-board {
    padding: 50px 14px 14px;
  }
}

/* Stable CRM solution hero override */
.solution-hero {
  display: block;
  min-height: auto;
  padding: 40px 32px 32px;
  overflow: hidden;
}

.hero-intro {
  position: relative;
  z-index: 5;
  width: min(760px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.hero-intro h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.16;
}

.hero-intro .hero-lead {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.72;
}

.hero-intro .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.solution-board {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  grid-template-rows: auto 1fr 1fr auto;
  gap: 18px;
  min-height: 610px;
  height: auto;
  padding: 58px 34px 30px;
  border: 1px solid rgba(197, 220, 235, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(17, 107, 255, 0.12), transparent 20%),
    radial-gradient(circle at 18% 22%, rgba(18, 184, 255, 0.11), transparent 24%),
    radial-gradient(circle at 82% 80%, rgba(0, 201, 139, 0.12), transparent 22%),
    linear-gradient(rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.56);
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto;
}

.solution-board::before,
.solution-board::after {
  content: none;
}

.board-topline {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 4;
  display: flex;
  gap: 16px;
  color: #667085;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.solution-orbit {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px dashed rgba(17, 107, 255, 0.18);
  border-radius: 999px;
}

.solution-orbit-one {
  inset: 118px 98px 118px;
  transform: rotate(-4deg);
}

.solution-orbit-two {
  inset: 164px 190px 164px;
  border-color: rgba(0, 169, 120, 0.18);
  transform: rotate(7deg);
}

.solution-lines {
  display: none;
}

.solution-hub {
  position: relative;
  left: auto;
  top: auto;
  z-index: 3;
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  justify-self: center;
  width: 200px;
  min-height: 128px;
  transform: none;
}

.solution-lane {
  position: relative;
  z-index: 3;
  inset: auto;
  width: auto;
  transform: none;
}

.solution-lane.is-active,
.collab-tools.is-active {
  transform: translateY(-5px);
}

.acquisition {
  grid-column: 1;
  grid-row: 2;
}

.sales-flow {
  grid-column: 3;
  grid-row: 2;
}

.complaint {
  grid-column: 1;
  grid-row: 3;
}

.service-flow {
  grid-column: 3;
  grid-row: 3;
}

.collab-tools {
  grid-column: 1 / -1;
  grid-row: 4;
  justify-self: center;
  width: min(420px, 100%);
}

@media (max-width: 1080px) {
  .solution-hero {
    padding: 36px 24px 28px;
  }

  .solution-board {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
    padding-top: 62px;
  }

  .solution-hub,
  .acquisition,
  .sales-flow,
  .complaint,
  .service-flow,
  .collab-tools {
    grid-column: auto;
    grid-row: auto;
  }

  .solution-hub,
  .collab-tools {
    grid-column: 1 / -1;
  }

  .solution-orbit {
    display: none;
  }
}

@media (max-width: 720px) {
  .solution-hero {
    padding: 28px 16px 20px;
  }

  .hero-intro h1 {
    font-size: 32px;
  }

  .solution-board {
    grid-template-columns: 1fr;
    padding: 54px 16px 18px;
  }

  .board-topline {
    left: 16px;
    right: 16px;
    justify-content: space-between;
    gap: 8px;
    font-size: 10px;
  }

  .process-steps span,
  .icon-chip {
    font-size: 12px;
  }
}

/* Absolute final override: clean two-column hero */
.site-header + main .solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 34px;
  min-height: 650px;
  height: auto;
  padding: 54px 38px 42px;
  overflow: hidden;
}

.site-header + main .solution-hero .hero-copy {
  position: relative;
  inset: auto;
  z-index: 3;
  width: auto;
  max-width: 520px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transform: none;
  backdrop-filter: none;
}

.site-header + main .solution-hero .hero-copy h1 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.16;
  letter-spacing: 0;
}

.site-header + main .solution-hero .hero-copy .hero-lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.7;
}

.site-header + main .solution-hero .hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.site-header + main .solution-hero .flow-board {
  position: relative;
  inset: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  align-self: center;
  min-height: 0;
  height: auto;
  width: 100%;
  padding: 52px 22px 22px;
  border: 1px solid rgba(197, 220, 235, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 107, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.76);
  background-size: 30px 30px;
  box-shadow: 0 18px 46px rgba(31, 91, 128, 0.11);
  transform: none;
  backdrop-filter: blur(14px);
}

.site-header + main .solution-hero .flow-board::before,
.site-header + main .solution-hero .flow-board::after {
  content: none;
  display: none;
}

.site-header + main .solution-hero .flow-board .board-topline {
  position: absolute;
  top: 18px;
  left: 22px;
  right: 22px;
  display: block;
  color: #667085;
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.site-header + main .solution-hero .flow-section {
  position: relative;
  display: block;
  padding: 15px;
  border: 1px solid rgba(216, 232, 242, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(31, 91, 128, 0.07);
  transform: none;
}

.site-header + main .solution-hero .flow-section::before {
  content: none;
  display: none;
}

.site-header + main .solution-hero .flow-hub {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid #acd7ff;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, #eaf4ff, #effff8);
  font-size: 15px;
  font-weight: 900;
}

.site-header + main .solution-hero .flow-board .solution-orbit,
.site-header + main .solution-hero .flow-board .solution-lines,
.site-header + main .solution-hero .flow-board .solution-hub,
.site-header + main .solution-hero .flow-board .solution-lane {
  display: none;
}

@media (max-width: 1080px) {
  .site-header + main .solution-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .site-header + main .solution-hero .hero-copy,
  .site-header + main .solution-hero .hero-copy h1,
  .site-header + main .solution-hero .hero-copy .hero-lead {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header + main .solution-hero {
    padding: 34px 18px 24px;
  }

  .site-header + main .solution-hero .hero-copy h1 {
    font-size: 34px;
  }
}

/* CRM lifecycle blueprint diagram */
.site-header + main .solution-hero .crm-blueprint-card {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(197, 220, 235, 0.9);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(17, 107, 255, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(31, 91, 128, 0.11);
  overflow: hidden;
}

.crm-blueprint {
  display: block;
  width: 100%;
  height: auto;
}

.crm-blueprint text {
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.system-pill,
.blueprint-panel {
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.system-pill:hover,
.blueprint-panel:hover {
  transform: translateY(-3px);
}

@media (max-width: 1080px) {
  .site-header + main .solution-hero .crm-blueprint-card {
    max-width: 760px;
  }
}

/* Consulting-style lifecycle blueprint */
.site-header + main .solution-hero .consulting-blueprint {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(197, 220, 235, 0.95);
  border-radius: 24px;
  background:
    linear-gradient(rgba(17, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 107, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.86);
  background-size: 28px 28px;
  box-shadow: 0 18px 46px rgba(31, 91, 128, 0.11);
  backdrop-filter: blur(14px);
}

.blueprint-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid #dceaf4;
}

.blueprint-head span {
  color: #101828;
  font-size: 18px;
  font-weight: 900;
}

.blueprint-head strong {
  color: #667085;
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.system-layer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.system-layer span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid #d8e8f2;
  border-radius: 999px;
  color: #344054;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 850;
}

.lifecycle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
}

.life-card {
  min-height: 232px;
  padding: 18px;
  border: 1px solid #d8e8f2;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(31, 91, 128, 0.07);
}

.primary-life {
  border-color: #b9d8f3;
  background: linear-gradient(180deg, #f6fbff, #ffffff);
}

.life-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  color: #116bff;
  background: #eaf4ff;
  font-size: 12px;
  font-weight: 900;
}

.life-card h3 {
  margin: 14px 0 10px;
  color: #101828;
  font-size: 22px;
  line-height: 1.1;
}

.life-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}

.life-arrow {
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 24px;
  font-weight: 900;
}

.mini-tags,
.service-split {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.mini-tags span,
.service-split span,
.step-line span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #e2edf5;
  border-radius: 999px;
  color: #344054;
  background: #f8fbff;
  font-size: 12px;
  font-weight: 800;
}

.step-line {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.step-line span {
  justify-content: space-between;
  width: 100%;
}

.step-line span::after {
  content: "→";
  color: #116bff;
}

.step-line span:last-child::after {
  content: "✓";
  color: #00a978;
}

.crm-centerline {
  display: grid;
  place-items: center;
  min-height: 46px;
  margin-top: 16px;
  border: 1px solid #acd7ff;
  border-radius: 16px;
  color: #116bff;
  background: linear-gradient(135deg, #eaf4ff, #effff8);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.repurchase-loop {
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px dashed #c7ddec;
  border-radius: 16px;
  color: #667085;
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.5;
  text-align: center;
}

.site-header + main .solution-hero .crm-blueprint-card {
  display: none;
}

@media (max-width: 1080px) {
  .lifecycle-row {
    grid-template-columns: 1fr;
  }

  .life-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 720px) {
  .system-layer {
    grid-template-columns: repeat(2, 1fr);
  }

  .blueprint-head {
    display: block;
  }

  .blueprint-head strong {
    display: block;
    margin-top: 8px;
    text-align: left;
  }
}

/* Generated consulting blueprint image */
.site-header + main .solution-hero .blueprint-image-card {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(197, 220, 235, 0.95);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(31, 91, 128, 0.12);
  overflow: hidden;
}

.blueprint-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.site-header + main .solution-hero .consulting-blueprint,
.site-header + main .solution-hero .crm-blueprint-card,
.site-header + main .solution-hero .flow-board {
  display: none;
}

/* Hero background blueprint layout */
.site-header + main .solution-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  padding: 0;
  border: 1px solid #c7ddec;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(247, 251, 255, 0.88) 28%, rgba(247, 251, 255, 0.24) 56%, rgba(247, 251, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.72) 0%, rgba(247, 251, 255, 0.08) 35%, rgba(247, 251, 255, 0.18) 100%),
    url("assets/crm-consulting-blueprint.png");
  background-size: cover;
  background-position: center right;
  box-shadow: 0 22px 60px rgba(31, 91, 128, 0.16);
  overflow: hidden;
}

.site-header + main .solution-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 184, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(0, 201, 139, 0.12), transparent 26%);
  pointer-events: none;
}

.site-header + main .solution-hero .hero-copy {
  position: relative;
  z-index: 2;
  width: min(500px, calc(100% - 48px));
  max-width: 500px;
  margin: 0 0 42px 42px;
  padding: 28px;
  border: 1px solid rgba(216, 232, 242, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(31, 91, 128, 0.12);
  backdrop-filter: blur(16px);
}

.site-header + main .solution-hero .hero-copy h1 {
  max-width: 440px;
  font-size: clamp(32px, 3.7vw, 46px);
}

.site-header + main .solution-hero .hero-copy .hero-lead {
  max-width: 440px;
  font-size: 16px;
}

.site-header + main .solution-hero .blueprint-image-card {
  display: none;
}

@media (max-width: 1080px) {
  .site-header + main .solution-hero {
    min-height: 680px;
    background:
      linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(247, 251, 255, 0.76) 44%, rgba(247, 251, 255, 0.18) 100%),
      url("assets/crm-consulting-blueprint.png");
    background-size: cover;
    background-position: center right;
  }
}

@media (max-width: 720px) {
  .site-header + main .solution-hero {
    min-height: 760px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.22) 0%, rgba(247, 251, 255, 0.54) 42%, rgba(247, 251, 255, 0.98) 72%),
      url("assets/crm-consulting-blueprint.png");
    background-size: 150% auto;
    background-position: center top;
  }

  .site-header + main .solution-hero .hero-copy {
    width: calc(100% - 28px);
    margin: 0 14px 18px;
    padding: 22px;
  }

  .site-header + main .solution-hero .hero-copy h1 {
    font-size: 32px;
  }
}

/* Restore split hero with larger diagram and transparent copy */
.site-header + main .solution-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(680px, 1.28fr);
  align-items: center;
  gap: 28px;
  min-height: 680px;
  padding: 44px 26px 44px 42px;
  border: 1px solid #c7ddec;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 201, 139, 0.12), transparent 28%),
    linear-gradient(135deg, #edf8ff 0%, #fbfeff 52%, #edfff7 100%);
  box-shadow: 0 22px 60px rgba(31, 91, 128, 0.14);
}

.site-header + main .solution-hero .hero-copy {
  width: auto;
  max-width: 480px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header + main .solution-hero .hero-copy h1 {
  max-width: 470px;
  font-size: clamp(34px, 3.7vw, 48px);
}

.site-header + main .solution-hero .hero-copy .hero-lead {
  max-width: 470px;
  font-size: 16px;
}

.site-header + main .solution-hero .blueprint-image-card {
  display: block;
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(197, 220, 235, 0.95);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(31, 91, 128, 0.12);
  overflow: hidden;
}

.site-header + main .solution-hero .blueprint-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 1180px) {
  .site-header + main .solution-hero {
    grid-template-columns: 1fr;
    padding: 38px 26px 30px;
  }

  .site-header + main .solution-hero .hero-copy,
  .site-header + main .solution-hero .hero-copy h1,
  .site-header + main .solution-hero .hero-copy .hero-lead {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header + main .solution-hero {
    min-height: auto;
    padding: 32px 16px 20px;
  }
}

/* Laptop presentation for hero blueprint */
.site-header + main .solution-hero {
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1.4fr);
  gap: 22px;
  min-height: auto;
  padding: 48px 26px 24px;
  position: relative;
}

.site-header + main .solution-hero .hero-copy {
  max-width: 420px;
}

.site-header + main .solution-hero .hero-motto {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 4;
  width: calc(100% - 56px);
  margin: 0;
  transform: translateX(-50%);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.06em;
}

.site-header + main .solution-hero .hero-copy h1,
.site-header + main .solution-hero .hero-copy .hero-lead {
  max-width: 420px;
}

.site-header + main .solution-hero .hero-copy h1 {
  font-size: clamp(30px, 3.1vw, 40px);
}

.site-header + main .solution-hero .hero-tagline {
  max-width: 420px;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.site-header + main .solution-hero .hero-tagline p {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(126, 139, 255, 0.18);
}

.site-header + main .solution-hero .hero-tagline p:last-child {
  border-bottom: 0;
}

.site-header + main .solution-hero .hero-tagline strong {
  color: var(--brand);
  font-size: 19px;
  font-weight: 900;
}

.site-header + main .solution-hero .hero-tagline span {
  color: #344054;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.45;
}

.site-header + main .solution-hero .laptop-frame {
  display: block;
  position: relative;
  width: 100%;
  padding: 11px 11px 16px;
  border: 0;
  border-radius: 26px;
  background: linear-gradient(145deg, #171923, #30202a);
  box-shadow: 0 28px 70px rgba(70, 82, 166, 0.22);
  overflow: visible;
}

.laptop-camera {
  width: 6px;
  height: 6px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #64748b;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.laptop-screen {
  position: relative;
  aspect-ratio: 1586 / 850;
  border-radius: 16px;
  background: #f8fbff;
  overflow: hidden;
}

.site-header + main .solution-hero .laptop-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  transform: translateY(-9.2%);
}

.laptop-base {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -10px;
  height: 16px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(180deg, #1f2937, #0b1220);
  box-shadow: 0 18px 26px rgba(15, 23, 42, 0.18);
}

@media (max-width: 1180px) {
  .partner-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .partner-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-card img {
    width: 140px;
  }
}

@media (max-width: 1180px) {
  .site-header + main .solution-hero {
    width: min(1120px, calc(100% - 40px));
    grid-template-columns: 1fr;
  }

  .site-header + main .solution-hero .hero-copy,
  .site-header + main .solution-hero .hero-copy h1,
  .site-header + main .solution-hero .hero-copy .hero-lead,
  .site-header + main .solution-hero .hero-tagline {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header + main .solution-hero {
    width: min(100% - 28px, 1120px);
    padding: 44px 16px 20px;
  }

  .site-header + main .solution-hero .laptop-frame {
    padding: 10px 10px 15px;
    border-radius: 20px;
  }

  .laptop-screen {
    border-radius: 12px;
  }
}

/* Brand-color navigation and footer */
.site-header {
  background:
    linear-gradient(135deg, rgba(92, 27, 39, 0.96), rgba(151, 47, 61, 0.94) 58%, rgba(199, 53, 70, 0.92));
  border: 1px solid rgba(255, 216, 222, 0.24);
  box-shadow: 0 18px 45px rgba(70, 82, 166, 0.22);
}

.nav a {
  color: #edf0ff;
}

.nav a:hover {
  color: #ffffff;
}

.language-toggle {
  color: #7d2330;
  background: #fff4f5;
}

.site-footer {
  color: #edf0ff;
  background:
    radial-gradient(circle at 18% 0%, rgba(126, 139, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #252e65 0%, #3746a2 54%, #151b39 100%);
}

.site-footer p,
.site-footer a {
  color: #d9deff;
}

.site-footer h3 {
  color: #ffffff;
}

.copyright {
  color: #bfc7fa;
}

/* Refined rose palette: use brand color as accent, not large background */
.site-header {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(126, 139, 255, 0.18);
  box-shadow: 0 18px 44px rgba(70, 82, 166, 0.12);
  backdrop-filter: blur(18px);
}

.nav a {
  color: #344054;
  font-weight: 760;
}

.nav a:hover {
  color: var(--brand);
}

.language-toggle {
  color: var(--brand-deep);
  background: var(--brand-soft);
  border: 1px solid rgba(126, 139, 255, 0.2);
}

.site-header + main .solution-hero {
  border-color: rgba(126, 139, 255, 0.18);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 201, 139, 0.08), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(126, 139, 255, 0.1), transparent 30%),
    linear-gradient(135deg, #fafbff 0%, #fbfdff 56%, #f4fffb 100%);
  box-shadow: 0 22px 60px rgba(70, 82, 166, 0.11);
}

.site-header + main .solution-hero .hero-motto {
  color: var(--brand);
}

.site-footer {
  color: #344054;
  background:
    radial-gradient(circle at 12% 0%, rgba(126, 139, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
  border-top: 1px solid rgba(126, 139, 255, 0.16);
}

.site-footer p,
.site-footer a {
  color: #667085;
}

.site-footer h3 {
  color: #101828;
}

.site-footer a:hover {
  color: var(--brand);
}

.copyright {
  color: #98a2b3;
}

/* Solution enquiry */
.contact {
  padding-bottom: 46px;
}

.section-heading.contact-heading {
  margin: 38px 0 16px;
}

.contact-heading h2 {
  max-width: 850px;
  font-size: clamp(27px, 3vw, 32px);
}

.contact-heading > p:last-child {
  max-width: 730px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

.contact-channels {
  display: grid;
  gap: 9px;
}

.contact-channels article,
.lead-panel {
  border: 1px solid rgba(126, 139, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(70, 82, 166, 0.06);
}

.qr-channel {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 98px;
  padding: 8px 10px;
}

.qr-channel img {
  display: block;
  width: 82px;
  height: 82px;
  padding: 4px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.contact-channels h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
}

.contact-channels p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.email-channel {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 10px 14px;
}

.channel-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  font-size: 19px;
  font-weight: 800;
}

.email-channel a {
  display: inline-block;
  margin-bottom: 2px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
}

.email-channel a:hover {
  color: var(--brand);
}

.lead-panel {
  padding: 16px 18px;
}

.lead-panel-head h3 {
  margin: 0;
  font-size: 20px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 11px;
  margin-top: 12px;
}

.field {
  display: grid;
  gap: 5px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  color: #344054;
  font-size: 12px;
  font-weight: 760;
}

.field em {
  color: var(--brand);
  font-style: normal;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #dfe3f5;
  border-radius: 9px;
  padding: 0 10px;
  color: var(--ink);
  background: #fafbff;
  font: inherit;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input,
.lead-form select {
  height: 38px;
}

.lead-form textarea {
  min-height: 60px;
  padding-block: 9px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(126, 139, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(126, 139, 255, 0.12);
}

.lead-form :invalid.user-touched {
  border-color: var(--brand);
}

.lead-form button {
  grid-column: 1 / -1;
  width: max-content;
  min-width: 132px;
  height: 40px;
  margin-top: 2px;
  padding: 0 20px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 22px rgba(126, 139, 255, 0.2);
}

.lead-form button:hover {
  background: var(--brand-deep);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 16px;
  margin: -3px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 650;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  color: var(--brand);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form button:disabled {
  opacity: 0.66;
  cursor: wait;
}

/* Anchor navigation offset for the sticky header */
html {
  scroll-padding-top: 84px;
}

#home,
#capabilities,
#why,
#why-heading,
#industries,
#services,
#contact-center,
#contact,
#services-heading,
#contact-heading {
  scroll-margin-top: 12px;
}

@media (max-width: 920px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .email-channel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 74px;
  }

  #home,
  #capabilities,
  #why,
  #why-heading,
  #industries,
  #services,
  #contact-center,
  #contact,
  #services-heading,
  #contact-heading {
    scroll-margin-top: 10px;
  }

  .contact-channels,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .qr-channel {
    grid-template-columns: 78px 1fr;
  }

  .qr-channel img {
    width: 78px;
    height: 78px;
  }
}

/* Spacious content-aligned navigation */
.nav {
  gap: 34px;
}

.nav a {
  padding: 9px 3px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav a:hover {
  background: rgba(126, 139, 255, 0.07);
}

.nav a[href="#why-heading"] {
  padding: 9px 15px;
  color: var(--brand);
  font-weight: 700;
  border: 1px solid rgba(126, 139, 255, 0.2);
  background: rgba(126, 139, 255, 0.07);
}

.nav a[href="#why-heading"]:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

/* Compact 3 + 4 services matrix */
.services .section-heading {
  margin: 78px 0 20px;
}

.services .section-heading h2 {
  font-size: clamp(28px, 3vw, 34px);
}

.services .section-heading > p {
  max-width: 760px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.services .service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.services .service-card {
  grid-column: span 3;
  min-height: 176px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(126, 139, 255, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.services .service-primary {
  grid-column: span 4;
  min-height: 192px;
  border-color: rgba(126, 139, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 250, 0.92));
}

.services .service-featured,
.services .service-ai {
  color: var(--ink);
}

.services .service-featured p,
.services .service-featured strong,
.services .service-ai p,
.services .service-ai strong {
  color: inherit;
}

.services .service-card::after {
  width: 92px;
  height: 92px;
  right: -44px;
  bottom: -45px;
  opacity: 0.45;
}

.services .service-mark {
  width: 28px;
  height: 3px;
  margin-bottom: 12px;
}

.services .service-featured .service-mark {
  background: var(--brand);
}

.services .service-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.28;
}

.services .service-grid p {
  margin: 0;
  color: #526071;
  font-size: 13px;
  line-height: 1.58;
}

.services .service-grid strong {
  margin-top: 11px;
  max-width: none;
  color: var(--brand);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .services .service-primary {
    grid-column: span 6;
  }

  .services .service-card {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .services .section-heading {
    margin: 62px 0 18px;
  }

  .services .service-primary,
  .services .service-card {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

/* Compact selection proof before the capability carousel */
.why .section-heading {
  margin: 78px 0 17px;
}

.why .section-heading h2 {
  font-size: clamp(27px, 3vw, 33px);
}

.why .section-heading > p {
  max-width: 780px;
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.58;
}

.why .why-grid {
  gap: 12px;
}

.why .why-grid article {
  min-height: 130px;
  padding: 14px 16px 13px;
}

.why .why-grid h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.why .why-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.52;
}

.why .why-grid strong {
  margin-top: 9px;
  font-size: 12px;
}

.why .showcase {
  margin: 21px 0 16px;
}

.why .showcase-card {
  position: relative;
  min-height: 300px;
  padding: 20px 24px 15px;
  gap: 10px 30px;
  border-radius: 22px;
}

.why .showcase-stage,
.why .scene-frame {
  min-height: 276px;
}

.why .showcase-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.why .showcase-kicker .eyebrow {
  margin: 0;
}

.why .showcase-current {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 12px;
  border: 1px solid rgba(126, 139, 255, 0.2);
  border-radius: 999px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 13px;
  font-weight: 800;
}

.why .showcase-copy h2 {
  font-size: clamp(25px, 2.55vw, 33px);
}

.why .showcase-copy p:last-child {
  font-size: 14px;
  line-height: 1.62;
}

.why .showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 2px 0 0;
}

.why .showcase-card.visual-left .showcase-dots {
  grid-column: 1;
  grid-row: 2;
}

.why .showcase-card.visual-right .showcase-dots {
  grid-column: 2;
  grid-row: 2;
}

.why .showcase-dot {
  display: block;
  width: 9px;
  height: 9px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(126, 139, 255, 0.27);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.why .showcase-dot:hover {
  background: rgba(126, 139, 255, 0.62);
}

.why .showcase-dot.active {
  background: var(--brand);
  transform: scale(1.28);
  box-shadow: 0 0 0 4px rgba(126, 139, 255, 0.13);
}

.why .showcase + .why-grid {
  margin-top: 0;
}

@media (max-width: 620px) {
  .nav a[href="#why-heading"] {
    padding: 8px 11px;
  }

  .why .section-heading {
    margin: 62px 0 16px;
  }

  .why .why-grid article {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .why .showcase-card,
  .why .showcase-card.visual-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .why .showcase-stage {
    order: 1;
  }

  .why .showcase-copy {
    order: 2;
  }

  .why .showcase-dots {
    order: 3;
  }

  .why .showcase-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }
}

@media (max-width: 720px) {
  .partner-note {
    justify-self: start;
    justify-content: start;
    justify-items: start;
    grid-template-columns: repeat(2, max-content);
    gap: 4px 12px;
    margin: 0;
    font-size: 12px;
  }
}

/* Breathing room for primary homepage sections */
.industries {
  margin-top: 112px;
}

.contact .contact-heading {
  margin-top: 82px;
}

#services-heading,
#contact-heading {
  scroll-margin-top: 12px;
}

/* Compact partner-led footer */
.site-footer {
  margin-top: 86px;
}

.site-footer .footer-inner {
  grid-template-columns: minmax(310px, 1.55fr) minmax(126px, 0.56fr) minmax(235px, 0.92fr);
  gap: 42px;
  padding: 34px 0 24px;
}

.footer-brand img {
  margin-bottom: 13px;
}

.footer-company {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.footer-partnerships {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-partnerships a {
  min-width: 174px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgba(126, 139, 255, 0.15);
  border-radius: 10px;
  background: #fff;
}

.footer-partnerships strong,
.footer-partnerships span {
  display: block;
}

.footer-partnerships strong {
  color: #253245;
  font-size: 12px;
}

.footer-partnerships span {
  margin-top: 2px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}

.site-footer .footer-inner h3 {
  margin-bottom: 10px;
  font-size: 15px;
}

.site-footer .footer-inner > div:not(.footer-brand) a {
  margin: 4px 0;
  font-size: 13px;
  line-height: 1.55;
}

.footer-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  align-content: start;
}

.footer-services h3 {
  grid-column: 1 / -1;
}

.site-footer .copyright {
  padding-bottom: 20px;
  font-size: 12px;
}

@media (max-width: 920px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer {
    margin-top: 68px;
  }

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

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

/* Cool corporate canvas paired with the indigo brand color */
body {
  background:
    radial-gradient(circle at 48% -10%, rgba(126, 139, 255, 0.12), transparent 30%),
    radial-gradient(circle at 95% 18%, rgba(95, 122, 164, 0.07), transparent 25%),
    linear-gradient(180deg, #f2f5fb 0%, #edf2f8 48%, #f4f6fa 100%);
}

.site-header {
  background: rgba(246, 248, 253, 0.9);
  border-color: rgba(126, 139, 255, 0.2);
  box-shadow: 0 16px 38px rgba(30, 44, 72, 0.09);
}

.nav a {
  color: #39465e;
}

.nav a:hover {
  color: var(--brand-deep);
}

.nav a[href="#why-heading"] {
  color: var(--brand-deep);
  border-color: rgba(126, 139, 255, 0.26);
  background: rgba(126, 139, 255, 0.09);
}

.site-header + main .solution-hero {
  border-color: rgba(126, 139, 255, 0.22);
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 169, 133, 0.07), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(126, 139, 255, 0.09), transparent 30%),
    linear-gradient(135deg, #f7f9ff 0%, #ffffff 54%, #f1f5fa 100%);
  box-shadow: 0 20px 46px rgba(35, 51, 82, 0.1);
}

.partner-strip,
.why .showcase-card,
.why .why-grid article,
.services .service-card,
.contact-channels article,
.lead-panel {
  border-color: #e0e5f1;
  box-shadow: 0 12px 28px rgba(35, 51, 82, 0.06);
}

.services .service-primary {
  border-color: #dce4ec;
  background: linear-gradient(180deg, #ffffff, #f9fbfc);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-color: #dce4ec;
  background: #ffffff;
}

.why > .section-heading h2,
.services > .section-heading h2,
.contact > .section-heading h2 {
  color: var(--ink);
}

.why .section-heading .eyebrow,
.services .section-heading .eyebrow {
  color: var(--brand);
}

.why > .section-heading > p:last-child,
.services > .section-heading > p:last-child {
  color: var(--muted);
}

.industries {
  padding-bottom: 0;
}

.industry-shell {
  border: 1px solid rgba(126, 139, 255, 0.2);
  background:
    radial-gradient(circle at 80% 18%, rgba(126, 139, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #283753, #1b2943);
}

.contact {
  padding-bottom: 0;
}

.contact .contact-heading {
  margin-top: 78px;
}

.site-footer {
  margin-top: 78px;
  color: #d7e0f0;
  background:
    radial-gradient(circle at 18% 0%, rgba(126, 139, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #253550 0%, #18253d 100%);
  border-top-color: rgba(126, 139, 255, 0.18);
}

.footer-partnerships a {
  border-color: rgba(126, 139, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.footer-company,
.site-footer h3,
.footer-partnerships strong {
  color: #f5f7ff;
}

.site-footer p,
.site-footer a {
  color: #b6c1d8;
}

.copyright {
  color: #8996b3;
}

@media (max-width: 620px) {
  .contact .contact-heading {
    margin-top: 62px;
  }

  .site-footer {
    margin-top: 62px;
  }
}
