@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
  --navy: #174ea6;
  --blue: #1a73e8;
  --cyan: #4285f4;
  --cyan-soft: rgba(66, 133, 244, 0.14);
  --google-blue: #1a73e8;
  --google-blue-light: #4285f4;
  --google-blue-soft: #e8f0fe;
  --bg: #f8fafd;
  --text: #111827;
  --muted: #6b7280;
  --line: #d7e3f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(60, 64, 67, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(66, 133, 244, 0.045), transparent 28%),
    radial-gradient(circle at 90% 28%, rgba(26, 115, 232, 0.04), transparent 30%),
    var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
img { height: auto; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; color: var(--text); line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.35rem, 6vw, 4.9rem); max-width: 980px; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: 1.12rem; }
h2 {
  text-wrap: balance;
}

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero-inner > *,
.split > * {
  min-width: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 227, 248, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(60, 64, 67, 0.05);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.logo-brand {
  gap: 0;
}

.logo-brand img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.footer-logo img {
  height: 56px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #1a73e8;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.18);
}
.nav-links { display: flex; align-items: center; gap: 22px; color: #334155; font-size: 0.94rem; }
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--navy); font: inherit; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: #1a73e8; color: var(--white); box-shadow: 0 10px 24px rgba(26,115,232,0.22); }
.button.secondary { background: var(--white); color: var(--blue); border-color: rgba(26,115,232,0.24); }
.button.cyan { background: #1a73e8; color: var(--white); box-shadow: 0 10px 24px rgba(26,115,232,0.22); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan);
}
.hero {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 16%, rgba(138, 180, 248, 0.28), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(232, 240, 254, 0.9), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}
.hero::after,
.subhero::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(66,133,244,0.08) 42%, transparent 58%),
    radial-gradient(circle at 82% 20%, rgba(66,133,244,0.08), transparent 24%);
  transform: translateX(-35%);
  animation: lightSweep 12s ease-in-out infinite;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,115,232,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  animation: gridMove 14s linear infinite;
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
  padding: 92px 0 72px;
}
.hero h1, .hero h2, .hero h3 { color: var(--text); }
.hero p { color: #5f6368; font-size: 1.12rem; max-width: 760px; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; color: #3c4043; font-size: 0.93rem; }
.hero-note span { border: 1px solid rgba(26,115,232,0.12); border-radius: 999px; padding: 7px 11px; background: rgba(232,240,254,0.72); }
.motion-panel {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(215,227,248,0.9);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.96), rgba(248,250,253,0.92)),
    radial-gradient(circle at 72% 18%, rgba(138,180,248,0.24), transparent 28%);
  box-shadow: 0 24px 70px rgba(60,64,67,0.12);
  overflow: hidden;
}
.image-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(215,227,248,0.9);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f8fafd);
  box-shadow: 0 24px 70px rgba(60,64,67,0.12);
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(66,133,244,0.08) 44%, transparent 60%),
    radial-gradient(circle at 82% 20%, rgba(66,133,244,0.12), transparent 30%);
  mix-blend-mode: multiply;
}
.image-panel img,
.card-image img,
.demo-image img,
.blog-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual {
  aspect-ratio: 16 / 9;
  min-height: 420px;
}
.hero-video-panel {
  aspect-ratio: 4 / 3;
  background: #ffffff;
}
.hero-video-panel video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
}
.service-visual {
  aspect-ratio: 4 / 3;
}
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: -24px -24px 20px;
  border-bottom: 1px solid var(--line);
  background: #f8fafd;
}
.demo-image,
.blog-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
  margin-bottom: 18px;
}
.blog-cover img {
  object-position: center;
}
.motion-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 16px;
  border: 1px solid rgba(26,115,232,0.08);
  background-image:
    linear-gradient(rgba(26,115,232,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, black, transparent 74%);
  animation: gridMove 18s linear infinite;
}
.browser {
  position: absolute;
  inset: 56px 38px 76px;
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatCard 7s ease-in-out infinite;
}
.browser-top { height: 36px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; }
.browser-body { padding: 20px; }
.language-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}
.language-tabs span {
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e8f0fe;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  animation: tabPulse 5.6s ease-in-out infinite;
}
.language-tabs span:nth-child(2) { animation-delay: 1.2s; }
.language-tabs span:nth-child(3) { animation-delay: 2.4s; }
.language-tabs span:nth-child(4) { animation-delay: 3.6s; }
.visual-search {
  position: absolute;
  right: 54px;
  top: 118px;
  width: 154px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(60,64,67,0.12);
  animation: floatCard 6.6s ease-in-out infinite reverse;
}
.visual-search::before {
  content: "Google";
  display: block;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 9px;
}
.visual-search span {
  display: block;
  height: 8px;
  border-radius: 999px;
  margin: 7px 0;
  background: #dce9ff;
}
.visual-search span:nth-child(3) { width: 70%; }
.visual-search span:nth-child(4) { width: 52%; }
.visual-product-stack {
  position: absolute;
  left: 58px;
  top: 128px;
  display: grid;
  gap: 10px;
  z-index: 2;
}
.visual-product-card {
  width: 116px;
  min-height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(60,64,67,0.1);
  padding: 10px;
  animation: cardLift 5.8s ease-in-out infinite;
}
.visual-product-card:nth-child(2) { animation-delay: 1.4s; }
.visual-product-card::before,
.visual-product-card::after {
  content: "";
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #dce9ff;
  margin-bottom: 7px;
}
.visual-product-card::before { width: 70%; background: linear-gradient(90deg, #1a73e8, #8ab4f8); }
.visual-product-card::after { width: 46%; }
.mock-line { height: 10px; border-radius: 999px; background: #dce9ff; margin-bottom: 10px; }
.mock-line.short { width: 52%; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.mock-card { min-height: 86px; border: 1px solid #dce9ff; border-radius: 8px; background: linear-gradient(145deg, #ffffff, #f3f7ff); position: relative; overflow: hidden; }
.mock-card::after { content: ""; position: absolute; inset: auto 12px 12px; height: 8px; border-radius: 999px; background: var(--cyan-soft); }
.mock-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 38%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a73e8, #8ab4f8);
  opacity: 0.75;
}
.mock-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.mock-stat span {
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(26,115,232,0.12) 45%),
    linear-gradient(90deg, #e8f0fe, #ffffff);
  border: 1px solid #dce9ff;
}
.flow-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 44px rgba(60,64,67,0.12), inset 0 0 0 4px rgba(66,133,244,0.08);
  font-weight: 700;
}
.node-factory { left: 22px; top: 34px; animation: pulseNode 5.5s ease-in-out infinite; }
.node-google { right: 24px; top: 48px; animation: pulseNode 5.5s ease-in-out 1.2s infinite; }
.node-buyer { right: 50px; bottom: 34px; animation: pulseNode 5.5s ease-in-out 2.4s infinite; }
.inquiry-toast {
  position: absolute;
  left: 44px;
  bottom: 36px;
  width: min(300px, calc(100% - 88px));
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.96);
  color: var(--navy);
  box-shadow: var(--shadow);
  animation: inquiryLoop 6s ease-in-out infinite;
}
.connection-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.connection-line path {
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-dasharray: 9 10;
  fill: none;
  animation: dash 7s linear infinite;
  opacity: 0.75;
}
.section { padding: 92px 0; }
.section.alt {
  background:
    linear-gradient(180deg, var(--bg), #ffffff),
    radial-gradient(circle at 12% 20%, rgba(66,133,244,0.055), transparent 24%);
}
.section.dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(138,180,248,0.18), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fafd);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,115,232,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.5;
  animation: gridMove 16s linear infinite;
}
.section.dark > .container { position: relative; z-index: 1; }
.section.dark h2, .section.dark h3 { color: var(--text); }
.section.dark p { color: var(--muted); }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head h2 {
  position: relative;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a73e8, #8ab4f8);
}
.section-head.center h2::after { margin-left: auto; margin-right: auto; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(60, 64, 67, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4285f4, #1a73e8, transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(66,133,244,0.34); }
.card:hover::before { opacity: 1; }
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(26,115,232,0.12), rgba(66,133,244,0.2));
  color: var(--blue);
  margin-bottom: 18px;
}
.service-icon,
.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 70% 22%, rgba(66,133,244,0.22), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef4ff);
  border: 1px solid var(--line);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(60,64,67,0.08);
}
.service-icon svg,
.industry-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-icon .spin,
.service-icon .spin { transform-origin: center; animation: spinSoft 7s linear infinite; }
.industry-icon .pulse,
.service-icon .pulse { animation: linePulse 3.8s ease-in-out infinite; }
.industry-icon .slide,
.service-icon .slide { animation: slideLine 3.6s ease-in-out infinite; }
.industry-icon .beam { animation: beamPulse 2.6s ease-in-out infinite; }
.industry-card,
.service-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(66,133,244,0.12), transparent 26%),
    linear-gradient(145deg, #ffffff, #fbfdff);
}
.icon svg { width: 27px; height: 27px; }
.icon .scan, .icon .gear, .icon .spark { animation: iconLoop 3.5s ease-in-out infinite; transform-origin: center; }
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 41px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: glowLine 6s ease-in-out infinite;
}
.step { position: relative; z-index: 1; }
.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 18px;
}
.package { position: relative; overflow: hidden; }
.package.featured { border-color: rgba(66,133,244,0.85); transform: translateY(-10px); }
.package.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(66,133,244,0.5);
  border-radius: var(--radius);
  box-shadow: inset 0 0 28px rgba(66,133,244,0.08), 0 0 24px rgba(66,133,244,0.08);
  animation: borderGlow 4s ease-in-out infinite;
  pointer-events: none;
}
.tag { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: var(--cyan-soft); color: var(--blue); font-size: 0.78rem; font-weight: 700; margin-bottom: 12px; }
.price-title { color: var(--navy); font-size: 1.45rem; font-weight: 700; margin-bottom: 8px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; color: #334155; }
.check-list li { display: flex; gap: 9px; align-items: flex-start; }
.check-list li::before {
  content: "+";
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--google-blue-soft);
  color: var(--blue);
  font-weight: 700;
  line-height: 1;
}
.demo-preview {
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #f8fafd, #ffffff),
    radial-gradient(circle at 78% 20%, rgba(66,133,244,0.12), transparent 30%);
  margin-bottom: 18px;
  position: relative;
}
.animated-website-preview,
.animated-blog-cover {
  isolation: isolate;
}
.demo-page {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 220px;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(26,115,232,0.16);
  animation: pageScroll 6s ease-in-out infinite;
}
.demo-page::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  height: 40px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(26,115,232,0.2), transparent 60%),
    #f8fafd;
  border: 1px solid #dce9ff;
}
.demo-page::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 70px;
  height: 120px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--preview-a, #dce9ff) 0 26%, transparent 26% 31%, var(--preview-b, #e8f0fe) 31% 58%, transparent 58% 63%, var(--preview-c, #f1f5ff) 63% 100%);
  border: 1px solid #dce9ff;
}
.demo-preview::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12px 50%, #cbd5e1 0 4px, transparent 5px),
    radial-gradient(circle at 28px 50%, #cbd5e1 0 4px, transparent 5px),
    radial-gradient(circle at 44px 50%, #cbd5e1 0 4px, transparent 5px),
    linear-gradient(90deg, #ffffff, #f8fafd);
  border: 1px solid #dce9ff;
  z-index: 2;
}
.demo-preview::after {
  content: "询盘";
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 999px;
  background: #1a73e8;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 5.4s ease-in-out infinite;
}
.preview-equipment { --preview-a: #dce9ff; --preview-b: #e8f0fe; --preview-c: #f8fafd; }
.preview-cooling { --preview-a: #dff7ff; --preview-b: #e8f0fe; --preview-c: #f4fbff; }
.preview-laser { --preview-a: #e8f0fe; --preview-b: #f4e8ff; --preview-c: #fff7ed; }
.preview-packaging { --preview-a: #eef4ff; --preview-b: #e8f0fe; --preview-c: #ecfdf5; }
.preview-components { --preview-a: #eef2ff; --preview-b: #e0f2fe; --preview-c: #f8fafd; }
.preview-oem { --preview-a: #e8f0fe; --preview-b: #f8fafd; --preview-c: #fef3c7; }
.animated-blog-cover .demo-page::after {
  background:
    linear-gradient(#1a73e8 0 0) 14px 16px / 44% 8px no-repeat,
    linear-gradient(#dce9ff 0 0) 14px 38px / 76% 7px no-repeat,
    linear-gradient(#dce9ff 0 0) 14px 58px / 62% 7px no-repeat,
    linear-gradient(135deg, var(--preview-a, #e8f0fe), #ffffff);
}
.scan-box {
  position: relative;
  min-height: 360px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, #ffffff, #f5f9ff),
    radial-gradient(circle at 86% 12%, rgba(66,133,244,0.1), transparent 30%);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.scan-box::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(26,115,232,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: gridMove 18s linear infinite;
}
.scan-box .browser { z-index: 1; }
.scan-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: scanDown 4.8s ease-in-out infinite;
}
.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.timeline::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
  animation: timelinePoint 8s linear infinite;
}
.timeline-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.timeline-index { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--white); border: 1px solid rgba(66,133,244,0.35); color: var(--blue); font-weight: 700; z-index: 1; box-shadow: 0 10px 24px rgba(26,115,232,0.12); }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 240ms ease; }
.faq-panel p { padding-bottom: 18px; }
.faq-item.open .faq-panel { max-height: 180px; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 48px;
  background:
    radial-gradient(circle at 82% 16%, rgba(138,180,248,0.2), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8fafd);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(60,64,67,0.08);
}
.cta-band h2 { color: var(--text); }
.cta-band p { color: var(--muted); }
.footer {
  background:
    radial-gradient(circle at 85% 0%, rgba(66,133,244,0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fafd);
  color: #5f6368;
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
}
.footer h3, .footer strong { color: var(--text); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer a { display: block; color: #5f6368; margin: 8px 0; }
.footer a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px; color: #5f6368; font-size: 0.9rem; }
.subhero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(138,180,248,0.22), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8fafd);
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.subhero h1 { color: var(--text); font-size: clamp(2.1rem, 5vw, 4rem); }
.subhero p { color: #5f6368; max-width: 820px; font-size: 1.08rem; }
.split { display: grid; grid-template-columns: 1fr 0.9fr; gap: 44px; align-items: center; }
.form {
  display: grid;
  gap: 14px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 7px; color: #334155; font-weight: 700; font-size: 0.92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(66,133,244,0.22);
  border-color: var(--blue);
}
textarea { min-height: 132px; resize: vertical; }
.article { max-width: 820px; margin: 0 auto; }
.article h2 { font-size: 1.85rem; margin: 36px 0 14px; }
.article p, .article li { color: #4b5563; }
.article ul { padding-left: 22px; }
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
  will-change: opacity, transform;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item:nth-child(2) { transition-delay: 70ms; }
.reveal-item:nth-child(3) { transition-delay: 140ms; }
.reveal-item:nth-child(4) { transition-delay: 210ms; }
.reveal-item:nth-child(5) { transition-delay: 280ms; }
.reveal-item:nth-child(6) { transition-delay: 350ms; }
.section-head.reveal-item,
.subhero .container.reveal-item,
.hero-inner > .reveal-item {
  transition-duration: 760ms;
}

@keyframes gridMove { to { background-position: 54px 54px; } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulseNode { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes inquiryLoop { 0%,20% { opacity: 0; transform: translateY(14px); } 35%,85% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-8px); } }
@keyframes dash { to { stroke-dashoffset: -120; } }
@keyframes iconLoop { 0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.88; } 50% { transform: translateY(-3px) rotate(4deg); opacity: 1; } }
@keyframes glowLine { 0%,100% { opacity: 0.5; } 50% { opacity: 1; box-shadow: 0 0 18px var(--cyan); } }
@keyframes borderGlow { 0%,100% { opacity: 0.65; } 50% { opacity: 1; } }
@keyframes pageScroll { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-82px); } }
@keyframes scanDown { 0%,100% { top: 0; } 50% { top: 100%; } }
@keyframes timelinePoint { 0% { top: 8px; } 100% { top: calc(100% - 24px); } }
@keyframes lightSweep {
  0%, 100% { transform: translateX(-42%); opacity: 0.45; }
  50% { transform: translateX(32%); opacity: 0.9; }
}
@keyframes tabPulse { 0%, 100% { background: #e8f0fe; transform: translateY(0); } 40% { background: #d2e3fc; transform: translateY(-2px); } }
@keyframes cardLift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes spinSoft { to { transform: rotate(360deg); } }
@keyframes linePulse { 0%, 100% { opacity: 0.55; stroke-dashoffset: 18; } 50% { opacity: 1; stroke-dashoffset: 0; } }
@keyframes slideLine { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@keyframes beamPulse { 0%, 100% { opacity: 0.35; transform: scaleX(0.72); } 50% { opacity: 1; transform: scaleX(1); } }
@keyframes bubbleIn { 0%, 34%, 100% { opacity: 0; transform: translateY(8px); } 48%, 82% { opacity: 1; transform: translateY(0); } }

/* Premium B2B visual system */
:root {
  --deep-navy: #071a33;
  --mid-navy: #0f2f5f;
  --electric: #38bdf8;
  --electric-soft: rgba(56, 189, 248, 0.16);
  --card-shadow: 0 22px 70px rgba(15, 47, 95, 0.14);
}

.hero {
  background:
    radial-gradient(circle at 82% 8%, rgba(56, 189, 248, 0.2), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #eef6ff 100%);
}

.hero h1 {
  color: var(--deep-navy);
  letter-spacing: 0;
}

.hero p {
  color: #475569;
}

.hero h1 + p,
.subhero h1 + p,
.section-head h2 + p,
.card h2 + p,
.card h3 + p {
  margin-top: clamp(22px, 2.8vw, 36px);
}

.hero-note span {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(56, 189, 248, 0.24);
  box-shadow: 0 8px 22px rgba(15, 47, 95, 0.08);
}

.motion-panel {
  min-height: 540px;
  border-radius: 28px;
  border-color: rgba(148, 184, 232, 0.7);
  background:
    radial-gradient(circle at 20% 12%, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(26, 115, 232, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f6faff 52%, #eaf3ff 100%);
  box-shadow: 0 34px 90px rgba(15, 47, 95, 0.2);
}

.motion-panel::before {
  inset: 18px;
  border-radius: 24px;
  opacity: 0.84;
}

.system-chip {
  position: absolute;
  z-index: 3;
  width: 155px;
  padding: 12px 13px;
  border: 1px solid rgba(148, 184, 232, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 47, 95, 0.13);
  backdrop-filter: blur(12px);
  animation: chipFloat 8s ease-in-out infinite;
}

.system-chip b {
  display: block;
  color: var(--deep-navy);
  font-size: 0.85rem;
  line-height: 1.15;
}

.system-chip span {
  display: block;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.35;
  margin-top: 4px;
}

.chip-factory { left: 24px; top: 38px; }
.chip-site { left: 180px; top: 78px; animation-delay: 0.8s; }
.chip-language { right: 26px; top: 34px; animation-delay: 1.4s; }
.chip-google { right: 30px; bottom: 150px; animation-delay: 2s; }
.chip-buyer { left: 34px; bottom: 38px; animation-delay: 2.6s; }

.hero-site-stage {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 52%;
  width: min(360px, 70%);
  transform: translate(-50%, -50%);
}

.animated-website-mockup {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(148, 184, 232, 0.78);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 58px rgba(15, 47, 95, 0.17);
  animation: floatCard 7s ease-in-out infinite;
}

.mockup-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(215, 227, 248, 0.95);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mockup-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.mockup-top em {
  margin-left: 6px;
  color: #94a3b8;
  font-size: 0.68rem;
  font-style: normal;
  white-space: nowrap;
}

.mockup-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 14px 0;
}

.mockup-tabs b {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f0fe;
  color: var(--blue);
  font-size: 0.68rem;
  animation: tabPulse 5.6s ease-in-out infinite;
}

.mockup-tabs b:nth-child(2) { animation-delay: 1s; }
.mockup-tabs b:nth-child(3) { animation-delay: 2s; }

.mockup-canvas {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  animation: mockupScroll 6.5s ease-in-out infinite;
}

.mockup-hero-line {
  height: 54px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86) 0 44%, transparent 44%),
    linear-gradient(135deg, var(--preview-a, #dce9ff), #f8fbff);
  border: 1px solid rgba(215, 227, 248, 0.9);
}

.mockup-product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mockup-product-row i {
  min-height: 58px;
  border-radius: 10px;
  border: 1px solid #dce9ff;
  background:
    linear-gradient(#dbeafe 0 0) 10px 38px / 58% 6px no-repeat,
    radial-gradient(circle at 50% 28%, var(--preview-b, #bfdbfe), transparent 32%),
    #ffffff;
}

.mockup-table {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid #dce9ff;
  border-radius: 10px;
  background: #f8fbff;
}

.mockup-table span {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #bfdbfe, #e8f0fe);
}

.mockup-table span:nth-child(even) { width: 74%; }

.mockup-canvas button {
  justify-self: start;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--blue);
  color: #ffffff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(26, 115, 232, 0.26);
}

.animated-inquiry-bubble {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  width: 178px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.32);
  box-shadow: 0 18px 42px rgba(15, 47, 95, 0.16);
  animation: inquiryLoop 6s ease-in-out infinite;
}

.animated-inquiry-bubble strong {
  display: block;
  color: var(--deep-navy);
  font-size: 0.76rem;
  line-height: 1.2;
}

.animated-inquiry-bubble span {
  display: block;
  color: #64748b;
  font-size: 0.66rem;
  line-height: 1.32;
  margin-top: 4px;
}

.seo-visibility-card {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  width: 224px;
  padding: 13px;
  border-radius: 16px;
  border: 1px solid rgba(148, 184, 232, 0.72);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(15, 47, 95, 0.14);
  animation: floatCard 7.4s ease-in-out infinite reverse;
}

.seo-searchbar {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f7ff;
  color: #64748b;
  font-size: 0.68rem;
  margin-bottom: 9px;
}

.seo-result {
  padding: 8px 0;
  border-top: 1px solid #e2e8f0;
}

.seo-result strong,
.seo-result span {
  display: block;
  font-size: 0.68rem;
  line-height: 1.25;
}

.seo-result strong { color: var(--blue); }
.seo-result span { color: #64748b; margin-top: 3px; }

.seo-metrics {
  display: grid;
  grid-template-columns: 1fr repeat(3, 24px);
  align-items: end;
  gap: 6px;
  margin-top: 7px;
}

.seo-metrics b {
  color: var(--deep-navy);
  font-size: 0.66rem;
}

.seo-metrics i {
  display: block;
  height: 22px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--electric), var(--blue));
  animation: metricRise 3.8s ease-in-out infinite;
}

.seo-metrics i:nth-child(3) { height: 34px; animation-delay: 0.4s; }
.seo-metrics i:nth-child(4) { height: 45px; animation-delay: 0.8s; }

.card {
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(15, 47, 95, 0.08);
}

.service-grid .card,
.service-card,
.industry-card {
  min-height: 220px;
}

.service-card,
.industry-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.17), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
}

.service-card::after,
.industry-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 68%);
}

.service-icon,
.industry-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 20%, rgba(56, 189, 248, 0.42), transparent 34%),
    linear-gradient(145deg, #ffffff, #eaf4ff);
  color: var(--mid-navy);
  box-shadow: 0 14px 32px rgba(15, 47, 95, 0.12);
}

.industry-card:hover .industry-icon,
.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.03);
}

.demo-preview {
  height: 238px;
  border-radius: 18px;
  border-color: rgba(148, 184, 232, 0.72);
  background:
    radial-gradient(circle at 84% 10%, rgba(56, 189, 248, 0.2), transparent 30%),
    linear-gradient(145deg, #f8fbff, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.demo-preview::before,
.demo-preview::after {
  display: none;
}

.case-preview-shell {
  position: absolute;
  inset: 14px;
}

.case-preview-shell .animated-website-mockup {
  min-height: 286px;
  transform-origin: top center;
  animation: previewLift 7s ease-in-out infinite;
}

.preview-equipment { --preview-a: #dbeafe; --preview-b: #93c5fd; }
.preview-cooling { --preview-a: #cffafe; --preview-b: #67e8f9; }
.preview-laser { --preview-a: #e0e7ff; --preview-b: #a78bfa; }
.preview-packaging { --preview-a: #dcfce7; --preview-b: #86efac; }
.preview-components { --preview-a: #e0f2fe; --preview-b: #7dd3fc; }
.preview-oem { --preview-a: #fef3c7; --preview-b: #facc15; }
.preview-trust { --preview-a: #dbeafe; --preview-b: #60a5fa; }
.preview-content { --preview-a: #ede9fe; --preview-b: #a78bfa; }

.scan-box {
  min-height: 410px;
  border-radius: 24px;
}

.scan-box .browser {
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(15, 47, 95, 0.16);
}

.scan-report {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: 238px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 22px 52px rgba(15, 47, 95, 0.16);
  animation: reportFloat 6s ease-in-out infinite;
}

.scan-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.scan-score strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue), var(--electric));
  color: white;
  font-size: 1.25rem;
}

.scan-score span {
  color: var(--deep-navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.report-line {
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
}

.report-line b {
  color: #475569;
  font-size: 0.68rem;
}

.report-line span {
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  position: relative;
}

.report-line span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--electric));
  animation: scanMetric 4.5s ease-in-out infinite;
}

.report-line.warn span::after {
  width: 54%;
  background: linear-gradient(90deg, #f59e0b, #38bdf8);
}

.animated-blog-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, var(--preview-b, #93c5fd), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.22), transparent 28%),
    linear-gradient(135deg, #071a33, #0f2f5f 48%, #f8fbff 49%);
}

.blog-art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 24px 24px;
  animation: gridMove 16s linear infinite;
}

.blog-art-card {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(7, 26, 51, 0.22);
}

.blog-art-card.main {
  width: 52%;
  height: 54%;
  left: 18px;
  top: 38px;
  animation: floatCard 7s ease-in-out infinite;
}

.blog-art-card.small {
  width: 34%;
  height: 36%;
  right: 20px;
  bottom: 24px;
  animation: floatCard 6s ease-in-out infinite reverse;
}

.blog-art-line {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  left: 34px;
  z-index: 2;
}

.blog-art-line.one { top: 64px; width: 34%; }
.blog-art-line.two { top: 86px; width: 48%; }

.blog-art-orbit {
  position: absolute;
  right: 52px;
  top: 42px;
  width: 58px;
  height: 58px;
  border: 1px dashed rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  animation: spinSoft 9s linear infinite;
}

.blog-art-signal {
  position: absolute;
  right: 30px;
  top: 106px;
  width: 96px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(180deg, transparent 46%, rgba(56, 189, 248, 0.24) 46%),
    rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: signalRise 5.5s ease-in-out infinite;
}

.seo-cover { --preview-b: #38bdf8; }
.language-cover { --preview-b: #60a5fa; }
.trust-cover { --preview-b: #22c55e; }
.product-cover { --preview-b: #93c5fd; }
.content-cover { --preview-b: #a78bfa; }
.platform-cover { --preview-b: #f59e0b; }

.seo-cover .blog-art-card.main {
  background:
    linear-gradient(#0f2f5f 0 0) 18px 22px / 42% 8px no-repeat,
    linear-gradient(#dbeafe 0 0) 18px 48px / 72% 7px no-repeat,
    linear-gradient(#dbeafe 0 0) 18px 70px / 58% 7px no-repeat,
    rgba(255, 255, 255, 0.88);
}

.language-cover .blog-art-card.main {
  background:
    radial-gradient(circle at 20% 24%, #38bdf8 0 12px, transparent 13px),
    radial-gradient(circle at 50% 52%, #60a5fa 0 12px, transparent 13px),
    radial-gradient(circle at 78% 30%, #0f2f5f 0 12px, transparent 13px),
    rgba(255, 255, 255, 0.88);
}

.trust-cover .blog-art-card.main {
  background:
    linear-gradient(#22c55e 0 0) 20px 28px / 34% 10px no-repeat,
    linear-gradient(#dbeafe 0 0) 20px 58px / 72% 7px no-repeat,
    linear-gradient(#dbeafe 0 0) 20px 80px / 56% 7px no-repeat,
    rgba(255, 255, 255, 0.88);
}

.visual-system {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.visual-system::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(26,115,232,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 18s linear infinite;
}

.visual-paths {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.visual-paths path {
  fill: none;
  stroke: var(--electric);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  opacity: 0.72;
  animation: dash 7s linear infinite;
}

.keyword-cluster {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 9px;
}

.keyword-cluster span,
.language-selector em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: var(--mid-navy);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(15, 47, 95, 0.09);
  animation: chipFloat 6.6s ease-in-out infinite;
}

.keyword-cluster span:nth-child(2),
.language-selector em:nth-child(2) { animation-delay: 0.8s; }
.keyword-cluster span:nth-child(3),
.language-selector em:nth-child(3) { animation-delay: 1.6s; }
.language-selector em:nth-child(4) { animation-delay: 2.4s; }

.cluster-left { left: 36px; top: 54px; }
.cluster-right { right: 38px; top: 64px; }

.search-index-card {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: min(330px, 72%);
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 184, 232, 0.74);
  box-shadow: 0 26px 66px rgba(15, 47, 95, 0.16);
  transform: translate(-50%, -50%);
}

.search-head,
.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-head {
  color: var(--deep-navy);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.search-head i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--electric);
  box-shadow: 0 0 18px var(--electric);
}

.search-row {
  min-height: 46px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.74rem;
}

.search-row b {
  width: 42px;
  color: var(--blue);
  font-size: 1rem;
}

.search-row.active b {
  animation: rankPulse 3.8s ease-in-out infinite;
}

.rank-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 62px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f6faff;
  border: 1px solid #dce9ff;
}

.rank-chart i {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--electric), var(--blue));
  animation: metricRise 4.2s ease-in-out infinite;
}

.rank-chart i:nth-child(1) { height: 18px; }
.rank-chart i:nth-child(2) { height: 26px; animation-delay: 0.2s; }
.rank-chart i:nth-child(3) { height: 34px; animation-delay: 0.4s; }
.rank-chart i:nth-child(4) { height: 44px; animation-delay: 0.6s; }
.rank-chart i:nth-child(5) { height: 52px; animation-delay: 0.8s; }

.locale-page {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 184, 232, 0.74);
  box-shadow: 0 22px 56px rgba(15, 47, 95, 0.14);
  animation: localeFan 7s ease-in-out infinite;
}

.locale-page b {
  width: 38px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e8f0fe;
  color: var(--blue);
  font-size: 0.74rem;
}

.locale-page span,
.locale-page i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dbeafe;
}

.locale-page span:nth-child(2) { width: 94px; background: var(--mid-navy); }
.locale-page span:nth-child(3) { width: 132px; }
.locale-page i {
  width: 74px;
  height: 42px;
  border-radius: 12px;
  background:
    linear-gradient(#bfdbfe 0 0) 12px 26px / 42px 6px no-repeat,
    radial-gradient(circle at 50% 38%, var(--electric), transparent 30%),
    #f8fbff;
  border: 1px solid #dce9ff;
}

.page-main {
  left: 50%;
  top: 48%;
  width: 210px;
  min-height: 174px;
  transform: translate(-50%, -50%);
}

.page-es { left: 36px; top: 58px; width: 172px; animation-delay: 0.7s; }
.page-de { right: 40px; top: 74px; width: 172px; animation-delay: 1.4s; }
.page-ar { right: 72px; bottom: 42px; width: 172px; animation-delay: 2.1s; }

.language-globe {
  position: absolute;
  z-index: 2;
  left: 42px;
  bottom: 38px;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(56, 189, 248, 0.72);
  border-radius: 999px;
  animation: spinSoft 18s linear infinite;
}

.language-globe span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--electric);
  box-shadow: 0 0 18px var(--electric);
}

.language-globe span:nth-child(1) { left: 22px; top: 22px; }
.language-globe span:nth-child(2) { right: 18px; top: 34px; }
.language-globe span:nth-child(3) { left: 44px; bottom: 14px; }
.language-globe span:nth-child(4) { right: 36px; bottom: 34px; }

.language-selector {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.conversion-system {
  position: relative;
  min-height: 250px;
  margin: 0 0 26px;
  border: 1px solid rgba(148, 184, 232, 0.72);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(34, 197, 94, 0.12), transparent 30%),
    linear-gradient(145deg, #ffffff, #f6faff);
  box-shadow: 0 22px 56px rgba(15, 47, 95, 0.09);
}

.conversion-system::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  background-image:
    linear-gradient(rgba(26,115,232,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.conversion-system svg {
  position: absolute;
  inset: 20px 24px 0;
  width: calc(100% - 48px);
  height: 170px;
  overflow: visible;
}

.conversion-track {
  fill: none;
  stroke: rgba(15, 47, 95, 0.2);
  stroke-width: 3;
  stroke-linecap: round;
}

.conversion-dot {
  fill: var(--electric);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.9));
  offset-path: path("M72 105 C190 44 274 166 384 105 S574 44 694 105 S800 160 850 105");
  animation: inquiryJourney 7s ease-in-out infinite;
}

.conversion-step,
.conversion-inbox {
  position: absolute;
  z-index: 2;
  width: 158px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 14px 36px rgba(15, 47, 95, 0.1);
}

.conversion-step b,
.conversion-inbox strong {
  display: block;
  color: var(--deep-navy);
  font-size: 0.82rem;
  line-height: 1.2;
}

.conversion-step span,
.conversion-inbox span {
  display: block;
  color: #64748b;
  font-size: 0.68rem;
  line-height: 1.35;
  margin-top: 4px;
}

.step-search { left: 26px; top: 36px; }
.step-product { left: 25%; bottom: 26px; }
.step-trust { left: 50%; top: 32px; transform: translateX(-50%); }
.step-form { right: 22%; bottom: 30px; }
.conversion-inbox {
  right: 26px;
  top: 42px;
  border-color: rgba(34, 197, 94, 0.32);
  animation: inboxConfirm 7s ease-in-out infinite;
}

@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes mockupScroll { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-28px); } }
@keyframes metricRise { 0%,100% { transform: scaleY(0.72); opacity: 0.7; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes previewLift { 0%,100% { transform: translateY(0) scale(0.96); } 50% { transform: translateY(-38px) scale(0.96); } }
@keyframes reportFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scanMetric { 0%, 100% { transform: translateX(-8%); } 50% { transform: translateX(8%); } }
@keyframes signalRise { 0%,100% { clip-path: inset(34% 0 0); opacity: 0.78; } 50% { clip-path: inset(8% 0 0); opacity: 1; } }
@keyframes rankPulse { 0%,100% { transform: translateY(0); color: var(--blue); } 50% { transform: translateY(-5px); color: var(--electric); } }
@keyframes localeFan { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }
@keyframes inquiryJourney {
  0%, 8% { offset-distance: 0%; opacity: 0; }
  16%, 86% { opacity: 1; }
  92%, 100% { offset-distance: 100%; opacity: 0; }
}
@keyframes inboxConfirm { 0%, 70%, 100% { transform: translateY(0); } 82% { transform: translateY(-7px); border-color: rgba(34, 197, 94, 0.72); } }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .motion-panel { min-height: 420px; }
  .grid.three, .grid.four, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow::before { display: none; }
  .conversion-system {
    min-height: 420px;
  }
  .conversion-system svg {
    display: none;
  }
  .conversion-step,
  .conversion-inbox {
    left: 24px;
    right: 24px;
    width: auto;
    transform: none;
  }
  .step-search { top: 26px; }
  .step-product { top: 108px; bottom: auto; }
  .step-trust { top: 190px; }
  .step-form { top: 272px; bottom: auto; }
  .conversion-inbox { top: 340px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  body { overflow-x: hidden; }
  h1, h2, p, .hero-note span {
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 10.5vw, 2.55rem);
  }
  .section { padding: 64px 0; }
  .hero-inner { padding: 68px 0 56px; }
  .hero-inner > div:first-child,
  .hero p,
  .hero-actions,
  .hero-note {
    width: 100%;
    max-width: 342px;
  }
  .grid.two, .grid.three, .grid.four, .footer-grid, .form-grid, .flow { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 22px; }
  .browser { inset: 82px 20px 78px; }
  .node-google { right: 18px; }
  .node-buyer { right: 18px; }
  .brand span:last-child { max-width: 190px; overflow: hidden; text-overflow: ellipsis; }
  .motion-panel {
    width: 100%;
    max-width: 342px;
    min-height: 500px;
    border-radius: 22px;
  }
  .system-chip { width: 138px; padding: 10px 11px; }
  .system-chip b { font-size: 0.76rem; }
  .system-chip span { font-size: 0.64rem; }
  .chip-factory { left: 18px; top: 28px; }
  .chip-language { right: 18px; top: 28px; }
  .chip-site { left: calc(50% - 69px); top: 94px; }
  .chip-google { right: 18px; bottom: 124px; }
  .chip-buyer { left: 18px; bottom: 28px; }
  .hero-site-stage { top: 54%; width: 76%; }
  .hero-site-stage .animated-website-mockup { min-height: 250px; }
  .seo-visibility-card { width: 190px; right: 18px; bottom: 78px; padding: 10px; }
  .seo-result strong,
  .seo-result span,
  .seo-searchbar,
  .seo-metrics b { font-size: 0.6rem; }
  .animated-hero-system > .animated-inquiry-bubble {
    right: 18px;
    bottom: 18px;
    width: 158px;
  }
  .demo-preview { height: 220px; }
  .scan-report {
    left: 22px;
    right: 22px;
    width: auto;
  }
  .cluster-left { left: 22px; top: 30px; }
  .cluster-right { right: 22px; top: 30px; }
  .keyword-cluster span:nth-child(n+3) { display: none; }
  .search-index-card {
    width: calc(100% - 44px);
    top: 55%;
  }
  .page-main {
    width: 180px;
    top: 48%;
  }
  .page-es,
  .page-de,
  .page-ar {
    width: 136px;
  }
  .page-es { left: 20px; top: 42px; }
  .page-de { right: 20px; top: 58px; }
  .page-ar { right: 20px; bottom: 88px; }
  .language-globe {
    left: 22px;
    bottom: 46px;
    width: 88px;
    height: 88px;
  }
  .language-selector {
    bottom: 22px;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Chrome Safety inspired visual refresh */
:root {
  --navy: #1967d2;
  --blue: #1a73e8;
  --cyan: #4285f4;
  --cyan-soft: #e8f0fe;
  --google-blue: #1a73e8;
  --google-blue-light: #4285f4;
  --google-blue-soft: #e8f0fe;
  --bg: #f8fafd;
  --text: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --white: #ffffff;
  --shadow: 0 12px 34px rgba(60, 64, 67, 0.12);
  --radius: 8px;
  --google-red: #ea4335;
  --google-yellow: #fbbc04;
  --google-green: #34a853;
  font-family: "Google Sans", "Google Sans Text", "Noto Sans SC", Roboto, Arial, sans-serif;
}

html,
body {
  background: #fff;
}

body {
  color: var(--text);
  font-family: "Google Sans", "Google Sans Text", "Noto Sans SC", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.82;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Google Sans", "Google Sans Text", "Noto Sans SC", Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.75rem);
  line-height: 1.12;
  max-width: 1040px;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.25rem);
  line-height: 1.18;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.42;
}

.container {
  width: min(1220px, calc(100% - 48px));
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #edf0f3;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
}

.brand {
  color: #3c4043;
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-mark {
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--brand-blue-dark, #0f2f5f), var(--brand-blue, #1769d2), var(--brand-cyan, #20a7d8));
  box-shadow: none;
}

.nav-links {
  gap: 24px;
  color: #5f6368;
  font-size: 0.92rem;
  font-weight: 500;
}

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

.button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: none;
  transform: none;
}

.button:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(60, 64, 67, 0.18);
}

.button.primary,
.button.cyan {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

.button.secondary {
  background: #fff;
  color: var(--blue);
  border-color: #dadce0;
}

.button.secondary:hover {
  background: #f8fafd;
  border-color: #c9d7f8;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--brand-blue, #1769d2), var(--brand-cyan, #20a7d8));
  transform: rotate(45deg);
}

.hero,
.subhero {
  background: #fff;
}

.hero::before,
.hero::after,
.subhero::after,
.section.dark::before,
.cta-band::after,
.image-panel::after {
  display: none;
}

.hero-inner {
  min-height: 760px;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(36px, 6vw, 88px);
  padding: 112px 0 92px;
}

.hero p,
.subhero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.9;
}

.hero-actions,
.cta-row {
  gap: 12px;
  margin-top: 32px;
}

.hero-note {
  gap: 10px;
  margin-top: 30px;
}

.hero-note span,
.tag {
  border: 1px solid #dfe5f2;
  border-radius: 999px;
  background: #f8fafd;
  color: #3c4043;
  box-shadow: none;
  font-weight: 600;
}

.image-panel,
.motion-panel,
.scan-box,
.conversion-system {
  border: 0;
  border-radius: 32px;
  background: #f1f6ff;
  box-shadow: none;
}

.hero-visual {
  aspect-ratio: 1 / 1;
  min-height: 520px;
}

.service-visual {
  aspect-ratio: 1.15 / 1;
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section.alt {
  background: #f8fafd;
}

.section.dark {
  background: #f1f6ff;
  border: 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 48px;
}

.section-head.center {
  max-width: 940px;
}

.section-head h2::after {
  width: 64px;
  height: 6px;
  margin-top: 22px;
  background:
    linear-gradient(90deg, var(--brand-blue, #1769d2), var(--brand-cyan, #20a7d8), var(--brand-teal, #1f9d88));
}

.grid {
  gap: 24px;
}

.card {
  border: 1px solid #edf0f3;
  border-radius: 28px;
  background: #fff;
  padding: 30px;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card::before {
  display: none;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #d2e3fc;
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.12);
}

.service-card,
.industry-card {
  background: #fff;
}

.service-icon,
.industry-icon,
.icon {
  border: 0;
  border-radius: 50%;
  background: #e8f0fe;
  color: var(--blue);
  box-shadow: none;
}

.card:nth-child(4n + 2) .service-icon,
.card:nth-child(4n + 2) .industry-icon {
  background: #fce8e6;
  color: var(--google-red);
}

.card:nth-child(4n + 3) .service-icon,
.card:nth-child(4n + 3) .industry-icon {
  background: #fef7e0;
  color: #b06000;
}

.card:nth-child(4n + 4) .service-icon,
.card:nth-child(4n + 4) .industry-icon {
  background: #e6f4ea;
  color: var(--google-green);
}

.flow {
  gap: 22px;
}

.flow::before {
  top: 53px;
  height: 1px;
  background: #dadce0;
  animation: none;
}

.step-number,
.timeline-index {
  background: #e8f0fe;
  color: var(--blue);
  border: 0;
  box-shadow: none;
}

.package.featured {
  transform: none;
  border-color: #1a73e8;
  box-shadow: 0 12px 34px rgba(26, 115, 232, 0.16);
}

.package.featured::before {
  display: none;
}

.price-title {
  color: var(--text);
  font-weight: 700;
}

.check-list {
  color: #3c4043;
}

.check-list li::before {
  content: "";
  background: #e6f4ea;
  color: var(--google-green);
  background-image:
    linear-gradient(45deg, transparent 45%, var(--google-green) 45% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 38%, var(--google-green) 38% 52%, transparent 52%);
  background-size: 9px 14px, 16px 14px;
  background-position: 5px 2px, 5px 2px;
  background-repeat: no-repeat;
}

.demo-image,
.blog-cover,
.card-image,
.demo-preview {
  border-color: #edf0f3;
  border-radius: 22px;
  background: #f8fafd;
}

.timeline::before {
  background: #dadce0;
}

.timeline::after {
  background: var(--blue);
  box-shadow: none;
}

.faq {
  border-top-color: #dadce0;
}

.faq-item {
  border-bottom-color: #dadce0;
}

.faq-button {
  min-height: 76px;
  color: var(--text);
  font-weight: 700;
}

.cta-band {
  border: 0;
  border-radius: 32px;
  padding: clamp(34px, 6vw, 72px);
  background: #e8f0fe;
  box-shadow: none;
}

.footer {
  background: #f8fafd;
  border-top: 1px solid #edf0f3;
}

.footer a,
.footer-bottom {
  color: #5f6368;
}

.subhero {
  padding: clamp(78px, 10vw, 132px) 0;
  border-bottom: 1px solid #edf0f3;
}

.subhero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6.4vw, 5.8rem);
}

.split {
  gap: clamp(36px, 6vw, 76px);
}

label {
  color: #3c4043;
  font-weight: 600;
}

input,
textarea,
select {
  border-color: #dadce0;
  border-radius: 14px;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #e8f0fe;
  border-color: var(--blue);
}

.article {
  max-width: 860px;
}

.article h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

@media (max-width: 980px) {
  .nav-links {
    top: 68px;
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(60, 64, 67, 0.16);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1220px);
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h1,
  h2,
  p,
  .hero-note span {
    word-break: normal;
    overflow-wrap: break-word;
    line-break: auto;
  }

  .hero-inner {
    padding: 74px 0 64px;
  }

  .hero-inner > div:first-child,
  .hero p,
  .hero-actions,
  .hero-note {
    max-width: none;
  }

  .hero-actions,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
  }

  .section {
    padding: 70px 0;
  }

  .card {
    border-radius: 24px;
    padding: 24px;
  }

  .cta-band {
    border-radius: 26px;
  }
}

/* One-page layout adjustments */
section[id] {
  scroll-margin-top: 92px;
}

.hero-inner {
  min-height: calc(100vh - 76px);
  padding: clamp(64px, 7vw, 86px) 0 clamp(48px, 6vw, 68px);
}

.hero h1 {
  font-size: clamp(3.4rem, 6.1vw, 6.35rem);
  line-height: 1.12;
}

.hero p {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.86;
}

.hero-visual {
  min-height: clamp(360px, 34vw, 500px);
}

.hero-actions,
.hero-note {
  margin-top: 24px;
}

#contact {
  border-top: 1px solid #edf0f3;
}

@media (min-width: 981px) and (max-height: 940px) {
  .hero-inner {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.3vw, 5.4rem);
  }

  .hero-visual {
    min-height: clamp(320px, 30vw, 430px);
  }
}

@media (max-width: 640px) {
  section[id] {
    scroll-margin-top: 76px;
  }

  .nav {
    position: relative;
    min-height: 68px;
    padding-right: 56px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .nav-toggle {
    position: fixed;
    right: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(60, 64, 67, 0.12);
    transform: none;
    color: var(--blue);
    font-weight: 700;
    z-index: 80;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.72rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.86;
    overflow-wrap: anywhere;
  }

}

@media (max-width: 980px) {
  .site-header .nav {
    min-height: 68px;
    padding-right: 64px;
  }

  .site-header .nav-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    color: #1a73e8;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(60, 64, 67, 0.12);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.25rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .hero p {
    line-height: 1.86;
    overflow-wrap: anywhere;
  }
}

/* Final responsive pass */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.container {
  width: min(1760px, calc(100% - clamp(32px, 7vw, 144px)));
}

.hero {
  overflow: clip;
}

.hero-inner {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  padding: clamp(34px, 5.2vh, 56px) 0 clamp(34px, 5.8vh, 62px);
  overflow: hidden;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(4.1rem, 5.1vw, 6.05rem);
  line-height: 1.12;
}

.hero p {
  max-width: 780px;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.86;
}

.hero-visual {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.24 / 1;
}

.hero-video-panel {
  aspect-ratio: 4 / 3;
}

.service-visual img,
.demo-image img,
.blog-cover img {
  object-fit: contain;
}

.hero-visual img {
  object-fit: cover;
}

.hero-actions,
.hero-note {
  margin-top: clamp(18px, 2.4vw, 26px);
}

.hero-note {
  max-width: 100%;
}

.hero-note span {
  min-width: 0;
}

.section {
  padding: clamp(60px, 7vw, 104px) 0;
}

@media (max-width: 1440px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(28px, 4vw, 56px);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 5.2vw, 5.05rem);
  }
}

@media (max-width: 1180px) {
  .nav {
    gap: 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  }

  .hero h1 {
    font-size: clamp(3rem, 5.25vw, 4.4rem);
  }

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1220px);
  }

  .nav {
    min-height: 68px;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--blue);
    font-weight: 700;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(60, 64, 67, 0.16);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(2.75rem, 8vw, 4.1rem);
  }

  .hero p {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .brand {
    gap: 8px;
    min-width: 0;
    font-size: 0.9rem;
  }

  .brand span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    flex: 0 0 34px;
  }

  .hero-inner {
    gap: 28px;
    padding-top: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.8vw, 2.92rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero p,
  p,
  li,
  label,
  input,
  textarea,
  .button,
  .tag,
  .hero-note span {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-note span {
    width: 100%;
  }

  .hero-visual {
    max-width: 100%;
    aspect-ratio: 1 / 0.82;
    border-radius: 22px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .form-grid,
  .flow {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

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

}

/* Mobile overflow hardening */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 700;
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  body,
  main,
  .site-header,
  .hero,
  .container,
  .hero-inner,
  .hero-inner > div:first-child,
  .hero-actions,
  .hero-note {
    width: 100%;
    max-width: 100%;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.58rem);
  }

  .hero p {
    max-width: calc(100vw - 28px);
    font-size: 0.96rem;
    line-height: 1.86;
    word-break: break-all;
  }

  .button,
  .hero-note span {
    max-width: calc(100vw - 28px);
  }

  .image-panel,
  .hero-visual {
    max-width: calc(100vw - 28px);
  }

  .hero-visual,
  .hero-video-panel video {
    min-height: 220px;
  }
}

/* Chrome Safety Chinese typography match */
:root {
  --text: #202124;
  --muted: #5f6368;
  --chrome-heading: #202124;
  --chrome-body: #5f6368;
  --chrome-secondary: #3c4043;
  font-family: "Google Sans", "Google Sans Text", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Roboto, Arial, sans-serif;
}

html:lang(zh-CN),
body,
button,
input,
textarea,
select {
  font-family: "Google Sans", "Google Sans Text", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Roboto, Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  color: var(--chrome-heading);
}

h1,
h2,
h3,
h4,
.subhero h1,
.hero h1,
.card h2,
.card h3,
.faq-button,
.price-title,
.footer strong {
  color: var(--chrome-heading);
  font-family: "Google Sans", "Google Sans Text", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

p,
li,
.hero p,
.subhero p,
.section-head p,
.card p,
.article p,
.article li,
.footer,
.footer a,
.footer-bottom,
.seo-result span {
  color: var(--chrome-body);
  font-weight: 400;
}

.eyebrow,
.brand,
.nav-links,
.hero-note span,
.tag,
.check-list,
label {
  font-family: "Google Sans", "Google Sans Text", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Roboto, Arial, sans-serif;
}

.nav-links,
.brand,
.hero-note span,
.check-list,
label {
  color: var(--chrome-secondary);
}

/* Independent B2B technology refresh */
:root {
  --g-blue: #1769d2;
  --g-blue-2: #20a7d8;
  --g-red: #0f2f5f;
  --g-yellow: #7dd3fc;
  --g-green: #1f9d88;
  --g-ink: #202124;
  --g-muted: #5f6368;
  --g-surface: #ffffff;
  --g-border: #dadce0;
  --g-blue-soft: #eaf4ff;
  --g-red-soft: #eef6ff;
  --g-yellow-soft: #f0fbff;
  --g-green-soft: #e8f7f4;
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(32, 167, 216, 0.1), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(23, 105, 210, 0.08), transparent 23%),
    radial-gradient(circle at 14% 72%, rgba(31, 157, 136, 0.08), transparent 24%),
    #ffffff;
}

.site-header {
  border-bottom-color: rgba(218, 220, 224, 0.82);
}

.brand-mark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--g-red), var(--g-blue) 58%, var(--g-blue-2));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.22);
}

.hero {
  background:
    linear-gradient(90deg, rgba(23, 105, 210, 0.07), transparent 18% 82%, rgba(31, 157, 136, 0.06)),
    radial-gradient(circle at 68% 20%, rgba(32, 167, 216, 0.11), transparent 24%),
    #ffffff;
}

.hero::before {
  display: block;
  opacity: 0.75;
  background-image:
    linear-gradient(rgba(26, 115, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero-inner {
  position: relative;
}

.hero-inner::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  bottom: 48px;
  width: 132px;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--g-blue), var(--g-blue-2), var(--g-green));
}

.hero h1 {
  color: var(--g-ink);
}

.hero-video-panel {
  padding: 12px;
  border: 2px solid rgba(26, 115, 232, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(26, 115, 232, 0.85), rgba(52, 168, 83, 0.68) 36%, rgba(251, 188, 4, 0.72) 68%, rgba(234, 67, 53, 0.75)) border-box;
  box-shadow:
    0 24px 70px rgba(60, 64, 67, 0.16),
    0 0 0 10px rgba(232, 240, 254, 0.58);
}

.hero-video-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 20px;
  border: 1px solid rgba(218, 220, 224, 0.8);
  z-index: 2;
}

.hero-video-panel video {
  min-height: 0;
  border-radius: 18px;
  background: #ffffff;
}

.button.primary,
.button.cyan {
  background: var(--g-blue);
  box-shadow: 0 10px 24px rgba(26, 115, 232, 0.24);
}

.button.primary:hover,
.button.cyan:hover {
  background: #0b57d0;
}

.button.secondary:hover {
  color: #0b57d0;
  border-color: rgba(26, 115, 232, 0.36);
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.1);
}

.hero-note span {
  border-color: transparent;
  background: var(--g-blue-soft);
  color: #174ea6;
}

.hero-note span:nth-child(2) {
  background: var(--g-green-soft);
  color: #137333;
}

.hero-note span:nth-child(3) {
  background: var(--g-yellow-soft);
  color: #8f4700;
}

.section.alt {
  background:
    radial-gradient(circle at 12% 22%, rgba(66, 133, 244, 0.11), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(52, 168, 83, 0.1), transparent 22%),
    linear-gradient(180deg, #f8fafd, #ffffff);
}

.section.dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(251, 188, 4, 0.15), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(26, 115, 232, 0.12), transparent 26%),
    #f8fafd;
}

.section-head h2::after {
  width: 86px;
  background:
    linear-gradient(90deg, var(--g-blue), var(--g-blue-2), var(--g-green));
}

.card {
  border-color: rgba(218, 220, 224, 0.9);
  box-shadow: 0 12px 34px rgba(60, 64, 67, 0.07);
}

.card::before {
  display: block;
  opacity: 1;
  height: 4px;
  background: var(--g-blue);
}

.card:nth-child(4n + 2)::before {
  background: var(--g-red);
}

.card:nth-child(4n + 3)::before {
  background: var(--g-yellow);
}

.card:nth-child(4n + 4)::before {
  background: var(--g-green);
}

.card:hover {
  border-color: rgba(26, 115, 232, 0.28);
  box-shadow: 0 18px 46px rgba(60, 64, 67, 0.14);
}

.tag {
  background: var(--g-blue-soft);
  color: #174ea6;
}

.card:nth-child(4n + 2) .tag {
  background: var(--g-red-soft);
  color: #b3261e;
}

.card:nth-child(4n + 3) .tag {
  background: var(--g-yellow-soft);
  color: #8f4700;
}

.card:nth-child(4n + 4) .tag {
  background: var(--g-green-soft);
  color: #137333;
}

.step-number,
.timeline-index {
  background: var(--g-blue-soft);
  color: var(--g-blue);
}

.step:nth-child(4n + 2) .step-number {
  background: var(--g-red-soft);
  color: var(--g-red);
}

.step:nth-child(4n + 3) .step-number {
  background: var(--g-yellow-soft);
  color: #b06000;
}

.step:nth-child(4n + 4) .step-number {
  background: var(--g-green-soft);
  color: var(--g-green);
}

.package.featured {
  border-color: var(--g-blue);
  box-shadow:
    0 20px 54px rgba(26, 115, 232, 0.16),
    inset 0 4px 0 var(--g-blue);
}

.cta-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(251, 188, 4, 0.18), transparent 28%),
    radial-gradient(circle at 16% 76%, rgba(52, 168, 83, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8fafd);
  border-color: rgba(218, 220, 224, 0.86);
}

.footer {
  background:
    linear-gradient(90deg, rgba(26, 115, 232, 0.08), transparent 28% 72%, rgba(234, 67, 53, 0.06)),
    #ffffff;
}

@media (max-width: 640px) {
  .hero-inner::after {
    bottom: 18px;
    width: 104px;
  }

  .hero-video-panel {
    padding: 8px;
    border-radius: 22px;
    box-shadow:
      0 14px 36px rgba(60, 64, 67, 0.14),
      0 0 0 6px rgba(232, 240, 254, 0.52);
  }

  .hero-video-panel::before {
    inset: 8px;
    border-radius: 16px;
  }
}

/* Client-requested final tuning */
html {
  scroll-padding-top: 92px;
}

.hero-note span {
  border: 1px solid rgba(26, 115, 232, 0.36);
  background: #cfe0ff;
  color: #0842a0;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(26, 115, 232, 0.12);
}

.hero-note span:nth-child(2) {
  border-color: rgba(52, 168, 83, 0.38);
  background: #c9edcf;
  color: #0a5d25;
}

.hero-note span:nth-child(3) {
  border-color: rgba(251, 188, 4, 0.48);
  background: #ffe39a;
  color: #7a3f00;
}

.hero h1 {
  color: #202124;
  font-weight: 700;
}

.hero p {
  color: #4b5563;
}

.section,
.section.alt,
.section.dark {
  position: relative;
  background: #ffffff;
  border-top: 1px solid #edf0f3;
}

.section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: max(20px, calc((100% - 1760px) / 2));
  right: max(20px, calc((100% - 1760px) / 2));
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--g-blue);
  opacity: 0.9;
}

.section:nth-of-type(4n + 2)::before {
  background: var(--g-green);
}

.section:nth-of-type(4n + 3)::before {
  background: var(--g-yellow);
}

.section:nth-of-type(4n + 4)::before {
  background: var(--g-red);
}

.section.dark::before {
  display: block;
  inset: auto max(20px, calc((100% - 1760px) / 2)) auto max(20px, calc((100% - 1760px) / 2));
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--g-red);
  background-image: none;
  opacity: 0.9;
}

.section.dark h2,
.section.dark h3,
.section.dark p {
  color: inherit;
}

.cta-band {
  background: #ffffff;
  border: 1px solid #edf0f3;
  box-shadow: inset 0 4px 0 var(--g-blue), 0 12px 34px rgba(60, 64, 67, 0.07);
}

.faq-panel {
  transition: max-height 300ms ease;
}

.faq-item.open .faq-panel {
  max-height: 460px;
}

.faq-panel p {
  max-width: 980px;
  line-height: 1.82;
}

.form {
  gap: 8px;
  padding: 18px;
  align-self: start;
}

.form-grid {
  gap: 8px;
}

label {
  gap: 4px;
  font-size: 0.88rem;
}

input,
textarea,
select {
  padding: 8px 11px;
}

textarea {
  min-height: 62px;
}

#contact .split {
  align-items: start;
}

#contact-form {
  scroll-margin-top: 104px;
}

.hero::before,
.section.dark::before,
.motion-panel::before,
.flow::before,
.connection-line path,
.industry-icon .spin,
.service-icon .spin,
.industry-icon .pulse,
.service-icon .pulse,
.industry-icon .slide,
.service-icon .slide,
.industry-icon .beam,
.service-icon .beam,
.demo-page,
.scan-line,
.timeline::after,
.animated-inquiry-bubble,
.seo-result.active,
.rank-chart i,
.locale-page,
.language-globe,
.conversion-dot,
.conversion-inbox {
  animation: none !important;
}

.reveal-item {
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: auto;
}

.card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card:hover {
  transform: translateY(-1px);
}

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

  .form {
    padding: 18px;
  }

  textarea {
    min-height: 60px;
  }

  #contact-form {
    scroll-margin-top: 84px;
  }
}

/* Case demo video cards */
.case-demo-grid {
  align-items: stretch;
}

.case-demo-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.case-demo-card::before {
  height: 5px;
}

.case-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background:
    linear-gradient(rgba(26, 115, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.055) 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
  border-bottom: 1px solid #edf0f3;
}

.case-video-frame video {
  position: absolute;
  inset: 12px;
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  object-fit: cover;
  background: #ffffff;
}

.case-video-frame.is-video-lazy {
  cursor: default;
}

.case-video-frame.is-video-lazy::before {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") 56% 50% / 19px 19px no-repeat,
    rgba(16, 24, 43, 0.72);
  box-shadow: 0 14px 28px rgba(16, 24, 43, 0.24);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.case-video-frame.is-video-lazy::after {
  z-index: 3;
}

.case-video-frame.is-video-lazy video {
  cursor: default;
}

.case-video-frame.is-video-lazy.is-video-loaded {
  cursor: default;
}

.case-video-frame.is-video-lazy.is-video-loaded::before {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

@media (max-width: 768px) {
  .case-video-frame.is-video-lazy {
    cursor: pointer;
  }

  .case-video-frame.is-video-lazy::before {
    display: block;
  }

  .case-video-frame.is-video-lazy video {
    cursor: pointer;
  }
}

.case-video-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(216, 229, 251, 0.9);
  border-radius: 14px;
}

.case-video-frame.placeholder {
  display: grid;
  place-items: center;
  min-height: 0;
}

.case-video-frame.placeholder div {
  display: grid;
  gap: 8px;
  text-align: center;
}

.case-video-frame.placeholder span {
  color: #1a73e8;
  font-size: 0.86rem;
  font-weight: 700;
}

.case-video-frame.placeholder strong {
  color: #10182b;
  font-size: 1.05rem;
}

.case-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.case-card-body h3 {
  margin-top: 2px;
  font-size: 1.45rem;
  line-height: 1.18;
}

.case-card-body p {
  margin-top: 16px;
}

.case-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
  color: #3c4043;
}

.case-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.93rem;
  line-height: 1.55;
}

.case-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a73e8;
}

.case-link {
  align-self: flex-start;
  margin-top: auto;
}

.case-points + .case-link {
  margin-top: 22px;
}

.pending-case .case-video-frame {
  background:
    radial-gradient(circle at 72% 22%, rgba(26, 115, 232, 0.12), transparent 28%),
    linear-gradient(rgba(26, 115, 232, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.052) 1px, transparent 1px),
    #f8fafd;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

@media (max-width: 640px) {
  .case-card-body {
    padding: 22px;
  }
}

/* Technology section */
.tech-section {
  overflow: hidden;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.tech-lead-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(232, 240, 254, 0.82), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.tech-lead-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.2;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.stack-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #174ea6;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

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

.tech-benefit {
  min-height: 100%;
  padding: 24px;
}

.tech-benefit h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

.tech-benefit p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.76;
}

.build-compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.compare-column {
  border: 1px solid rgba(218, 220, 224, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(60, 64, 67, 0.07);
  overflow: hidden;
}

.compare-head {
  display: grid;
  gap: 8px;
  padding: 24px 26px;
  border-bottom: 1px solid #edf0f3;
}

.compare-head span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.compare-head strong {
  color: #202124;
  font-size: clamp(1.14rem, 1.7vw, 1.45rem);
  line-height: 1.32;
}

.code-build .compare-head {
  background: linear-gradient(135deg, #e8f0fe, #ffffff);
}

.code-build .compare-head span {
  background: #cfe0ff;
  color: #0842a0;
}

.platform-build .compare-head {
  background: linear-gradient(135deg, #f8fafd, #ffffff);
}

.platform-build .compare-head span {
  background: #f1f3f4;
  color: #5f6368;
}

.compare-column ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-column li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 26px;
  border-top: 1px solid #edf0f3;
}

.compare-column li:first-child {
  border-top: 0;
}

.compare-column b {
  color: #202124;
  line-height: 1.45;
}

.compare-column span {
  color: #5f6368;
  line-height: 1.72;
}

.code-build li b::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--g-green, #34a853);
}

.platform-build li b::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #9aa0a6;
}

.compare-vs {
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #202124;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(32, 33, 36, 0.18);
}

@media (max-width: 980px) {
  .tech-stack-grid,
  .build-compare {
    grid-template-columns: 1fr;
  }

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

  .compare-vs {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 640px) {
  .tech-benefits {
    grid-template-columns: 1fr;
  }

  .stack-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stack-pills span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .compare-head,
  .compare-column li {
    padding: 20px;
  }

  .compare-column li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Final independent B2B visual direction */
:root {
  --brand-blue: #1769d2;
  --brand-blue-dark: #0f2f5f;
  --brand-cyan: #20a7d8;
  --brand-teal: #1f9d88;
  --brand-soft: #eaf4ff;
  --brand-line: #d8e5f2;
  --brand-ink: #172033;
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(32, 167, 216, 0.07), transparent 30%),
    radial-gradient(circle at 90% 28%, rgba(31, 157, 136, 0.06), transparent 28%),
    #ffffff;
}

.brand-mark {
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 58%, var(--brand-cyan));
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(23, 105, 210, 0.18);
}

.eyebrow::before {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  transform: rotate(45deg);
}

.section-head h2::after {
  width: 96px;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}

.section::before,
.section.alt::before,
.section.dark::before {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), var(--brand-teal));
}

.section:nth-of-type(4n + 2)::before,
.section:nth-of-type(4n + 3)::before,
.section:nth-of-type(4n + 4)::before {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), var(--brand-teal));
}

.hero-note span,
.tag,
.card:nth-child(4n + 2) .tag,
.card:nth-child(4n + 3) .tag,
.card:nth-child(4n + 4) .tag {
  border-color: rgba(23, 105, 210, 0.18);
  background: var(--brand-soft);
  color: var(--brand-blue-dark);
}

.card::before,
.card:nth-child(4n + 2)::before,
.card:nth-child(4n + 3)::before,
.card:nth-child(4n + 4)::before {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}

.step-number,
.timeline-index,
.step:nth-child(4n + 2) .step-number,
.step:nth-child(4n + 3) .step-number,
.step:nth-child(4n + 4) .step-number {
  background: var(--brand-soft);
  color: var(--brand-blue);
}

.button.primary,
.button.cyan {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  box-shadow: 0 14px 32px rgba(23, 105, 210, 0.22);
}

.why-section .split {
  align-items: center;
}

.why-section h2 {
  max-width: 780px;
}

.why-section p {
  font-size: 1.04rem;
  line-height: 1.9;
}

.why-list {
  margin-top: 22px;
}

.why-video-panel {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(rgba(23, 105, 210, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 210, 0.045) 1px, transparent 1px),
    #f7fbff;
  background-size: 34px 34px;
}

.why-video-panel video,
.why-video-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-video-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(216, 229, 242, 0.9);
  border-radius: 24px;
}

.tech-lead-card {
  background:
    radial-gradient(circle at 90% 12%, rgba(32, 167, 216, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f3f9ff);
}

.stack-pills span {
  border-color: rgba(32, 167, 216, 0.22);
  color: var(--brand-blue-dark);
}

.code-build li b::before {
  background: var(--brand-teal);
}

.compare-vs {
  background: var(--brand-blue-dark);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-status {
  min-height: 1.5em;
  margin: 2px 0 0;
  color: #5f6368;
  font-size: 0.9rem;
}

.form-status.success {
  color: #13795b;
}

.form-status.error {
  color: #b42318;
}

.form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.card,
.image-panel {
  animation: subtlePanelFloat 8s ease-in-out infinite;
}

.card:nth-child(2n),
.image-panel:nth-child(2n) {
  animation-delay: 1.3s;
}

.form,
.case-demo-card,
.package {
  animation: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .card,
  .image-panel {
    animation: none;
  }
}

@media (max-width: 900px) {
  .why-video-panel {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    border-radius: 10px;
  }

  .why-video-panel {
    border-radius: 22px;
  }
}

/* Chrome Safety inspired color and scroll-motion pass */
:root {
  --brand-blue: #1a73e8;
  --brand-blue-dark: #185abc;
  --brand-cyan: #8ab4f8;
  --brand-teal: #34a853;
  --brand-soft: #e8f0fe;
  --brand-soft-2: #f8fbff;
  --brand-line: #dadce0;
  --brand-ink: #202124;
  --brand-muted: #5f6368;
  --brand-warning: #fbbc04;
  --brand-danger: #ea4335;
}

body {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(232, 240, 254, 0.98), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(138, 180, 248, 0.22), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
}

p,
.card p,
.section-head p {
  color: var(--brand-muted);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(218, 220, 224, 0.72);
  box-shadow: 0 12px 36px rgba(60, 64, 67, 0.08);
}

.brand {
  color: var(--brand-ink);
}

.brand-mark {
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  box-shadow: 0 12px 30px rgba(26, 115, 232, 0.22);
}

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

.hero {
  background:
    radial-gradient(circle at 76% 16%, rgba(138, 180, 248, 0.28), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(232, 240, 254, 0.92), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero h1,
h1,
h2,
h3 {
  color: var(--brand-ink);
}

.hero p {
  color: var(--brand-muted);
}

.hero-note span,
.tag,
.stack-pills span {
  border-color: rgba(26, 115, 232, 0.18);
  background: rgba(232, 240, 254, 0.86);
  color: #174ea6;
}

.hero-note span:nth-child(2),
.card:nth-child(4n + 2) .tag {
  border-color: rgba(52, 168, 83, 0.2);
  background: #e6f4ea;
  color: #137333;
}

.hero-note span:nth-child(3),
.card:nth-child(4n + 3) .tag {
  border-color: rgba(251, 188, 4, 0.28);
  background: #fef7e0;
  color: #8f4700;
}

.section,
.section.alt,
.section.dark {
  background:
    radial-gradient(circle at 92% 8%, rgba(232, 240, 254, 0.56), transparent 26%),
    #ffffff;
  border-top-color: #edf0f3;
}

.section.alt {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 240, 254, 0.92), transparent 28%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.section.dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(138, 180, 248, 0.24), transparent 32%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.section::before,
.section.alt::before,
.section.dark::before,
.section:nth-of-type(4n + 2)::before,
.section:nth-of-type(4n + 3)::before,
.section:nth-of-type(4n + 4)::before {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), var(--brand-cyan), transparent);
  opacity: 0.74;
}

.eyebrow {
  color: var(--brand-blue);
}

.eyebrow::before {
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 35%, transparent 36%),
    linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  transform: none;
}

.section-head h2::after {
  width: 74px;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}

.button.primary,
.button.cyan {
  background: var(--brand-blue);
  box-shadow: 0 16px 34px rgba(26, 115, 232, 0.24);
}

.button.primary:hover,
.button.cyan:hover {
  background: var(--brand-blue-dark);
}

.button.secondary {
  color: var(--brand-blue);
  border-color: rgba(26, 115, 232, 0.24);
}

.card,
.compare-column,
.image-panel,
.cta-band {
  border-color: rgba(218, 220, 224, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(60, 64, 67, 0.08);
}

.card::before,
.card:nth-child(4n + 2)::before,
.card:nth-child(4n + 3)::before,
.card:nth-child(4n + 4)::before {
  height: 4px;
  background: var(--brand-blue);
}

.card:nth-child(4n + 2)::before {
  background: var(--brand-teal);
}

.card:nth-child(4n + 3)::before {
  background: var(--brand-warning);
}

.card:nth-child(4n + 4)::before {
  background: var(--brand-cyan);
}

.card:hover,
.compare-column:hover,
.image-panel:hover {
  border-color: rgba(26, 115, 232, 0.26);
  box-shadow: 0 24px 62px rgba(60, 64, 67, 0.13);
}

.service-icon,
.industry-icon,
.icon,
.step-number,
.timeline-index,
.step:nth-child(4n + 2) .step-number,
.step:nth-child(4n + 3) .step-number,
.step:nth-child(4n + 4) .step-number {
  background: var(--brand-soft);
  color: var(--brand-blue);
}

.card:nth-child(4n + 2) .service-icon,
.card:nth-child(4n + 2) .industry-icon {
  background: #e6f4ea;
  color: var(--brand-teal);
}

.card:nth-child(4n + 3) .service-icon,
.card:nth-child(4n + 3) .industry-icon {
  background: #fef7e0;
  color: #b06000;
}

.check-list li::before,
.code-build li b::before {
  background: #e6f4ea;
  color: var(--brand-teal);
}

.platform-build li b::before {
  background: #dadce0;
}

.why-video-panel,
.hero-video-panel,
.case-video-frame {
  background:
    linear-gradient(rgba(26, 115, 232, 0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.046) 1px, transparent 1px),
    var(--brand-soft-2);
  background-size: 34px 34px;
}

.compare-vs {
  background: var(--brand-blue);
}

.form-status.success {
  color: #137333;
}

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

.reveal-item {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.section-head.reveal-item {
  transform: translateY(42px);
}

.card.reveal-item,
.timeline-item.reveal-item {
  transform: translateY(38px) scale(0.975);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    filter: none;
    transform: none;
    transition: none;
  }
}

/* Richer color pass: stronger section identity without branded four-color marks */
:root {
  --vivid-blue: #1a73e8;
  --vivid-blue-deep: #174ea6;
  --vivid-cyan: #00acc1;
  --vivid-cyan-soft: #dff7fb;
  --vivid-green: #34a853;
  --vivid-green-soft: #e2f5e8;
  --vivid-amber: #fbbc04;
  --vivid-amber-soft: #fff3cf;
  --vivid-coral: #ff6d5a;
  --vivid-coral-soft: #ffe7e3;
  --vivid-indigo: #5b6ee1;
  --vivid-indigo-soft: #eef0ff;
}

body {
  background:
    radial-gradient(circle at 8% 5%, rgba(26, 115, 232, 0.18), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(0, 172, 193, 0.18), transparent 23%),
    radial-gradient(circle at 14% 52%, rgba(52, 168, 83, 0.1), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(255, 109, 90, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 44%, #ffffff 100%);
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 172, 193, 0.2), transparent 26%),
    radial-gradient(circle at 16% 78%, rgba(26, 115, 232, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 56%, #fff9e8 100%);
}

.hero h1 {
  color: #111827;
  text-shadow: 0 18px 44px rgba(26, 115, 232, 0.08);
}

.hero-video-panel,
.why-video-panel {
  border: 1px solid rgba(26, 115, 232, 0.2);
  background:
    linear-gradient(rgba(26, 115, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 172, 193, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff, #fff9e8);
  box-shadow:
    0 30px 80px rgba(26, 115, 232, 0.16),
    0 0 0 10px rgba(232, 240, 254, 0.52);
}

.section:nth-of-type(2),
.section:nth-of-type(7),
.section:nth-of-type(11) {
  background:
    radial-gradient(circle at 14% 16%, rgba(0, 172, 193, 0.2), transparent 26%),
    linear-gradient(180deg, #f2fbff, #ffffff);
}

.section:nth-of-type(3),
.section:nth-of-type(8),
.section:nth-of-type(12) {
  background:
    radial-gradient(circle at 84% 14%, rgba(52, 168, 83, 0.18), transparent 25%),
    linear-gradient(180deg, #f4fff7, #ffffff);
}

.section:nth-of-type(4),
.section:nth-of-type(9) {
  background:
    radial-gradient(circle at 16% 12%, rgba(251, 188, 4, 0.22), transparent 24%),
    linear-gradient(180deg, #fffaf0, #ffffff);
}

.section:nth-of-type(5),
.section:nth-of-type(10) {
  background:
    radial-gradient(circle at 86% 16%, rgba(91, 110, 225, 0.18), transparent 26%),
    linear-gradient(180deg, #f7f8ff, #ffffff);
}

.section:nth-of-type(6) {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 109, 90, 0.16), transparent 26%),
    linear-gradient(180deg, #fff7f5, #ffffff);
}

.section::before,
.section.alt::before,
.section.dark::before,
.section:nth-of-type(4n + 2)::before,
.section:nth-of-type(4n + 3)::before,
.section:nth-of-type(4n + 4)::before {
  height: 5px;
  background: linear-gradient(90deg, var(--vivid-blue), var(--vivid-cyan));
  opacity: 1;
}

.section:nth-of-type(3)::before,
.section:nth-of-type(8)::before {
  background: linear-gradient(90deg, var(--vivid-green), var(--vivid-cyan));
}

.section:nth-of-type(4)::before,
.section:nth-of-type(9)::before {
  background: linear-gradient(90deg, var(--vivid-amber), var(--vivid-coral));
}

.section:nth-of-type(5)::before,
.section:nth-of-type(10)::before {
  background: linear-gradient(90deg, var(--vivid-indigo), var(--vivid-blue));
}

.section-head h2::after {
  height: 7px;
  width: 108px;
  background: linear-gradient(90deg, var(--vivid-blue), var(--vivid-cyan), var(--vivid-green));
}

.eyebrow {
  color: var(--vivid-blue-deep);
}

.eyebrow::before {
  background:
    radial-gradient(circle, #ffffff 0 32%, transparent 33%),
    linear-gradient(135deg, var(--vivid-blue), var(--vivid-cyan));
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.22);
}

.card,
.compare-column,
.cta-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9)),
    var(--card-tint, #ffffff);
}

.card:nth-child(4n + 1) {
  --card-tint: var(--vivid-indigo-soft);
}

.card:nth-child(4n + 2) {
  --card-tint: var(--vivid-green-soft);
}

.card:nth-child(4n + 3) {
  --card-tint: var(--vivid-amber-soft);
}

.card:nth-child(4n + 4) {
  --card-tint: var(--vivid-cyan-soft);
}

.card::before {
  background: var(--vivid-indigo);
}

.card:nth-child(4n + 2)::before {
  background: var(--vivid-green);
}

.card:nth-child(4n + 3)::before {
  background: var(--vivid-amber);
}

.card:nth-child(4n + 4)::before {
  background: var(--vivid-cyan);
}

.service-icon,
.industry-icon,
.icon {
  background: var(--vivid-indigo-soft);
  color: var(--vivid-indigo);
}

.card:nth-child(4n + 2) .service-icon,
.card:nth-child(4n + 2) .industry-icon {
  background: var(--vivid-green-soft);
  color: var(--vivid-green);
}

.card:nth-child(4n + 3) .service-icon,
.card:nth-child(4n + 3) .industry-icon {
  background: var(--vivid-amber-soft);
  color: #b06000;
}

.card:nth-child(4n + 4) .service-icon,
.card:nth-child(4n + 4) .industry-icon {
  background: var(--vivid-cyan-soft);
  color: #007c8d;
}

.hero-note span,
.tag,
.stack-pills span {
  box-shadow: 0 10px 26px rgba(26, 115, 232, 0.1);
}

.stack-pills span:nth-child(3n + 1),
.tag {
  background: var(--vivid-indigo-soft);
  color: #3342a0;
}

.stack-pills span:nth-child(3n + 2) {
  background: var(--vivid-cyan-soft);
  color: #007c8d;
}

.stack-pills span:nth-child(3n + 3) {
  background: var(--vivid-green-soft);
  color: #137333;
}

.button.primary,
.button.cyan {
  background: linear-gradient(135deg, var(--vivid-blue), var(--vivid-cyan));
  box-shadow:
    0 18px 42px rgba(26, 115, 232, 0.26),
    0 0 0 6px rgba(232, 240, 254, 0.8);
}

.button.secondary {
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(26, 115, 232, 0.08);
}

.button.primary:hover,
.button.cyan:hover {
  background: linear-gradient(135deg, var(--vivid-blue-deep), var(--vivid-blue));
}

.tech-lead-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 172, 193, 0.2), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef6ff 50%, #fff7df);
}

.code-build .compare-head {
  background: linear-gradient(135deg, #e8f0fe, #dff7fb);
}

.platform-build .compare-head {
  background: linear-gradient(135deg, #f8fafd, #fff3cf);
}

.package.featured,
.case-demo-card.featured-case {
  box-shadow:
    0 24px 64px rgba(26, 115, 232, 0.18),
    inset 0 5px 0 var(--vivid-blue);
}

.faq-item.open {
  background:
    linear-gradient(90deg, rgba(232, 240, 254, 0.72), transparent);
}

.form {
  background:
    radial-gradient(circle at 86% 10%, rgba(0, 172, 193, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  border-color: rgba(26, 115, 232, 0.2);
  box-shadow: 0 24px 64px rgba(26, 115, 232, 0.14);
}

/* Detail polish: stronger cards, cleaner headings, no section underline */
.section-head h2::after {
  display: none !important;
}

.hero h1 + p,
.subhero h1 + p,
.section-head h2 + p,
.card h2 + p,
.card h3 + p,
#contact h2 + p,
.why-section h2 + p {
  margin-top: clamp(30px, 3.4vw, 52px);
}

.section-head {
  margin-bottom: clamp(54px, 6vw, 82px);
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  margin-bottom: clamp(22px, 2.6vw, 34px);
  padding: 9px 14px;
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 999px;
  background: rgba(232, 240, 254, 0.86);
  color: #174ea6;
  box-shadow: 0 12px 28px rgba(26, 115, 232, 0.12);
}

.eyebrow::before {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.1);
}

.card,
.compare-column,
.image-panel,
.case-demo-card,
.form,
.package {
  border: 1px solid rgba(26, 115, 232, 0.16);
  box-shadow:
    0 18px 42px rgba(23, 105, 210, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform-style: preserve-3d;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    background 260ms ease;
}

.card:hover,
.compare-column:hover,
.image-panel:hover,
.case-demo-card:hover,
.package:hover {
  transform: translateY(-12px) scale(1.018);
  border-color: rgba(26, 115, 232, 0.34);
  box-shadow:
    0 34px 90px rgba(23, 105, 210, 0.2),
    0 14px 34px rgba(0, 172, 193, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  z-index: 3;
}

.card.reveal-item:hover,
.card.reveal-item.is-visible:hover,
.service-card:hover,
.industry-card:hover,
.compare-column:hover,
.image-panel:hover,
.case-demo-card:hover,
.package:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.02) !important;
  border-color: rgba(26, 115, 232, 0.38) !important;
  box-shadow:
    0 38px 96px rgba(23, 105, 210, 0.22),
    0 16px 38px rgba(0, 172, 193, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.98) inset !important;
}

.card::after,
.compare-column::after,
.case-demo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.38), transparent 42%),
    radial-gradient(circle at 92% 12%, rgba(26, 115, 232, 0.12), transparent 24%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.card:hover::after,
.compare-column:hover::after,
.case-demo-card:hover::after {
  opacity: 1;
}

.case-demo-card {
  position: relative;
}

.check-list {
  gap: 15px;
}

.check-list li {
  align-items: center;
  gap: 14px;
  color: #4b5563;
}

.check-list li::before {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  background:
    radial-gradient(circle, #ffffff 0 34%, transparent 35%),
    linear-gradient(135deg, var(--vivid-blue), var(--vivid-green));
  box-shadow:
    0 10px 22px rgba(52, 168, 83, 0.24),
    0 0 0 5px rgba(52, 168, 83, 0.1);
}

.faq-item.open {
  background:
    linear-gradient(90deg, rgba(232, 240, 254, 0.72), rgba(223, 247, 251, 0.32), transparent);
}

.faq-button span:last-child {
  color: var(--vivid-blue);
  font-size: 1.35rem;
}

.faq-item:not(.open) .faq-panel {
  max-height: 0 !important;
}

@media (max-width: 640px) {
  .hero h1 + p,
  .section-head h2 + p,
  #contact h2 + p {
    margin-top: 24px;
  }

  .card:hover,
  .compare-column:hover,
  .image-panel:hover,
  .case-demo-card:hover,
  .package:hover {
    transform: translateY(-6px);
  }
}

/* Final interaction polish */
.card,
.compare-column,
.image-panel,
.case-demo-card,
.form,
.package {
  position: relative;
  border-color: rgba(26, 115, 232, 0.18);
  box-shadow:
    0 22px 56px rgba(23, 105, 210, 0.11),
    0 10px 28px rgba(0, 172, 193, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  transition:
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 680ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 520ms ease,
    background 520ms ease;
}

.card:hover,
.card.reveal-item:hover,
.card.reveal-item.is-visible:hover,
.service-card:hover,
.industry-card:hover,
.compare-column:hover,
.image-panel:hover,
.case-demo-card:hover,
.package:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.012) !important;
  border-color: rgba(26, 115, 232, 0.42) !important;
  box-shadow:
    0 34px 86px rgba(23, 105, 210, 0.18),
    0 18px 42px rgba(0, 172, 193, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.98) inset !important;
}

.card::after,
.compare-column::after,
.case-demo-card::after {
  transition: opacity 640ms ease;
}

.check-list {
  gap: 16px;
}

.check-list li {
  align-items: center;
  gap: 13px;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, #ffffff 0 42%, transparent 43%),
    linear-gradient(135deg, var(--vivid-blue), var(--vivid-cyan));
  box-shadow:
    0 8px 18px rgba(26, 115, 232, 0.18),
    0 0 0 5px rgba(26, 115, 232, 0.08);
}

.timeline::before {
  background: linear-gradient(180deg, transparent, rgba(26, 115, 232, 0.2), rgba(0, 172, 193, 0.38), transparent);
}

.timeline::after {
  display: block !important;
  width: 14px;
  height: 14px;
  left: 17px;
  background: linear-gradient(135deg, var(--vivid-blue), var(--vivid-cyan));
  box-shadow:
    0 0 0 8px rgba(26, 115, 232, 0.1),
    0 14px 28px rgba(26, 115, 232, 0.28);
  animation: timelineDrop 7.2s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
}

.timeline-index {
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0 32%, transparent 33%),
    linear-gradient(135deg, #e8f0fe, #dff7fb);
  border-color: rgba(26, 115, 232, 0.2);
  box-shadow:
    0 14px 30px rgba(26, 115, 232, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

@keyframes timelineDrop {
  0% {
    top: 8px;
    opacity: 0;
    transform: translateY(-8px) scale(0.82);
  }
  12% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  82% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 24px);
    opacity: 0;
    transform: translateY(10px) scale(0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline::after {
    animation: none !important;
  }
}

/* High-tech visual upgrade */
:root {
  --tech-grid: rgba(26, 115, 232, 0.055);
  --tech-line: rgba(26, 115, 232, 0.18);
  --tech-glow: rgba(0, 172, 193, 0.22);
}

.section {
  background-image:
    radial-gradient(circle at 8% 12%, rgba(0, 172, 193, 0.08), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(91, 110, 225, 0.08), transparent 30%);
}

.section.alt {
  background:
    linear-gradient(rgba(26, 115, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(0, 172, 193, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fcff, #ffffff);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.card,
.compare-column,
.image-panel,
.case-demo-card,
.form,
.package {
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94)) padding-box,
    linear-gradient(135deg, rgba(26, 115, 232, 0.26), rgba(0, 172, 193, 0.18), rgba(91, 110, 225, 0.2)) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
}

.card::before,
.compare-column::before,
.image-panel::before,
.case-demo-card::before {
  opacity: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--vivid-blue), var(--vivid-cyan), var(--vivid-indigo));
  box-shadow: 0 0 22px rgba(0, 172, 193, 0.22);
}

.card h3,
.card h2,
.price-title,
.timeline-item h3 {
  letter-spacing: 0;
}

.tech-section {
  background:
    linear-gradient(rgba(26, 115, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(0, 172, 193, 0.14), transparent 32%),
    radial-gradient(circle at 88% 36%, rgba(91, 110, 225, 0.13), transparent 30%),
    linear-gradient(180deg, #f7fbff, #ffffff);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
}

.pagespeed-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3.2vw, 42px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 3.5vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 200, 83, 0.13), transparent 28%) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.95)) padding-box,
    linear-gradient(135deg, rgba(26, 115, 232, 0.28), rgba(0, 200, 83, 0.24), rgba(0, 172, 193, 0.24)) border-box;
}

.pagespeed-proof::before {
  height: 5px;
  background: linear-gradient(90deg, #00c853, var(--vivid-cyan), var(--vivid-blue));
}

.pagespeed-copy h3 {
  max-width: 680px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.22;
}

.pagespeed-copy p {
  max-width: 720px;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.score-row span {
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 12px 10px;
  border: 1px solid rgba(0, 200, 83, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 200, 83, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.78);
  color: #3f4854;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(0, 200, 83, 0.08);
}

.score-row b {
  color: #00a85a;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

.pagespeed-shot {
  margin: 0;
  border: 1px solid rgba(26, 115, 232, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 24px 64px rgba(23, 105, 210, 0.14),
    0 0 0 8px rgba(232, 240, 254, 0.72);
}

.pagespeed-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.35;
  object-fit: cover;
  object-position: center top;
}

.audit-visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, rgba(232, 240, 254, 0.78), rgba(223, 247, 251, 0.72));
}

.audit-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.check-list li::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 5px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 18%, transparent 20%),
    linear-gradient(135deg, var(--vivid-blue), var(--vivid-cyan));
  box-shadow:
    0 10px 22px rgba(26, 115, 232, 0.2),
    0 0 0 4px rgba(0, 172, 193, 0.08);
}

.timeline {
  --timeline-axis: 38px;
}

.timeline-item {
  grid-template-columns: 64px 1fr;
  gap: 22px;
}

.timeline::before {
  left: var(--timeline-axis) !important;
  width: 3px;
  transform: translateX(-50%);
}

.timeline::after {
  left: var(--timeline-axis) !important;
  transform: translateX(-50%);
}

.timeline-index {
  width: 58px;
  height: 58px;
  justify-self: center;
}

@keyframes timelineDrop {
  0% {
    top: 8px;
    opacity: 0;
    transform: translate(-50%, -8px) scale(0.82);
  }
  12% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  82% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 24px);
    opacity: 0;
    transform: translate(-50%, 10px) scale(0.86);
  }
}

@media (max-width: 980px) {
  .pagespeed-proof {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .audit-visual img {
    min-height: 320px;
  }

  .timeline {
    --timeline-axis: 35px;
  }

  .timeline-item {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .timeline-index {
    width: 52px;
    height: 52px;
  }
}

/* Final pass requested from screenshot annotations */
.hero-video-panel::before,
.hero-video-panel::after {
  content: none !important;
  display: none !important;
}

.tech-section {
  padding-top: clamp(58px, 6vw, 86px);
}

.tech-section .section-head {
  transform: translateY(-22px);
  margin-bottom: clamp(36px, 4.6vw, 58px);
}

.pagespeed-proof {
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3vw, 34px);
}

.pagespeed-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  order: 2;
}

.pagespeed-shot {
  align-self: center;
  width: min(980px, 100%);
  margin: 0 auto;
  order: 1;
}

.pagespeed-shot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.pagespeed-copy h3,
.pagespeed-copy p {
  margin-left: auto;
  margin-right: auto;
}

.score-row {
  width: min(720px, 100%);
}

.check-list li {
  gap: 14px;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  clip-path: none;
  border-radius: 9px;
  background:
    linear-gradient(135deg, #ffffff 0 0) padding-box,
    linear-gradient(135deg, var(--vivid-blue), var(--vivid-cyan)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 12px 24px rgba(26, 115, 232, 0.18),
    0 0 0 5px rgba(232, 240, 254, 0.82);
}

.check-list li::after {
  content: "";
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--vivid-blue);
  border-bottom: 2px solid var(--vivid-cyan);
  transform: translate(-28px, -1px) rotate(42deg);
  flex: 0 0 0;
  pointer-events: none;
}

.conversion-system {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(28px, calc((100vw - var(--container)) / 2));
  padding-right: max(28px, calc((100vw - var(--container)) / 2));
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(26, 115, 232, 0.1), transparent 26%),
    radial-gradient(circle at 84% 76%, rgba(0, 172, 193, 0.12), transparent 28%),
    linear-gradient(rgba(26, 115, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff, #ffffff);
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
}

.conversion-system svg {
  inset: 18px max(44px, calc((100vw - var(--container)) / 2)) 0;
  width: min(var(--container), calc(100vw - 88px));
}

.conversion-track {
  stroke-width: 4;
  stroke: rgba(26, 115, 232, 0.2);
}

.conversion-dot {
  animation: inquiryJourney 7s ease-in-out infinite !important;
}

.conversion-inbox {
  animation: inboxConfirm 7s ease-in-out infinite !important;
}

.flow::before {
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.22), rgba(0, 172, 193, 0.28), transparent);
}

.flow .card.step {
  min-height: 255px;
  padding: 34px 34px 32px;
  background:
    radial-gradient(circle at 88% 14%, rgba(26, 115, 232, 0.1), transparent 30%) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)) padding-box,
    linear-gradient(135deg, rgba(26, 115, 232, 0.32), rgba(0, 172, 193, 0.18)) border-box;
}

.flow .card.step h3 {
  margin-top: 28px;
  font-size: clamp(1.18rem, 1.4vw, 1.5rem);
}

.flow .card.step p {
  margin-top: 28px;
  line-height: 1.85;
}

.step-number {
  width: 58px;
  height: 58px;
  background:
    radial-gradient(circle at 50% 45%, #ffffff 0 28%, transparent 30%),
    linear-gradient(135deg, #e8f0fe, #dff7fb);
  box-shadow:
    0 16px 34px rgba(26, 115, 232, 0.12),
    0 0 0 8px rgba(232, 240, 254, 0.65);
}

.reveal-item {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 54px, 0) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-head.reveal-item,
.hero-inner > .reveal-item {
  transform: translate3d(0, 64px, 0) scale(0.985);
}

.card.reveal-item:nth-of-type(2n),
.timeline-item.reveal-item:nth-of-type(2n) {
  transform: translate3d(34px, 52px, 0) scale(0.985);
}

.card.reveal-item:nth-of-type(2n + 1),
.timeline-item.reveal-item:nth-of-type(2n + 1) {
  transform: translate3d(-34px, 52px, 0) scale(0.985);
}

.reveal-item.is-visible,
.section-head.reveal-item.is-visible,
.hero-inner > .reveal-item.is-visible,
.card.reveal-item.is-visible,
.timeline-item.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
  .pagespeed-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tech-section .section-head {
    transform: none;
  }

  .flow .card.step {
    min-height: auto;
  }

  .card.reveal-item:nth-of-type(n),
  .timeline-item.reveal-item:nth-of-type(n) {
    transform: translate3d(0, 42px, 0) scale(0.985);
  }

  .card.reveal-item.is-visible,
  .timeline-item.reveal-item.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Screenshot-driven refinements: compact markers and premium service cards */
.check-list li {
  position: relative;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.75;
}

.check-list li::before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  flex: 0 0 10px !important;
  margin-top: 0.62em;
  border: 0 !important;
  border-radius: 999px !important;
  background: #1a73e8 !important;
  box-shadow:
    0 0 0 6px rgba(26, 115, 232, 0.09),
    0 8px 18px rgba(26, 115, 232, 0.2) !important;
}

.check-list li::after {
  display: none !important;
}

.problem-grid,
.premium-service-grid {
  align-items: stretch;
}

.problem-card,
.premium-service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  background:
    radial-gradient(circle at 84% 20%, rgba(26, 115, 232, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  border-color: rgba(26, 115, 232, 0.18);
}

.problem-card::before,
.premium-service-card::before {
  display: block;
  opacity: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.86), rgba(0, 172, 193, 0.42), transparent);
}

.problem-card:nth-child(4n + 2)::before,
.premium-service-card:nth-child(4n + 2)::before {
  background: linear-gradient(90deg, rgba(234, 67, 53, 0.75), rgba(251, 188, 4, 0.36), transparent);
}

.problem-card:nth-child(4n + 3)::before,
.premium-service-card:nth-child(4n + 3)::before {
  background: linear-gradient(90deg, rgba(251, 188, 4, 0.9), rgba(26, 115, 232, 0.34), transparent);
}

.problem-card:nth-child(4n + 4)::before,
.premium-service-card:nth-child(4n + 4)::before {
  background: linear-gradient(90deg, rgba(52, 168, 83, 0.86), rgba(0, 172, 193, 0.34), transparent);
}

.card-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 6px 11px;
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 999px;
  background: rgba(232, 240, 254, 0.82);
  color: #174ea6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.problem-card:nth-child(4n + 2) .card-kicker,
.premium-service-card:nth-child(4n + 2) .card-kicker {
  border-color: rgba(234, 67, 53, 0.15);
  background: rgba(252, 232, 230, 0.82);
  color: #b3261e;
}

.problem-card:nth-child(4n + 3) .card-kicker,
.premium-service-card:nth-child(4n + 3) .card-kicker {
  border-color: rgba(251, 188, 4, 0.2);
  background: rgba(254, 247, 224, 0.88);
  color: #8f4700;
}

.problem-card:nth-child(4n + 4) .card-kicker,
.premium-service-card:nth-child(4n + 4) .card-kicker {
  border-color: rgba(52, 168, 83, 0.18);
  background: rgba(230, 244, 234, 0.86);
  color: #137333;
}

.problem-card h3,
.premium-service-card h3 {
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
}

.problem-card p,
.premium-service-card p {
  flex: 1;
  margin-top: 18px !important;
  line-height: 1.8;
}

.card-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 115, 232, 0.12);
  color: #174ea6;
  font-weight: 700;
  font-size: 0.9rem;
}

.card-action i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #ffffff 0 0) padding-box,
    linear-gradient(135deg, #1a73e8, #00acc1) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 0 0 9px rgba(26, 115, 232, 0.08),
    0 12px 24px rgba(26, 115, 232, 0.18);
}

.card-action i::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(0, 172, 193, 0.2), transparent 68%);
}

.card-action i::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #1a73e8;
  border-bottom: 2px solid #00acc1;
  transform: rotate(42deg);
}

.premium-service-grid {
  padding: 8px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(26, 115, 232, 0.12), transparent 22%),
    radial-gradient(circle at 90% 100%, rgba(52, 168, 83, 0.1), transparent 24%);
}

.conversion-track {
  stroke: rgba(26, 115, 232, 0.3);
  stroke-width: 3.5;
}

.conversion-dot {
  offset-path: path("M0 92 C110 116 210 160 281 154 C360 146 390 78 462 78 C540 78 590 132 670 150 C760 170 820 72 920 72") !important;
  animation: inquiryJourney 7s ease-in-out infinite !important;
}

@media (max-width: 980px) {
  .premium-service-grid {
    padding: 0;
    background: transparent;
  }
}

/* Buyer-system, industry, pricing, and PageSpeed motion refinements */
.system-section {
  background:
    linear-gradient(rgba(26, 115, 232, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 18% 8%, rgba(0, 172, 193, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fcff);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.system-flow .step {
  display: flex;
  flex-direction: column;
}

.step-kicker,
.industry-label {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(26, 115, 232, 0.14);
  border-radius: 999px;
  background: rgba(232, 240, 254, 0.78);
  color: #174ea6;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.system-flow .step h3 {
  margin-top: 20px;
}

.system-flow .step p {
  flex: 1;
}

.conversion-system {
  min-height: 290px;
}

.conversion-system svg {
  inset: auto !important;
  top: 18px !important;
  left: 50% !important;
  right: auto !important;
  width: min(1180px, calc(100vw - 56px)) !important;
  height: 210px;
  max-width: none;
  transform: translateX(-50%);
}

.conversion-track {
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 14px rgba(26, 115, 232, 0.11));
}

.conversion-dot {
  fill: #2bb3f3;
  stroke: #ffffff;
  stroke-width: 3px;
  filter:
    drop-shadow(0 0 8px rgba(43, 179, 243, 0.82))
    drop-shadow(0 12px 18px rgba(26, 115, 232, 0.22));
}

.conversion-step,
.conversion-inbox {
  width: 172px;
  padding: 14px 16px;
  border-radius: 16px;
}

.step-search { left: 26px; top: 48px; }
.step-product { left: 25%; bottom: 34px; }
.step-trust { left: 50%; top: 30px; transform: translateX(-50%); }
.step-form { right: 22%; bottom: 40px; }
.conversion-inbox { right: 26px; top: 44px; }

.pagespeed-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ffffff;
}

.pagespeed-video video img {
  display: block;
  width: 100%;
}

.industry-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(52, 168, 83, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fcff);
}

.industry-grid {
  align-items: stretch;
}

.premium-industry {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.94)) padding-box,
    linear-gradient(135deg, rgba(26, 115, 232, 0.24), rgba(0, 172, 193, 0.18), rgba(52, 168, 83, 0.16)) border-box;
}

.premium-industry .industry-icon {
  margin-bottom: 18px;
}

.premium-industry h3 {
  margin-top: 18px;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
}

.premium-industry p {
  flex: 1;
  margin-top: 16px !important;
  color: #42526a;
  font-size: 0.96rem;
  line-height: 1.86;
}

.industry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 115, 232, 0.12);
}

.industry-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 115, 232, 0.12);
  color: #31506f;
  font-size: 0.76rem;
  font-weight: 700;
}

.package-grid {
  align-items: stretch;
}

.package {
  display: flex;
  flex-direction: column;
}

.package > p {
  min-height: 58px;
}

.package .check-list {
  flex: 1;
}

.package-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 115, 232, 0.14);
}

.package-footer span {
  color: #5f6368;
  font-weight: 700;
  font-size: 0.86rem;
}

.package-footer strong {
  color: #174ea6;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.package.featured .package-footer strong {
  color: #00acc1;
}

@media (max-width: 980px) {
  .conversion-system {
    min-height: 450px;
  }

  .step-search { top: 26px; }
  .step-product { top: 112px; bottom: auto; }
  .step-trust { top: 198px; }
  .step-form { top: 284px; bottom: auto; }
  .conversion-inbox { top: 370px; }
}

@media (max-width: 640px) {
  .premium-industry,
  .flow .card.step {
    padding: 24px;
  }

  .package-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Current polish and performance pass */
.logo-brand {
  min-width: 0;
  color: inherit;
}

.logo-brand img {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(250px, 42vw);
  object-fit: contain;
}

.footer-logo img {
  height: 62px;
  max-width: min(300px, 70vw);
}

.process-section .split > div > p {
  margin-top: clamp(34px, 4vw, 58px) !important;
  max-width: 560px;
}

.conversion-system svg {
  z-index: 1;
}

.conversion-step,
.conversion-inbox {
  z-index: 3;
}

.conversion-track {
  stroke: rgba(26, 115, 232, 0.34) !important;
  stroke-width: 4 !important;
}

.conversion-dot {
  offset-path: path("M0 92 C110 116 210 160 281 154 C360 146 390 78 462 78 C540 78 590 132 670 150 C760 170 820 72 920 72") !important;
}

.card,
.compare-column,
.image-panel,
.case-demo-card,
.form,
.package {
  backdrop-filter: none !important;
}

.reveal-item {
  filter: none !important;
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (max-width: 640px) {
  .logo-brand img {
    height: 40px;
    max-width: 190px;
  }
}

/* Chinese typography and screenshot-driven layout pass */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 88px;
}

:root,
body,
button,
input,
textarea,
select {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

body {
  color: #202124;
  font-weight: 400;
  line-height: 1.75;
}

p,
li,
.compare-column span,
.footer a,
.footer address,
.footer span {
  color: #4b5563;
  font-weight: 400;
}

p,
.section-head p,
.hero p,
.subhero p,
.article p,
.article li,
.faq-panel p {
  font-size: clamp(1.125rem, 1.25vw, 1.25rem);
  line-height: 1.82;
}

h1,
h2,
h3,
h4,
.section-head h2,
.hero h1,
.subhero h1,
.compare-head strong,
.price-title,
.faq-button {
  font-weight: 700;
}

.brand,
.button,
.eyebrow,
.tag,
.card-kicker,
.step-kicker,
.industry-label,
.card-action,
.compare-head span,
.check-list li::before,
.package-footer span {
  font-weight: 600;
}

.site-header {
  min-height: 80px;
}

.nav {
  min-height: 80px;
}

.logo-brand img {
  height: 44px;
  max-width: min(236px, 38vw);
}

.hero-inner {
  min-height: calc(100vh - 80px);
  padding-top: clamp(104px, 10vw, 132px);
  padding-bottom: clamp(72px, 8vw, 104px);
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(2.55rem, 4.7vw, 4.05rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 720px;
  margin-top: 30px !important;
  color: #4b5563;
}

.section-head h2,
.subhero h1 {
  line-height: 1.16;
  letter-spacing: -0.018em;
}

.card h3,
.flow .card.step h3,
.premium-service-card h3,
.problem-card h3,
.premium-industry h3 {
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.card p,
.premium-service-card p,
.problem-card p,
.premium-industry p,
.flow .card.step p,
.tech-benefit p {
  color: #4b5563;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.86;
}

.button:hover,
.card:hover,
.card.reveal-item:nth-of-type(n),
.timeline-item.reveal-item:nth-of-type(n),
.section-head.reveal-item,
.hero-inner > .reveal-item,
.reveal-item,
.reveal-item.is-visible {
  filter: none !important;
}

.reveal-item,
.section-head.reveal-item,
.hero-inner > .reveal-item,
.card.reveal-item:nth-of-type(n),
.timeline-item.reveal-item:nth-of-type(n),
.reveal-item.is-visible,
.card.reveal-item.is-visible,
.timeline-item.reveal-item.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease !important;
}

.button:hover,
.card:hover {
  transform: none;
}

.build-compare {
  gap: 22px;
  margin-top: 40px;
}

.compare-column {
  border-radius: 22px;
  border-color: rgba(148, 184, 232, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  box-shadow: 0 18px 52px rgba(15, 47, 95, 0.1);
}

.code-build {
  border-top: 5px solid #1a73e8;
}

.platform-build {
  border-top: 5px solid #34a853;
}

.compare-head {
  min-height: 150px;
  padding: 26px 28px;
}

.compare-head strong {
  font-size: clamp(1.2rem, 1.55vw, 1.42rem);
  line-height: 1.45;
}

.compare-column li {
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.55);
}

.compare-column li:nth-child(even) {
  background: rgba(248, 250, 253, 0.82);
}

.compare-column b {
  color: #202124;
  font-weight: 700;
}

.compare-column span {
  font-size: 1.03rem;
  line-height: 1.82;
}

.compare-vs {
  width: 62px;
  height: 62px;
  background: #1a73e8;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(26, 115, 232, 0.24);
}

.conversion-system {
  min-height: 330px;
  margin-top: 40px;
  margin-bottom: 48px;
  border-top: 1px solid rgba(148, 184, 232, 0.48);
  border-bottom: 1px solid rgba(148, 184, 232, 0.48);
  background:
    linear-gradient(rgba(26, 115, 232, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.036) 1px, transparent 1px),
    radial-gradient(circle at 82% 48%, rgba(0, 172, 193, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbff, #ffffff);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.conversion-system::before {
  inset: 28px max(32px, calc((100vw - var(--container)) / 2));
  border-radius: 26px;
  border: 1px solid rgba(26, 115, 232, 0.08);
  background: rgba(255, 255, 255, 0.38);
}

.conversion-system svg {
  top: 42px !important;
  height: 220px;
}

.conversion-track {
  stroke: rgba(26, 115, 232, 0.26) !important;
  stroke-width: 5 !important;
}

.conversion-step,
.conversion-inbox {
  width: 192px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(26, 115, 232, 0.22);
  box-shadow: 0 18px 40px rgba(15, 47, 95, 0.11);
}

.conversion-step b,
.conversion-inbox strong {
  font-size: 1rem;
  font-weight: 700;
}

.conversion-step span,
.conversion-inbox span {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.step-search { left: max(28px, calc((100vw - var(--container)) / 2)); top: 74px; }
.step-product { left: calc(25vw - 30px); bottom: 58px; }
.step-trust { top: 50px; }
.step-form { right: calc(22vw - 22px); bottom: 62px; }
.conversion-inbox { right: max(28px, calc((100vw - var(--container)) / 2)); top: 72px; }

.system-flow {
  gap: 26px;
}

.flow .card.step {
  min-height: 300px;
  padding: 34px 32px;
  border-radius: 24px;
  border-color: rgba(148, 184, 232, 0.58);
  background:
    radial-gradient(circle at 82% 16%, rgba(26, 115, 232, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: 0 16px 44px rgba(15, 47, 95, 0.08);
}

.step-number {
  width: 64px;
  height: 64px;
  color: #1a73e8;
  font-size: 1.3rem;
  font-weight: 700;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 30%, transparent 31%),
    linear-gradient(135deg, #e8f0fe, #e6f7fb);
  box-shadow:
    0 0 0 10px rgba(232, 240, 254, 0.75),
    0 20px 38px rgba(26, 115, 232, 0.13);
}

.step-kicker {
  margin-top: 26px;
  background: #e8f0fe;
  color: #174ea6;
  font-size: 0.78rem;
}

.system-flow .step h3 {
  margin-top: 22px;
  font-size: clamp(1.25rem, 1.45vw, 1.48rem);
}

.system-flow .step p {
  margin-top: 20px !important;
}

.footer {
  padding: 64px 0 30px;
  background:
    radial-gradient(circle at 84% 12%, rgba(26, 115, 232, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fafd);
}

.footer-grid {
  grid-template-columns: minmax(340px, 1.45fr) minmax(170px, 0.72fr) minmax(160px, 0.72fr) minmax(260px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.footer-about p {
  max-width: 620px;
  margin-top: 22px;
  color: #4b5563;
  font-size: clamp(1.02rem, 1.05vw, 1.12rem);
  line-height: 1.9;
}

.footer-logo {
  width: fit-content;
  padding: 0;
  background: transparent;
}

.footer-logo img {
  height: 56px;
  max-width: min(286px, 72vw);
}

.footer strong {
  display: block;
  margin-bottom: 16px;
  color: #202124;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer a {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  scroll-margin-top: 110px;
}

.footer-contact > span {
  color: #174ea6;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-contact-card {
  display: grid;
  width: min(100%, 330px);
  justify-items: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(26, 115, 232, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 12%, rgba(26, 115, 232, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.94));
  box-shadow: 0 18px 44px rgba(15, 47, 95, 0.08);
}

.footer-contact-card > span {
  color: #174ea6;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-qr {
  width: 150px;
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 47, 95, 0.1);
}

.footer-qr img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.footer address {
  max-width: 100%;
  margin: 0;
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.72;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  color: #4b5563;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .site-header,
  .nav {
    min-height: 76px;
  }

  .nav-links {
    top: 76px;
  }

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

  .hero h1 {
    font-size: clamp(2.25rem, 8vw, 3.6rem);
  }

  .build-compare {
    grid-template-columns: 1fr;
  }

  .compare-head {
    min-height: auto;
  }

  .conversion-system {
    min-height: 480px;
  }

  .conversion-system::before {
    inset: 20px;
  }

  .conversion-step,
  .conversion-inbox {
    left: 24px;
    right: 24px;
    width: auto;
    transform: none;
  }

  .step-search { top: 34px; }
  .step-product { top: 130px; bottom: auto; }
  .step-trust { top: 226px; }
  .step-form { top: 322px; bottom: auto; }
  .conversion-inbox { top: 400px; }

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

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

  p,
  .section-head p,
  .hero p,
  .subhero p,
  .article p,
  .article li,
  .faq-panel p {
    font-size: 1.08rem;
    line-height: 1.78;
  }

  h1,
  h2,
  p,
  .hero-note span {
    word-break: normal;
    overflow-wrap: break-word;
    line-break: strict;
  }

  .hero-inner {
    padding-top: 86px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.6rem);
    line-height: 1.16;
  }

  .logo-brand img {
    height: 38px;
    max-width: 188px;
  }

  .compare-column li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow .card.step {
    min-height: auto;
    padding: 28px 24px;
  }

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

  .footer-qr {
    width: 128px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px) !important;
    max-width: 1220px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-inner > div:first-child,
  .hero p,
  .hero-actions,
  .hero-note {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Final screenshot feedback pass */
.site-header,
.nav {
  min-height: 88px;
}

.logo-brand img,
.footer-logo img {
  height: 52px;
  max-width: min(260px, 44vw);
}

@media (min-width: 981px) {
  .hero-inner {
    min-height: calc(100svh - 88px);
    align-items: center;
    padding-top: clamp(56px, 7vh, 88px);
    padding-bottom: clamp(56px, 7vh, 88px);
  }
}

.hero h1,
.section-head h2,
.why-section h2,
#contact h2,
.process-section h2 {
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.section-head h2,
.why-section h2,
#contact h2,
.process-section h2 {
  font-size: clamp(2.3rem, 4.7vw, 4.85rem);
}

.line-reveal {
  display: block;
}

.line-reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--line-index, 0) * 120ms);
}

.line-reveal.is-visible .line-reveal-line {
  opacity: 1;
  transform: translateY(0);
}

.build-compare {
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 48px;
}

.compare-column {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 184, 232, 0.55);
  box-shadow: 0 18px 48px rgba(15, 47, 95, 0.08);
  transform: none !important;
}

.code-build {
  border-top: 5px solid #1a73e8;
  background:
    radial-gradient(circle at 12% 0%, rgba(26, 115, 232, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.platform-build {
  border-top: 5px solid #9aa0a6;
  background:
    radial-gradient(circle at 92% 0%, rgba(154, 160, 166, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #fafbfc);
}

.compare-head {
  min-height: 154px;
  align-content: center;
  gap: 12px;
  padding: 28px 30px;
}

.compare-head span {
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.compare-head strong {
  max-width: 620px;
  color: #202124;
  font-size: clamp(1.15rem, 1.38vw, 1.42rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.code-build .compare-head {
  background: linear-gradient(135deg, #e8f0fe, #ffffff 72%);
}

.code-build .compare-head span {
  background: #d8e7ff;
  color: #174ea6;
}

.platform-build .compare-head {
  background: linear-gradient(135deg, #f1f3f4, #ffffff 72%);
}

.platform-build .compare-head span {
  background: #eef1f4;
  color: #5f6368;
}

.compare-column li {
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 92px;
  padding: 18px 30px;
  border-top: 1px solid rgba(218, 220, 224, 0.72);
}

.compare-column li:nth-child(even) {
  background: rgba(248, 250, 253, 0.74);
}

.compare-column b {
  display: flex;
  align-items: center;
  color: #202124;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.compare-column span {
  color: #4b5563;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.78;
}

.code-build li b::before,
.platform-build li b::before {
  content: "";
  display: block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: #8ab4f8;
  box-shadow: 0 0 0 7px rgba(138, 180, 248, 0.18);
}

.platform-build li b::before {
  background: #9aa0a6;
  box-shadow: 0 0 0 6px rgba(154, 160, 166, 0.12);
}

.compare-vs {
  width: 62px;
  height: 62px;
  background: #1a73e8;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(26, 115, 232, 0.22);
}

.conversion-system {
  width: min(var(--container, 1180px), calc(100% - 56px));
  min-height: 320px;
  margin: 42px auto 58px;
  padding: 0;
  border: 1px solid rgba(148, 184, 232, 0.42);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(26, 115, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 40%, rgba(0, 172, 193, 0.09), transparent 28%),
    linear-gradient(180deg, #f8fbff, #ffffff);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.conversion-system::before {
  display: none;
}

.conversion-system svg {
  top: 48px !important;
  left: 50% !important;
  width: min(920px, calc(100% - 180px)) !important;
  height: 210px;
  z-index: 0;
  transform: translateX(-50%);
}

.conversion-step,
.conversion-inbox {
  z-index: 4;
  width: 184px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 47, 95, 0.1);
}

.step-search {
  left: 28px;
  top: 56px;
}

.step-product {
  left: 24%;
  bottom: 44px;
}

.step-trust {
  left: 50%;
  top: 42px;
  transform: translateX(-50%);
}

.step-form {
  right: 24%;
  bottom: 46px;
}

.conversion-inbox {
  right: 28px;
  top: 58px;
}

.why-video-panel::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 42px;
  right: 42px;
  height: 10px;
  border-radius: 999px;
  background: #f8fcff;
  pointer-events: none;
}

#contact .split {
  align-items: start;
}

#contact-form,
.form {
  transform: none !important;
}

#contact .form {
  margin-top: 78px;
}

.form::before {
  display: none !important;
}

label {
  color: #202124;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
}

input,
textarea,
select {
  font-weight: 400;
}

.footer-grid {
  grid-template-columns: minmax(360px, 1.35fr) minmax(190px, 0.7fr) minmax(180px, 0.7fr) minmax(300px, 0.9fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: start;
}

.footer-grid > div:not(.footer-about) {
  padding-top: 74px;
}

.footer-about p {
  max-width: 680px;
  margin-top: 22px;
  line-height: 1.86;
}

.footer strong {
  margin-bottom: 18px;
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-contact a[href^="mailto"],
.footer-contact address {
  position: relative;
  padding-left: 30px;
  overflow-wrap: anywhere;
}

.footer-contact a[href^="mailto"]::before,
.footer-contact address::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e8f0fe;
  color: #174ea6;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-contact a[href^="mailto"]::before {
  content: "@";
}

.footer-contact address::before {
  content: "";
  box-shadow: inset 0 0 0 6px #174ea6;
  background: #e8f0fe;
}

@media (max-width: 1180px) {
  .build-compare {
    grid-template-columns: 1fr;
  }

  .compare-vs {
    justify-self: center;
  }

  .conversion-system svg {
    width: calc(100% - 140px) !important;
  }
}

@media (max-width: 980px) {
  .site-header,
  .nav {
    min-height: 76px;
  }

  .nav-links {
    top: 76px;
  }

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

  .footer-grid > div:not(.footer-about) {
    padding-top: 0;
  }

  #contact .form {
    margin-top: 0;
  }

  .conversion-system {
    min-height: 470px;
  }

  .conversion-system svg {
    display: none;
  }
}

@media (max-width: 640px) {
  .logo-brand img,
  .footer-logo img {
    height: 40px;
    max-width: 190px;
  }

  .section-head h2,
  .why-section h2,
  #contact h2,
  .process-section h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .compare-head,
  .compare-column li {
    padding-left: 22px;
    padding-right: 22px;
  }

  .compare-column li {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .conversion-system {
    width: calc(100% - 32px);
  }

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

/* Homepage technical positioning and refined scroll reveal */
.logo-brand img,
.footer-logo img {
  height: 36px;
  max-width: min(182px, 34vw);
}

.footer-logo img {
  max-width: min(200px, 60vw);
}

.why-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(26, 115, 232, 0.1), transparent 26%),
    radial-gradient(circle at 78% 26%, rgba(0, 172, 193, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.why-section .split {
  gap: clamp(44px, 6vw, 82px);
}

.why-section h2 {
  max-width: 820px;
  font-weight: 650;
}

.why-section p {
  max-width: 780px;
  color: #3f4b5d;
}

.text-accent {
  color: #1769d2;
  font-weight: 650;
}

.why-list {
  max-width: 800px;
  gap: 14px;
}

.why-list li {
  color: #334155;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.82;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-top: 24px;
}

.tech-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.88));
  color: #174ea6;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(15, 47, 95, 0.06);
}

.why-section .cta-row {
  margin-top: 28px;
}

.why-video-panel {
  border-color: rgba(148, 184, 232, 0.44);
  border-radius: 28px;
  background:
    linear-gradient(rgba(26, 115, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(0, 172, 193, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbff, #ffffff);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 24px 64px rgba(15, 47, 95, 0.12);
}

.why-video-panel::before {
  display: none !important;
}

.why-video-panel::after {
  background:
    radial-gradient(circle at 82% 18%, rgba(26, 115, 232, 0.1), transparent 28%),
    linear-gradient(135deg, transparent 34%, rgba(26, 115, 232, 0.08), transparent 58%);
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--scroll-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.line-reveal-line {
  transition-delay: calc(var(--line-index, 0) * 96ms);
}

.footer-contact a[href^="mailto"]::before,
.footer-contact address::before {
  top: 0.16em;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid rgba(26, 115, 232, 0.2);
  box-shadow: 0 8px 18px rgba(15, 47, 95, 0.08);
}

.footer-contact a[href^="mailto"]::before {
  content: "";
  background:
    linear-gradient(180deg, #ffffff, #eef6ff),
    linear-gradient(135deg, transparent 46%, #1769d2 48% 52%, transparent 54%),
    linear-gradient(45deg, transparent 46%, #1769d2 48% 52%, transparent 54%);
  background-blend-mode: normal;
}

.footer-contact a[href^="mailto"]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.16em + 6px);
  width: 12px;
  height: 8px;
  border: 1.6px solid #1769d2;
  border-radius: 2px;
  pointer-events: none;
}

.footer-contact address::before {
  content: "";
  box-shadow: 0 8px 18px rgba(15, 47, 95, 0.08);
}

.footer-contact address::after {
  content: "";
  position: absolute;
  left: 7px;
  top: calc(0.16em + 5px);
  width: 8px;
  height: 10px;
  border: 1.7px solid #1769d2;
  border-radius: 999px 999px 999px 2px;
  transform: rotate(-45deg);
  pointer-events: none;
}

.footer-contact address {
  position: relative;
}

.footer-contact address span {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .logo-brand img,
  .footer-logo img {
    height: 28px;
    max-width: 132px;
  }

  .tech-tags {
    gap: 8px;
  }

  .tech-tags span {
    min-height: 32px;
    padding: 5px 11px;
    font-size: 0.88rem;
  }
}

/* 2026-06-24 consolidated visual system
   Keeps the final Google-style direction in one override layer. */
:root {
  --font-cn: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --g-blue: #4285F4;
  --g-blue-dark: #1A73E8;
  --g-blue-hover: #1558B0;
  --g-green: #34A853;
  --g-yellow: #FBBC05;
  --g-red: #EA4335;
  --g-blue-soft: #E8F0FE;
  --g-green-soft: #E6F4EA;
  --g-yellow-soft: #FEF7E0;
  --g-red-soft: #FCE8E6;
  --text-main: #202124;
  --text-secondary: #3C4043;
  --text-muted: #5F6368;
  --border-strong: #DADCE0;
  --border-blue: #AECBFA;
  --surface-white: #FFFFFF;
  --surface-light: #F8FAFD;
  --card-shadow: 0 12px 32px rgba(60, 64, 67, 0.12);
  --card-shadow-hover: 0 18px 46px rgba(60, 64, 67, 0.18);
  --divider-soft: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  --section-pad-y: clamp(64px, 5.6vw, 88px);
  --section-pad-y-bottom: clamp(68px, 5.8vw, 96px);
  --header-height: 64px;
  --google-heading: #202124;
  --google-small: #3C4043;
  --border-light: #DADCE0;
  --shadow-soft: var(--card-shadow);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-cn) !important;
}

body {
  color: var(--text-main) !important;
  background:
    radial-gradient(circle at 9% 8%, rgba(66, 133, 244, 0.14), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(52, 168, 83, 0.12), transparent 24%),
    var(--surface-white) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
li,
.check-list,
.section-head p,
.hero p,
.subhero p,
.why-section p,
.company-copy p,
.pagespeed-copy p,
.card p,
.faq-panel p,
.card-action span,
label,
input,
textarea,
select {
  color: var(--text-secondary) !important;
}

h1,
h2,
h3,
h4,
.hero h1,
.subhero h1,
.section-head h2,
.section-title,
.why-section h2,
#contact h2,
.process-section h2,
.company-copy h2,
.compare-head strong,
.price-title,
.timeline-item h3,
.company-copy p:first-of-type {
  color: var(--text-main) !important;
  letter-spacing: 0 !important;
}

.site-header,
.nav {
  min-height: var(--header-height) !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom-color: var(--border-blue) !important;
  box-shadow: 0 8px 24px rgba(60, 64, 67, 0.12) !important;
}

.nav {
  gap: 18px !important;
}

.nav-links {
  gap: 20px !important;
  color: var(--text-main) !important;
}

.nav-links a:hover {
  color: var(--g-blue-dark) !important;
}

.logo-brand img {
  height: 32px !important;
  max-width: min(176px, 34vw) !important;
}

.button {
  border-radius: 999px !important;
  min-height: 44px !important;
}

.nav .button {
  min-height: 40px !important;
  padding-inline: 18px !important;
}

.button.primary,
.button.cyan,
.form button,
button[type="submit"] {
  background: var(--g-blue-dark) !important;
  color: #FFFFFF !important;
  border-color: var(--g-blue-dark) !important;
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.32) !important;
}

.button.primary:hover,
.button.cyan:hover,
.form button:hover,
button[type="submit"]:hover {
  background: var(--g-blue-hover) !important;
  color: #FFFFFF !important;
  border-color: var(--g-blue-hover) !important;
  box-shadow: 0 10px 28px rgba(66, 133, 244, 0.38) !important;
}

.button.secondary {
  background: #FFFFFF !important;
  color: var(--g-blue-dark) !important;
  border-color: var(--border-blue) !important;
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.14) !important;
}

.button.secondary:hover {
  background: var(--g-blue-soft) !important;
  color: var(--g-blue-hover) !important;
  border-color: var(--border-blue) !important;
}

.hero {
  min-height: auto !important;
  height: auto !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(66, 133, 244, 0.2), transparent 26%),
    radial-gradient(circle at 18% 84%, rgba(52, 168, 83, 0.18), transparent 28%),
    radial-gradient(circle at 55% 12%, rgba(251, 188, 5, 0.16), transparent 20%),
    radial-gradient(circle at 92% 72%, rgba(234, 67, 53, 0.1), transparent 18%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%) !important;
}

.hero::before {
  opacity: 0.62 !important;
  background-image:
    linear-gradient(rgba(66, 133, 244, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 133, 244, 0.07) 1px, transparent 1px) !important;
}

.hero::after {
  display: none !important;
}

.hero .container {
  width: min(1280px, calc(100% - 48px)) !important;
}

.hero-inner {
  min-height: clamp(560px, calc(100svh - var(--header-height) - 72px), 680px) !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr) !important;
  gap: clamp(36px, 5vw, 70px) !important;
  align-items: center !important;
  padding-top: clamp(34px, 4.2vw, 58px) !important;
  padding-bottom: clamp(34px, 4.2vw, 58px) !important;
}

@supports (height: 100dvh) {
  .hero-inner {
    min-height: clamp(560px, calc(100dvh - var(--header-height) - 72px), 680px) !important;
  }
}

.hero h1 {
  max-width: 650px !important;
  font-size: clamp(2.35rem, 4.45vw, 4.1rem) !important;
  line-height: 1.08 !important;
}

.hero p {
  max-width: 620px !important;
  font-size: clamp(1rem, 0.82vw + 0.76rem, 1.12rem) !important;
  line-height: 1.82 !important;
}

.hero-actions,
.hero-note {
  margin-top: 18px !important;
}

.hero-note {
  max-width: 610px !important;
  gap: 10px !important;
}

.hero-note span {
  border-radius: 999px !important;
  padding: 6px 12px !important;
  font-size: clamp(0.82rem, 0.55vw + 0.66rem, 0.92rem) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}

.hero-note span:nth-child(4n + 1) { background: var(--g-blue-soft) !important; color: #1967D2 !important; border-color: var(--border-blue) !important; }
.hero-note span:nth-child(4n + 2) { background: var(--g-green-soft) !important; color: #137333 !important; border-color: #A8DAB5 !important; }
.hero-note span:nth-child(4n + 3) { background: var(--g-yellow-soft) !important; color: #B06000 !important; border-color: #FDD663 !important; }
.hero-note span:nth-child(4n + 4) { background: var(--g-red-soft) !important; color: #C5221F !important; border-color: #F4AEA9 !important; }

.hero-visual,
.hero-video-panel {
  max-width: min(680px, 100%) !important;
  justify-self: stretch !important;
  aspect-ratio: 4 / 3 !important;
}

.hero-video-panel video,
.hero-video-panel img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
}

.section,
.section.alt,
.section.dark,
.company-section {
  position: relative !important;
  padding-top: var(--section-pad-y) !important;
  padding-bottom: var(--section-pad-y-bottom) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.section,
.company-section {
  background-color: #FFFFFF !important;
}

.section.alt,
.section:nth-of-type(odd) {
  background-color: var(--surface-light) !important;
}

.section.dark,
.why-section,
.thank-you-hero {
  background:
    radial-gradient(circle at 12% 22%, rgba(66, 133, 244, 0.14), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(52, 168, 83, 0.12), transparent 24%),
    #FFFFFF !important;
}

.section + .section,
.hero + .section,
.section + .footer {
  margin-top: 0 !important;
}

.section::before,
.section.alt::before,
.section.dark::before,
.company-section::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 100vw !important;
  max-width: none !important;
  height: 2px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, rgba(66, 133, 244, 0), rgba(66, 133, 244, 0.22) 18%, rgba(52, 168, 83, 0.2) 44%, rgba(251, 188, 5, 0.18) 68%, rgba(234, 67, 53, 0.2) 86%, rgba(234, 67, 53, 0)) !important;
  box-shadow: 0 6px 18px rgba(66, 133, 244, 0.08) !important;
  opacity: 0.78 !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.hero + .section {
  padding-top: clamp(54px, 5.2vw, 78px) !important;
}

.hero + .section::before {
  height: 3px !important;
  background: var(--divider-soft) !important;
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.18) !important;
  opacity: 0.84 !important;
}

.section > .container,
.company-section > .container {
  position: relative;
  z-index: 1;
}

.section-head,
.section-header {
  max-width: 980px !important;
  margin: 0 auto clamp(22px, 2.8vw, 34px) !important;
  text-align: center;
}

.section-head h2,
.section-title,
.why-section h2,
#contact h2,
.process-section h2,
.company-copy h2 {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(40px, 5vw, 72px) !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
}

.section-head h2::after {
  display: none !important;
}

.section-head p,
.section-description {
  max-width: 900px !important;
  margin: 18px auto 0 !important;
  font-size: clamp(17px, 1.4vw, 21px) !important;
  line-height: 1.78 !important;
}

.tech-stack-grid,
.premium-service-grid,
.b2b-industry-grid,
.package-grid,
.case-demo-grid,
.problem-grid {
  margin-top: 0 !important;
}

.card,
.compare-column,
.form,
.faq-item,
.timeline-item,
.company-panel,
.footer-contact-card,
.image-panel,
.case-demo-card,
.package,
.pagespeed-proof,
.pagespeed-shot,
.buyer-system-map,
.system-node,
.demo-image,
.blog-cover,
.case-video-frame {
  background: #FFFFFF !important;
  border-color: var(--border-blue) !important;
  border-radius: 22px !important;
  box-shadow: var(--card-shadow) !important;
}

.card:hover,
.card.reveal-item:hover,
.card.reveal-item.is-visible:hover,
.compare-column:hover,
.case-demo-card:hover,
.package:hover,
.faq-item.open {
  border-color: var(--g-blue) !important;
  box-shadow: var(--card-shadow-hover) !important;
}

.card::before,
.premium-industry::after,
.compare-column::before,
.package::before,
.case-demo-card::before,
.tech-benefit::before,
.premium-service-card::before,
.problem-card::before,
.system-card::before {
  background: var(--accent, var(--g-blue)) !important;
}

.grid > .card:nth-child(4n + 1),
.buyer-system-grid > .card:nth-child(4n + 1),
.premium-industry:nth-child(4n + 1) { --accent: var(--g-blue); --accent-soft: var(--g-blue-soft); --accent-deep: #1967D2; }
.grid > .card:nth-child(4n + 2),
.buyer-system-grid > .card:nth-child(4n + 2),
.premium-industry:nth-child(4n + 2) { --accent: var(--g-green); --accent-soft: var(--g-green-soft); --accent-deep: #137333; }
.grid > .card:nth-child(4n + 3),
.buyer-system-grid > .card:nth-child(4n + 3),
.premium-industry:nth-child(4n + 3) { --accent: var(--g-yellow); --accent-soft: var(--g-yellow-soft); --accent-deep: #B06000; }
.grid > .card:nth-child(4n + 4),
.buyer-system-grid > .card:nth-child(4n + 4),
.premium-industry:nth-child(4n + 4) { --accent: var(--g-red); --accent-soft: var(--g-red-soft); --accent-deep: #C5221F; }

.eyebrow,
.tag,
.card-kicker,
.step-kicker,
.industry-label {
  border-radius: 999px !important;
  background: var(--g-blue-soft) !important;
  color: #1967D2 !important;
  border: 1px solid var(--border-blue) !important;
  letter-spacing: 0.04em !important;
}

.eyebrow::before {
  background: var(--g-blue) !important;
}

.card:nth-child(4n + 2) .tag,
.card:nth-child(4n + 2) .card-kicker { background: var(--g-green-soft) !important; color: #137333 !important; border-color: #A8DAB5 !important; }
.card:nth-child(4n + 3) .tag,
.card:nth-child(4n + 3) .card-kicker { background: var(--g-yellow-soft) !important; color: #B06000 !important; border-color: #FDD663 !important; }
.card:nth-child(4n + 4) .tag,
.card:nth-child(4n + 4) .card-kicker { background: var(--g-red-soft) !important; color: #C5221F !important; border-color: #F4AEA9 !important; }

.icon,
.service-icon,
.industry-icon,
.step-number,
.system-card .step-number,
.faq-button span:last-child {
  background: var(--g-blue-soft) !important;
  color: var(--g-blue-dark) !important;
}

.card:nth-child(4n + 2) .icon,
.card:nth-child(4n + 2) .service-icon,
.card:nth-child(4n + 2) .industry-icon,
.step:nth-child(4n + 2) .step-number,
.system-card:nth-child(4n + 2) .step-number { background: var(--g-green-soft) !important; color: #188038 !important; }
.card:nth-child(4n + 3) .icon,
.card:nth-child(4n + 3) .service-icon,
.card:nth-child(4n + 3) .industry-icon,
.step:nth-child(4n + 3) .step-number,
.system-card:nth-child(4n + 3) .step-number { background: var(--g-yellow-soft) !important; color: #F9AB00 !important; }
.card:nth-child(4n + 4) .icon,
.card:nth-child(4n + 4) .service-icon,
.card:nth-child(4n + 4) .industry-icon,
.step:nth-child(4n + 4) .step-number,
.system-card:nth-child(4n + 4) .step-number { background: var(--g-red-soft) !important; color: #D93025 !important; }

.industry-meta span,
.stack-pills span,
.tech-tags span,
.system-card .step-kicker {
  background: var(--accent-soft, var(--g-blue-soft)) !important;
  color: var(--accent-deep, #1967D2) !important;
  border-color: var(--border-blue) !important;
}

.code-build {
  border-color: var(--g-blue) !important;
  border-top: 5px solid transparent !important;
  border-image: linear-gradient(90deg, var(--g-blue), var(--g-green)) 1 !important;
}

.code-build::before {
  background: linear-gradient(90deg, var(--g-blue), var(--g-green)) !important;
}

.code-build .compare-head {
  background: linear-gradient(135deg, var(--g-blue-soft), var(--g-green-soft)) !important;
}

.code-build .compare-head span,
.code-build .compare-head strong,
.code-build b,
.code-build li b {
  color: var(--g-blue-dark) !important;
}

.code-build li b::before {
  background: var(--g-blue-dark) !important;
  box-shadow: 0 0 0 7px rgba(66, 133, 244, 0.22) !important;
}

.platform-build {
  border-color: var(--border-strong) !important;
  border-top: 5px solid #9AA0A6 !important;
}

.platform-build::before {
  background: #9AA0A6 !important;
}

.platform-build .compare-head {
  background: var(--surface-light) !important;
}

.platform-build .compare-head span,
.platform-build .compare-head strong,
.platform-build b,
.platform-build li b {
  color: var(--text-muted) !important;
}

.platform-build li b::before {
  background: var(--g-yellow) !important;
  box-shadow: 0 0 0 7px rgba(251, 188, 5, 0.22) !important;
}

.compare-vs {
  background: linear-gradient(135deg, var(--g-blue), var(--g-green)) !important;
  color: #FFFFFF !important;
  box-shadow: 0 12px 32px rgba(66, 133, 244, 0.32) !important;
}

.buyer-system {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.buyer-system-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border-color: var(--border-blue) !important;
  background:
    linear-gradient(rgba(66, 133, 244, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 133, 244, 0.07) 1px, transparent 1px),
    #FFFFFF !important;
  background-size: 32px 32px;
  overflow: hidden;
}

.buyer-system-map::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--g-blue), var(--g-green), var(--g-yellow), var(--g-red)) !important;
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.28) !important;
  transform: translateY(-50%);
}

.system-node {
  position: relative;
  z-index: 1;
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.system-node span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.system-node.search span { background: var(--g-blue-soft) !important; color: #1967D2 !important; }
.system-node.product span { background: var(--g-green-soft) !important; color: #137333 !important; }
.system-node.trust span { background: var(--g-yellow-soft) !important; color: #B06000 !important; }
.system-node.rfq span { background: var(--g-red-soft) !important; color: #C5221F !important; }

.buyer-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.system-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
}

.package.featured {
  border-color: var(--g-blue-dark) !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(66, 133, 244, 0.24), transparent 28%),
    linear-gradient(180deg, #FFFFFF, var(--g-blue-soft)) !important;
  box-shadow:
    0 34px 86px rgba(26, 115, 232, 0.3),
    0 0 0 8px rgba(66, 133, 244, 0.12) !important;
}

.package.featured::after,
.package.featured .tag {
  background: var(--g-blue-dark) !important;
  color: #FFFFFF !important;
  border-color: var(--g-blue-dark) !important;
  box-shadow: 0 12px 26px rgba(26, 115, 232, 0.32) !important;
}

.package.featured .price-title,
.package.featured .package-footer strong {
  color: var(--g-blue-dark) !important;
}

.package.featured .package-footer,
input,
textarea,
select,
.form-note {
  background: #FFFFFF !important;
  border-color: var(--border-blue) !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--g-blue-dark) !important;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.18) !important;
}

.honeypot {
  display: none !important;
}

.form-status.success {
  background: var(--g-green-soft) !important;
  color: #137333 !important;
  border-color: #A8DAB5 !important;
}

.form-status.error {
  background: var(--g-red-soft) !important;
  color: #C5221F !important;
  border-color: #F4AEA9 !important;
}

.company-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(66, 133, 244, 0.1), transparent 28%),
    radial-gradient(circle at 94% 18%, rgba(52, 168, 83, 0.08), transparent 26%),
    linear-gradient(180deg, #F8FAFD 0%, #FFFFFF 100%) !important;
}

.company-panel {
  align-items: center !important;
  max-width: 1320px !important;
  gap: clamp(26px, 3.4vw, 48px) !important;
  padding: clamp(22px, 2.6vw, 34px) !important;
  border-color: var(--border-blue) !important;
  background:
    radial-gradient(circle at 94% 12%, rgba(66, 133, 244, 0.12), transparent 30%),
    #FFFFFF !important;
  box-shadow: 0 18px 46px rgba(60, 64, 67, 0.14) !important;
}

.company-photo {
  overflow: hidden !important;
  min-height: 0 !important;
  aspect-ratio: 3 / 2;
}

.company-photo::before,
.company-photo::after {
  display: none !important;
  content: none !important;
}

.company-photo img {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(10px, 1.2vw, 18px);
  min-height: 0 !important;
}

.company-copy {
  max-width: 760px !important;
  justify-content: center !important;
  gap: 0 !important;
}

.company-copy h2 {
  margin-bottom: 20px !important;
  color: var(--text-main) !important;
  font-size: clamp(2rem, 3vw, 3.05rem) !important;
}

.company-copy p {
  color: var(--text-secondary) !important;
}

.company-copy p:first-of-type {
  border-left-color: var(--g-blue-dark) !important;
  background: var(--g-blue-soft) !important;
  color: #174EA6 !important;
}

.company-copy p:not(:first-of-type) {
  border-bottom: 1px solid rgba(174, 203, 250, 0.58) !important;
}

.company-copy p:last-of-type {
  border-bottom-color: transparent !important;
}

.footer {
  padding-top: clamp(36px, 4vw, 54px) !important;
  padding-bottom: 24px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(66, 133, 244, 0.12), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(52, 168, 83, 0.08), transparent 28%),
    #202124 !important;
  color: #FFFFFF !important;
}

.footer-grid {
  align-items: start !important;
  grid-template-columns: minmax(320px, 1.12fr) minmax(150px, 0.52fr) minmax(150px, 0.52fr) minmax(420px, 1fr) !important;
  gap: clamp(26px, 3.4vw, 48px) !important;
}

.footer-grid > div,
.footer-grid > div:not(.footer-about) {
  padding-top: 0 !important;
}

.footer-logo img {
  filter: brightness(1.1) saturate(1.18) !important;
}

.footer h3,
.footer strong,
.footer-contact-card > span {
  color: #FFFFFF !important;
}

.footer p,
.footer a,
.footer address,
.footer span,
.footer-about p,
.footer-bottom {
  color: #BDC1C6 !important;
}

.footer-about p {
  max-width: 560px !important;
  color: #DADCE0 !important;
}

.footer a:hover {
  color: #8AB4F8 !important;
}

.footer-contact {
  justify-self: end !important;
  width: min(100%, 420px) !important;
}

.footer-contact-card {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: 132px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 12px 22px !important;
  padding: 20px !important;
  border: 1px solid rgba(138, 180, 248, 0.42) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(138, 180, 248, 0.14), transparent 32%),
    rgba(48, 49, 52, 0.96) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24) !important;
  text-align: left !important;
  justify-items: stretch !important;
  overflow: hidden !important;
}

.footer-qr {
  grid-row: 1 / span 3 !important;
  width: 132px !important;
  height: auto !important;
  padding: 8px !important;
  border: 1px solid rgba(138, 180, 248, 0.5) !important;
  border-radius: 18px !important;
  background: #FFFFFF !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
}

.footer-qr img {
  display: block !important;
  width: 100% !important;
  border-radius: 12px !important;
}

.footer-contact-card > span {
  align-self: end !important;
}

.footer-contact-card a,
.footer-contact-card address {
  min-width: 0 !important;
  padding-left: 0 !important;
  color: #BDC1C6 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.footer-contact-card a {
  white-space: normal !important;
}

.footer-contact-card a::before,
.footer-contact-card a::after,
.footer-contact-card address::before,
.footer-contact-card address::after {
  display: none !important;
  content: none !important;
}

.footer-bottom {
  width: 100%;
  margin-top: 28px !important;
  padding-top: 18px !important;
  border-top-color: rgba(189, 193, 198, 0.26) !important;
  text-align: center !important;
}

.thank-you-hero {
  min-height: calc(100svh - var(--header-height)) !important;
  height: auto !important;
  overflow: visible !important;
}

.thank-you-hero .container {
  background: #FFFFFF !important;
  border-color: var(--border-blue) !important;
  box-shadow: 0 18px 46px rgba(60, 64, 67, 0.16) !important;
}

.reveal-item,
.scroll-reveal,
.card.reveal-item:nth-of-type(n),
.timeline-item.reveal-item:nth-of-type(n),
.section-head.reveal-item,
.hero-inner > .reveal-item {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  filter: none !important;
}

@media (max-height: 820px) and (min-width: 981px) {
  .hero-inner {
    min-height: clamp(530px, calc(100svh - var(--header-height) - 86px), 620px) !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  @supports (height: 100dvh) {
    .hero-inner {
      min-height: clamp(530px, calc(100dvh - var(--header-height) - 86px), 620px) !important;
    }
  }

  .hero h1 {
    font-size: clamp(2.28rem, 4vw, 3.7rem) !important;
  }

  .hero p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }

  .hero-note span {
    font-size: 0.82rem !important;
    padding: 5px 10px !important;
  }

  .hero-visual,
  .hero-video-panel {
    max-width: min(620px, 100%) !important;
  }
}

@media (max-width: 1180px) {
  :root {
    --section-pad-y: clamp(58px, 6.4vw, 78px);
    --section-pad-y-bottom: clamp(62px, 6.6vw, 86px);
  }

  .footer-grid,
  .company-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  .footer-contact {
    justify-self: start !important;
  }
}

@media (max-width: 1024px) {
  .hero-inner,
  .why-section .split,
  .company-panel {
    grid-template-columns: 1fr !important;
  }

  .hero-inner {
    min-height: auto !important;
    padding-top: clamp(56px, 7vw, 76px) !important;
    padding-bottom: clamp(56px, 7vw, 76px) !important;
  }

  .hero-visual,
  .hero-video-panel,
  .why-video-panel {
    max-width: min(720px, 100%) !important;
    justify-self: center !important;
  }

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

  .buyer-system-map::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .footer-contact {
    width: min(100%, 420px) !important;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad-y: 52px;
    --section-pad-y-bottom: 60px;
    --header-height: 62px;
  }

  .container,
  .hero .container {
    width: calc(100% - 32px) !important;
  }

  .logo-brand img {
    height: 28px !important;
    max-width: 132px !important;
  }

  .hero-inner {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 11vw, 3.18rem) !important;
  }

  .hero p,
  .section-head p {
    font-size: 17px !important;
    line-height: 1.72 !important;
  }

  .hero-note {
    gap: 8px !important;
  }

  .hero-note span {
    white-space: normal !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .hero-actions .button,
  .button {
    width: 100%;
  }

  .section-head h2,
  .section-title,
  .why-section h2,
  #contact h2,
  .process-section h2,
  .company-copy h2 {
    font-size: clamp(34px, 8vw, 48px) !important;
    line-height: 1.2 !important;
  }

  .hero + .section {
    padding-top: 48px !important;
  }

  .buyer-system-map,
  .buyer-system-grid {
    grid-template-columns: 1fr;
  }

  .system-node {
    min-height: 96px;
  }

  .company-panel {
    padding: 18px !important;
  }

  .company-photo,
  .company-photo img {
    min-height: 260px !important;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .footer-contact,
  .footer-contact-card {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
  }

  .footer-contact-card {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    gap: 10px 16px !important;
    padding: 16px !important;
  }

  .footer-qr {
    width: 104px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-item,
  .scroll-reveal,
  .reveal-item.is-visible,
  .scroll-reveal.is-visible,
  .card.reveal-item:nth-of-type(n),
  .timeline-item.reveal-item:nth-of-type(n) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .card:hover,
  .card.reveal-item:hover,
  .card.reveal-item.is-visible:hover {
    transform: none !important;
  }
}

/* 2026-06-24 visual audit repair pass */
.hero {
  overflow: visible !important;
}

@media (min-width: 769px) and (max-width: 1180px) {
  .hero-inner {
    min-height: auto !important;
    padding-top: clamp(48px, 5.4vw, 64px) !important;
    padding-bottom: clamp(48px, 5.4vw, 64px) !important;
  }

  .hero-visual,
  .hero-video-panel {
    max-width: min(620px, 100%) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-inner {
    gap: 36px !important;
  }

  .hero-visual,
  .hero-video-panel {
    max-width: min(560px, 100%) !important;
  }
}

.package-grid {
  align-items: stretch !important;
}

.package {
  display: flex !important;
  flex-direction: column !important;
}

.package .check-list {
  flex: 1 1 auto !important;
}

.package-footer {
  margin-top: auto !important;
  background: #FFFFFF !important;
  border-color: var(--border-blue) !important;
}

.package-footer strong {
  color: var(--g-blue-dark) !important;
}

.package.featured {
  transform: none !important;
}

.package.featured::after {
  top: 18px !important;
  right: 18px !important;
}

.package.featured .tag {
  background: var(--g-blue-soft) !important;
  color: #1967D2 !important;
  border-color: var(--border-blue) !important;
  box-shadow: none !important;
}

.faq {
  display: grid !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  gap: 14px !important;
  border-top: 0 !important;
}

.faq-item {
  overflow: hidden !important;
  border: 1px solid var(--border-blue) !important;
  border-radius: 18px !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 26px rgba(60, 64, 67, 0.1) !important;
}

.faq-button {
  min-height: 64px !important;
  padding: 18px 22px !important;
  color: var(--text-main) !important;
  line-height: 1.48 !important;
}

.faq-button span:last-child {
  width: 32px !important;
  height: 32px !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 32px !important;
  border-radius: 50% !important;
  background: var(--g-blue-soft) !important;
  color: var(--g-blue-dark) !important;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  padding: 0 22px 22px !important;
  color: var(--text-secondary) !important;
}

.faq-item.open {
  border-color: var(--g-blue) !important;
  box-shadow: 0 16px 36px rgba(60, 64, 67, 0.14) !important;
}

.faq-item.open .faq-panel {
  max-height: 320px !important;
}

.footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(66, 133, 244, 0.12), transparent 30%),
    linear-gradient(180deg, #FFFFFF, #F8FAFD) !important;
  color: var(--text-secondary) !important;
  border-top: 1px solid var(--border-blue) !important;
}

.footer h3,
.footer strong,
.footer-contact-card > span {
  color: var(--text-main) !important;
}

.footer p,
.footer a,
.footer address,
.footer span,
.footer-about p,
.footer-bottom {
  color: var(--text-secondary) !important;
}

.footer a:hover {
  color: var(--g-blue-dark) !important;
}

.footer-contact-card {
  border-color: var(--border-blue) !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(66, 133, 244, 0.12), transparent 32%),
    #FFFFFF !important;
  box-shadow: 0 14px 34px rgba(60, 64, 67, 0.12) !important;
}

.footer-qr {
  border-color: var(--border-blue) !important;
  box-shadow: 0 10px 24px rgba(60, 64, 67, 0.12) !important;
}

.footer-bottom {
  border-top-color: var(--border-strong) !important;
}

.reveal-item,
.scroll-reveal,
.card.reveal-item:nth-of-type(n),
.timeline-item.reveal-item:nth-of-type(n),
.section-head.reveal-item,
.hero-inner > .reveal-item {
  opacity: 0 !important;
  transform: translate3d(0, 26px, 0) !important;
  filter: blur(8px) !important;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 240ms ease !important;
  transition-delay: var(--scroll-delay, 0ms) !important;
}

.scroll-reveal {
  transform: translate3d(0, 16px, 0) !important;
  filter: none !important;
}

.line-reveal .line-reveal-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0.82em, 0);
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--line-index, 0) * 90ms);
}

.reveal-item.is-visible,
.scroll-reveal.is-visible,
.card.reveal-item.is-visible:nth-of-type(n),
.timeline-item.reveal-item.is-visible:nth-of-type(n),
.section-head.reveal-item.is-visible,
.hero-inner > .reveal-item.is-visible,
.line-reveal.is-visible .line-reveal-line {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  filter: blur(0) !important;
}

@media (max-width: 640px) {
  .company-photo {
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    aspect-ratio: 4 / 3 !important;
  }

  .company-photo img {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .faq {
    max-width: 100% !important;
  }

  .faq-button {
    padding: 16px 18px !important;
  }

  .faq-panel p {
    padding: 0 18px 20px !important;
  }

  .package.featured::after {
    position: static !important;
    width: fit-content !important;
    margin-bottom: 12px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .scroll-reveal,
  .reveal-item.is-visible,
  .scroll-reveal.is-visible,
  .line-reveal .line-reveal-line {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* 2026-06-24 viewport audit corrections */
.footer {
  background-color: #f8fafd !important;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero-inner {
    padding-top: 40px !important;
    padding-bottom: 42px !important;
    gap: 28px !important;
  }

  .hero-copy {
    max-width: 620px !important;
  }

  .hero-visual,
  .hero-video-panel {
    max-width: min(500px, 100%) !important;
    aspect-ratio: 16 / 9 !important;
  }

  .hero-video-panel img,
  .hero-video-panel video {
    max-height: 282px !important;
    object-fit: cover !important;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .hero-inner {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
    gap: 26px !important;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 6.6vw, 3rem) !important;
  }

  .hero p {
    line-height: 1.62 !important;
  }

  .hero-visual,
  .hero-video-panel {
    max-width: min(540px, 100%) !important;
    aspect-ratio: 16 / 9 !important;
  }

  .hero-video-panel img,
  .hero-video-panel video {
    max-height: 304px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
    gap: 22px !important;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.64rem) !important;
  }

  .hero p {
    line-height: 1.6 !important;
  }

  .hero-actions {
    margin-top: 16px !important;
  }

  .hero-note {
    margin-top: 14px !important;
  }

  .hero-visual,
  .hero-video-panel {
    max-width: 100% !important;
    height: 190px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }

  .hero-video-panel img,
  .hero-video-panel video {
    max-height: 178px !important;
    object-fit: cover !important;
  }

  .company-panel {
    overflow: hidden !important;
  }

  .company-photo {
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .company-photo img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
  }
}

/* 2026-06-24 layout corrections from visual review */
.industry-summary {
  width: min(980px, 100%) !important;
  margin: clamp(28px, 3vw, 42px) auto 0 !important;
  text-align: center !important;
  font-size: clamp(1.02rem, 1.25vw, 1.24rem) !important;
  line-height: 1.9 !important;
}

.package-footer {
  align-items: center !important;
  gap: 14px !important;
  min-width: 0 !important;
  padding: 18px clamp(16px, 1.5vw, 22px) 0 !important;
}

.package-footer span {
  flex: 0 0 auto !important;
}

.package-footer strong {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  font-size: clamp(2.1rem, 2.7vw, 3rem) !important;
  text-align: right !important;
}

.timeline {
  --timeline-axis: 32px !important;
}

.timeline-item {
  grid-template-columns: 64px minmax(0, 1fr) !important;
  align-items: center !important;
}

.timeline-index {
  justify-self: center !important;
}

.company-panel {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr) !important;
  max-width: 1180px !important;
  gap: clamp(24px, 3vw, 42px) !important;
}

.company-photo {
  width: min(100%, 430px) !important;
  justify-self: center !important;
  aspect-ratio: 4 / 3 !important;
  background: #ffffff !important;
}

.company-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(14px, 1.8vw, 24px) !important;
}

.company-copy {
  align-self: center !important;
}

@media (max-width: 1024px) {
  .company-panel {
    grid-template-columns: 1fr !important;
  }

  .company-photo {
    width: min(100%, 520px) !important;
  }
}

@media (max-width: 640px) {
  .industry-summary {
    text-align: left !important;
  }

  .package-footer {
    align-items: stretch !important;
  }

  .package-footer strong {
    text-align: left !important;
    font-size: clamp(2.05rem, 12vw, 2.65rem) !important;
  }

  .timeline {
    --timeline-axis: 29px !important;
  }

  .timeline-item {
    grid-template-columns: 58px minmax(0, 1fr) !important;
  }

  .company-photo,
  .company-photo img {
    min-height: 0 !important;
  }

  .company-photo {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
  }
}

/* 2026-06-24 hero balance correction */
@media (min-width: 1101px) {
  .hero .container {
    width: min(92vw, 1800px) !important;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(620px, 1.14fr) !important;
    gap: clamp(28px, 3.2vw, 56px) !important;
  }

  .hero-visual,
  .hero-video-panel {
    width: 100% !important;
    max-width: none !important;
    justify-self: end !important;
  }
}

@media (min-width: 1440px) {
  .hero .container {
    width: min(93vw, 1860px) !important;
  }
}

/* 2026-06-24 package recommendation emphasis */
@media (min-width: 981px) {
  .package-grid {
    align-items: center !important;
    gap: clamp(18px, 2vw, 28px) !important;
  }

  .package-grid > .card.package:not(.featured),
  .package-grid > .card.package:not(.featured).reveal-item.is-visible:nth-of-type(n) {
    transform: scale(0.965) !important;
    opacity: 0.92 !important;
    filter: saturate(0.86) !important;
  }

  .package-grid > .card.package.featured,
  .package-grid > .card.package.featured.reveal-item.is-visible:nth-of-type(n) {
    z-index: 3 !important;
    transform: translateY(-18px) scale(1.055) !important;
    border: 2px solid var(--g-blue-dark) !important;
    background:
      radial-gradient(circle at 88% 8%, rgba(66, 133, 244, 0.18), transparent 30%),
      linear-gradient(180deg, #FFFFFF 0%, #F3F8FF 48%, #EAF2FF 100%) !important;
    box-shadow:
      0 42px 96px rgba(26, 115, 232, 0.34),
      0 0 0 10px rgba(66, 133, 244, 0.13) !important;
  }
}

.package.featured::after {
  content: "推荐首选" !important;
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: var(--g-blue-dark) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--g-blue-dark) !important;
  box-shadow: 0 14px 28px rgba(26, 115, 232, 0.34) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.package.featured .tag {
  background: var(--g-blue-dark) !important;
  color: #FFFFFF !important;
  border-color: var(--g-blue-dark) !important;
  box-shadow: 0 10px 24px rgba(26, 115, 232, 0.24) !important;
}

.package.featured .price-title {
  color: var(--g-blue-dark) !important;
  font-size: clamp(1.55rem, 1.55vw, 1.9rem) !important;
}

.package.featured .package-footer {
  border-top-width: 2px !important;
}

.package.featured .package-footer strong {
  color: var(--g-blue-dark) !important;
  font-size: clamp(2.55rem, 3.45vw, 3.65rem) !important;
}

@media (max-width: 980px) {
  .package-grid > .card.package:not(.featured),
  .package-grid > .card.package:not(.featured).reveal-item.is-visible:nth-of-type(n),
  .package-grid > .card.package.featured,
  .package-grid > .card.package.featured.reveal-item.is-visible:nth-of-type(n) {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* 2026-06-25 screenshot note corrections */
.company-panel {
  background:
    radial-gradient(circle at 16% 18%, rgba(66, 133, 244, 0.13), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(52, 168, 83, 0.08), transparent 26%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 48%, #EEF5FF 100%) !important;
}

.footer-grid {
  align-items: start !important;
}

.footer-about p {
  margin-top: 46px !important;
}

.footer-grid > div:not(.footer-about) {
  padding-top: clamp(78px, 5.2vw, 88px) !important;
}

@media (max-width: 980px) {
  .footer-about p {
    margin-top: 18px !important;
  }

  .footer-grid > div:not(.footer-about) {
    padding-top: 0 !important;
  }
}

/* 2026-06-25 polish fixes from screenshot review */
body {
  padding-top: var(--header-height) !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  transform: none !important;
}

@media (min-width: 981px) {
  .package-grid {
    margin-top: clamp(26px, 3vw, 42px) !important;
  }

  .package-grid > .card.package.featured,
  .package-grid > .card.package.featured.reveal-item.is-visible:nth-of-type(n) {
    transform: translateY(-8px) scale(1.025) !important;
    box-shadow:
      0 24px 58px rgba(26, 115, 232, 0.18),
      0 0 0 3px rgba(66, 133, 244, 0.1) !important;
  }

  .package-grid > .card.package:not(.featured),
  .package-grid > .card.package:not(.featured).reveal-item.is-visible:nth-of-type(n) {
    transform: scale(0.985) !important;
  }

  .package-grid > .card.package.featured:hover,
  .package-grid > .card.package.featured.reveal-item.is-visible:hover {
    transform: translateY(-8px) scale(1.025) !important;
    box-shadow:
      0 24px 58px rgba(26, 115, 232, 0.2),
      0 0 0 3px rgba(66, 133, 244, 0.12) !important;
  }
}

.package.featured .package-footer {
  background: transparent !important;
}

.package.featured .package-footer,
.package.featured .package-footer:hover {
  box-shadow: none !important;
}

.company-photo {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.company-photo img {
  padding: 0 !important;
  background: transparent !important;
}

@media (max-width: 640px) {
  body {
    padding-top: var(--header-height) !important;
  }
}

/* 2026-06-25 remove card hover color blocks */
.card::before,
.card::after,
.package::before,
.package::after,
.compare-column::before,
.compare-column::after,
.case-demo-card::before,
.case-demo-card::after,
.tech-benefit::before,
.premium-service-card::before,
.problem-card::before,
.system-card::before,
.premium-industry::after,
.form::before,
.footer-contact-card::before,
.footer-contact-card::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.card:hover,
.card.reveal-item:hover,
.card.reveal-item.is-visible:hover,
.service-card:hover,
.industry-card:hover,
.compare-column:hover,
.image-panel:hover,
.case-demo-card:hover,
.package:hover {
  border-color: rgba(66, 133, 244, 0.34) !important;
  box-shadow: 0 22px 54px rgba(60, 64, 67, 0.16) !important;
}

.package.featured::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: transparent !important;
}
