:root {
  --ink: #101828;
  --muted: #667085;
  --subtle: #eef2f7;
  --line: rgba(16, 24, 40, 0.1);
  --blue: #176bff;
  --cyan: #20c6e8;
  --red: #f04438;
  --green: #12b76a;
  --gold: #f79009;
  --paper: #ffffff;
  --deep: #061225;
  --deep-2: #0b1f3a;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fc;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    top 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.14);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 6px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
  background: rgba(23, 107, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.login-link,
.header-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.ghost-link {
  border: 1px solid rgba(23, 107, 255, 0.18);
  color: var(--blue);
  background: rgba(23, 107, 255, 0.06);
}

.login-link {
  border: 1px solid rgba(16, 24, 40, 0.12);
  color: #344054;
  background: rgba(255, 255, 255, 0.72);
}

.header-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #16a8ff);
  box-shadow: 0 12px 26px rgba(23, 107, 255, 0.24);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-band::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 16%, rgba(32, 198, 232, 0.2), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(240, 68, 56, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 46%, #eef6f9 100%);
  content: "";
}

.hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 54px;
  padding: 132px max(28px, calc((100vw - 1160px) / 2)) 78px;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -34%;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(23, 107, 255, 0.1);
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(23, 107, 255, 0.08) 0 1px,
    transparent 1px 38px
  );
  content: "";
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.hero-lead,
.section-heading p,
.trust-copy p,
.contact-card p,
.solution-panel p,
.timeline-step p,
.feature-card p {
  color: var(--muted);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 18px;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #16a8ff);
  box-shadow: 0 16px 34px rgba(23, 107, 255, 0.28);
}

.secondary-button {
  border: 1px solid rgba(16, 24, 40, 0.14);
  color: #1d2939;
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof {
  margin-top: 34px;
}

.hero-proof div {
  min-width: 128px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  perspective: 1400px;
}

.dashboard-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  transform: rotateX(3deg) rotateY(-5deg);
}

.dashboard-topbar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f04438;
}

.dashboard-topbar span:nth-child(2) {
  background: #f79009;
}

.dashboard-topbar span:nth-child(3) {
  background: #12b76a;
}

.dashboard-topbar strong {
  margin-left: 8px;
  color: #475467;
  font-size: 13px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 146px 1fr;
  min-height: 528px;
}

.dashboard-side {
  padding: 18px 12px;
  background: #f3f6fb;
}

.side-item {
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.side-item.active {
  color: #fff;
  background: var(--blue);
}

.dashboard-main {
  padding: 18px;
}

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

.metric-card {
  padding: 14px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: #fff;
}

.metric-card span,
.metric-card em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.metric-card strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 24px;
  line-height: 1;
}

.metric-card em {
  color: var(--green);
  font-weight: 800;
}

.map-card {
  position: relative;
  height: 260px;
  margin: 14px 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    linear-gradient(90deg, rgba(23, 107, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(23, 107, 255, 0.14) 1px, transparent 1px),
    #e7f0ff;
  background-size:
    100% 100%,
    42px 42px,
    42px 42px,
    100% 100%;
}

.map-card::before {
  position: absolute;
  inset: 34px 34px 62px;
  border: 1px solid rgba(23, 107, 255, 0.2);
  border-radius: 54% 46% 47% 53% / 45% 42% 58% 55%;
  background: rgba(23, 107, 255, 0.08);
  content: "";
}

.map-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(240, 68, 56, 0.14);
  animation: pulse 2.4s infinite;
}

.point-a {
  top: 86px;
  left: 32%;
}

.point-b {
  top: 122px;
  right: 28%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(23, 107, 255, 0.14);
  animation-delay: 0.4s;
}

.point-c {
  right: 18%;
  bottom: 74px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(247, 144, 9, 0.16);
  animation-delay: 0.8s;
}

.map-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(23, 107, 255, 0.6), transparent);
  transform-origin: left center;
}

.line-a {
  top: 116px;
  left: 34%;
  width: 230px;
  transform: rotate(10deg);
}

.line-b {
  right: 21%;
  bottom: 102px;
  width: 170px;
  transform: rotate(-30deg);
}

.map-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.map-caption span {
  color: var(--muted);
  font-size: 12px;
}

.lead-list {
  display: grid;
  gap: 10px;
}

.lead-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: #fff;
}

.lead-row strong {
  font-size: 13px;
}

.lead-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status.hot {
  background: var(--red);
}

.status.warm {
  background: var(--gold);
}

.status.cool {
  background: var(--green);
}

.capabilities,
.workflow,
.contact {
  padding: 96px max(28px, calc((100vw - 1160px) / 2));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.timeline-step,
.solution-panel,
.contact-card,
.trust-item {
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.06);
}

.feature-card {
  padding: 26px;
}

.feature-icon {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.12), rgba(32, 198, 232, 0.16));
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.search-icon::before {
  top: 12px;
  left: 12px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.search-icon::after {
  right: 10px;
  bottom: 10px;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(45deg);
}

.social-icon::before {
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 32%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 68% 70%, #fff 0 2px, transparent 3px),
    var(--cyan);
}

.social-icon::after {
  top: 22px;
  left: 20px;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: rotate(36deg);
}

.map-icon::before {
  inset: 10px 13px;
  border: 3px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-icon::after {
  top: 17px;
  left: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.mail-icon::before {
  inset: 12px 9px;
  border: 3px solid var(--blue);
  border-radius: 4px;
}

.mail-icon::after {
  top: 16px;
  left: 11px;
  width: 22px;
  height: 14px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg) skew(-12deg, -12deg);
}

.crm-icon::before {
  top: 10px;
  left: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.crm-icon::after {
  right: 10px;
  bottom: 10px;
  left: 10px;
  height: 14px;
  border-radius: 12px 12px 5px 5px;
  background: var(--gold);
}

.insight-icon::before {
  left: 12px;
  bottom: 10px;
  width: 5px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow:
    9px -8px 0 var(--blue),
    18px -2px 0 var(--red);
}

.insight-icon::after {
  right: 9px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.solutions {
  padding: 96px max(28px, calc((100vw - 1160px) / 2));
}

.solution-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-panel {
  min-height: 354px;
  padding: 30px;
}

.solution-panel.dark {
  color: #fff;
  background:
    linear-gradient(160deg, rgba(23, 107, 255, 0.1), transparent 48%),
    var(--deep);
}

.solution-panel.dark p,
.solution-panel.dark li {
  color: rgba(255, 255, 255, 0.72);
}

.solution-panel.accent {
  background: linear-gradient(160deg, #fff 0%, #fff4ef 100%);
}

.panel-tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  background: rgba(23, 107, 255, 0.1);
}

.solution-panel.dark .panel-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.solution-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.solution-panel li {
  position: relative;
  margin-top: 12px;
  padding-left: 20px;
  color: #475467;
}

.solution-panel li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

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

.timeline-step {
  position: relative;
  min-height: 248px;
  padding: 28px;
}

.timeline-step span {
  display: block;
  margin-bottom: 40px;
  color: rgba(23, 107, 255, 0.16);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 54px;
  padding: 96px max(28px, calc((100vw - 1160px) / 2));
}

.trust::before {
  background:
    linear-gradient(rgba(6, 18, 37, 0.88), rgba(6, 18, 37, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(32, 198, 232, 0.28), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(240, 68, 56, 0.18), transparent 28%),
    var(--deep);
}

.trust-copy,
.trust-copy .eyebrow {
  color: #fff;
}

.trust-copy p {
  color: rgba(255, 255, 255, 0.68);
}

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

.trust-item {
  min-height: 156px;
  padding: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.trust-item strong {
  display: block;
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.7);
}

.contact {
  padding-bottom: 72px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(90deg, rgba(23, 107, 255, 0.08), rgba(240, 68, 56, 0.08));
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 168px;
}

.contact-methods {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 10px;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  color: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.76);
}

.contact-method:hover {
  border-color: rgba(23, 107, 255, 0.28);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.contact-method strong,
.contact-method em {
  display: block;
  min-width: 0;
}

.contact-method strong {
  font-size: 15px;
}

.contact-method em {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.method-icon,
.float-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(23, 107, 255, 0.1);
}

.qq-icon::before,
.chat-float::before {
  width: 24px;
  height: 17px;
  border-radius: 13px;
  background: currentColor;
  content: "";
}

.qq-icon::after,
.chat-float::after {
  position: absolute;
  width: 13px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    -7px 0 0 #fff,
    7px 0 0 #fff;
  content: "";
}

.phone-icon::before,
.phone-float::before {
  width: 24px;
  height: 24px;
  border: 5px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(42deg);
}

.mail-mini-icon::before,
.mail-float::before {
  width: 24px;
  height: 17px;
  border: 4px solid currentColor;
  border-radius: 3px;
  content: "";
}

.mail-mini-icon::after,
.mail-float::after {
  position: absolute;
  width: 15px;
  height: 15px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 18;
  display: grid;
  gap: 10px;
}

.floating-contact a,
.floating-contact button,
.float-item {
  position: relative;
  display: grid;
  width: 86px;
  min-height: 76px;
  place-items: center;
  padding: 10px 8px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(145deg, #ff960f, #f47b00);
  box-shadow:
    0 14px 32px rgba(255, 135, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.float-item::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 18px);
  min-width: 236px;
  max-width: 280px;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(23, 107, 255, 0.12);
  border-radius: 10px;
  color: #101828;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
  white-space: pre;
  text-align: left;
  background:
    linear-gradient(90deg, #ff8700 0 5px, transparent 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  box-shadow:
    0 22px 54px rgba(16, 24, 40, 0.16),
    0 8px 18px rgba(23, 107, 255, 0.08);
  content: attr(data-title) "\A" attr(data-tip);
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, -50%) scale(0.98);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.float-item::after {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(23, 107, 255, 0.12);
  border-right: 1px solid rgba(23, 107, 255, 0.12);
  background: rgba(255, 255, 255, 0.98);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, -50%) rotate(45deg);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.float-item:hover::before,
.float-item:hover::after,
.float-item:focus-visible::before,
.float-item:focus-visible::after {
  opacity: 1;
}

.float-item:hover::before,
.float-item:focus-visible::before {
  transform: translate(0, -50%) scale(1);
}

.float-item:hover::after,
.float-item:focus-visible::after {
  transform: translate(0, -50%) rotate(45deg);
}

.float-item:focus-visible {
  outline: 3px solid rgba(23, 107, 255, 0.72);
  outline-offset: 2px;
}

.float-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 3px;
}

.login-float::before {
  width: 22px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 5px;
  content: "";
}

.login-float::after {
  position: absolute;
  right: 2px;
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.top-float::before {
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translateY(3px);
}

.top-float::after {
  position: absolute;
  width: 16px;
  height: 16px;
  border-top: 5px solid currentColor;
  border-left: 5px solid currentColor;
  content: "";
  transform: translateY(2px) rotate(45deg);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px max(28px, calc((100vw - 1160px) / 2));
  color: #667085;
  background: #fff;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 107, 255, 0.24);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(23, 107, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(23, 107, 255, 0);
  }
}

@media (max-width: 1040px) {
  .hero,
  .trust {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

  .capability-grid,
  .solution-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 46px rgba(16, 24, 40, 0.14);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .ghost-link,
  .login-link {
    display: none;
  }

  .header-primary {
    padding: 10px 12px;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
    gap: 36px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof div {
    min-width: calc(50% - 8px);
    border-right: 0;
  }

  .dashboard-shell {
    transform: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid,
  .capability-grid,
  .solution-layout,
  .timeline,
  .trust-grid,
  .contact-methods,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .lead-row {
    grid-template-columns: 12px 1fr;
  }

  .lead-row em {
    grid-column: 2;
  }

  .map-caption {
    display: block;
  }

  .map-caption span {
    display: block;
    margin-top: 4px;
  }

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

  .contact-card {
    padding: 28px;
  }

  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

  .floating-contact {
    right: 10px;
    bottom: 12px;
    grid-template-columns: repeat(5, 1fr);
    width: calc(100% - 20px);
    gap: 6px;
  }

  .floating-contact a,
  .floating-contact button {
    width: auto;
    min-height: 58px;
    padding: 7px 4px;
    font-size: 11px;
  }

  .float-item {
    width: auto;
    min-height: 58px;
    padding: 7px 4px;
    font-size: 11px;
  }

  .float-item::before,
  .float-item::after {
    display: none;
  }

  .float-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 15px;
  }

  .hero,
  .capabilities,
  .solutions,
  .workflow,
  .trust,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .header-primary {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .dashboard-main {
    padding: 12px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 88px;
  }
}
