:root {
  --brand: #ea5119;
  --brand-2: #f05a28;
  --brand-dark: #bb3d12;
  --text: #111111;
  --muted: #555555;
  --subtle: #7a7a7a;
  --line: #e5e7eb;
  --line-strong: #d6d9df;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-warm: #fff6f1;
  --dark: #101010;
  --dark-2: #171717;
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-height: 78px;
  --top-contact-height: 38px;
  --shadow-sm: 0 1px 0 rgba(17, 17, 17, 0.04);
  --shadow-md: 0 18px 48px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 30px 90px rgba(17, 17, 17, 0.12);
  font-family: Inter, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 0%, rgba(234, 81, 25, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 42rem, #ffffff 100%);
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(229, 231, 235, 0);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(229, 231, 235, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.top-contact-bar {
  min-height: var(--top-contact-height);
  color: rgba(255, 255, 255, 0.86);
  background: #101010;
  font-size: 13px;
}

.top-contact-inner {
  display: flex;
  min-height: var(--top-contact-height);
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.top-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-contact-link {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  transition: color 160ms ease, transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.top-contact-link .icon {
  width: 15px;
  height: 15px;
  color: var(--brand-2);
}

.top-contact-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.top-whatsapp {
  color: #ffffff;
  border-color: rgba(37, 211, 102, 0.28);
  background: rgba(37, 211, 102, 0.12);
}

.top-whatsapp .icon {
  color: #25d366;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 158px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
}

.nav-links .nav-cta {
  min-height: 46px;
  margin-left: 10px;
  padding: 0 22px;
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.14);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.is-active {
  color: #ffffff;
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  position: relative;
  padding: 112px 0;
}

.soft-section {
  background:
    linear-gradient(180deg, rgba(246, 247, 249, 0.82), rgba(246, 247, 249, 0.96)),
    var(--bg-soft);
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-title > div {
  max-width: 760px;
}

.kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.mini-label {
  margin: 0 0 10px;
  color: var(--subtle);
  text-transform: none;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.78;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 16px 32px rgba(234, 81, 25, 0.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
}

.btn-secondary:hover {
  color: var(--brand);
  border-color: rgba(234, 81, 25, 0.4);
  background: #ffffff;
}

.btn-dark {
  color: #ffffff;
  background: #111111;
}

.btn-dark:hover {
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(234, 81, 25, 0.18);
}

.btn-soft {
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
  border-color: rgba(234, 81, 25, 0.18);
}

.btn-soft:hover {
  color: #ffffff;
  background: var(--brand);
}

.btn-light {
  color: #111111;
  background: #ffffff;
}

.btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 900;
}

.text-link::after {
  content: "→";
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(90vh - var(--header-height));
  padding: 42px 0 44px;
  background:
    radial-gradient(circle at 82% 22%, rgba(234, 81, 25, 0.14), transparent 24rem),
    radial-gradient(circle at 18% 10%, rgba(234, 81, 25, 0.05), transparent 18rem),
    radial-gradient(circle at 50% 90%, rgba(17, 17, 17, 0.04), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(234, 81, 25, 0.045), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), #ffffff 100%);
  opacity: 0.8;
}

.hero-grid-bg,
.page-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.024) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 74%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 0.98fr) minmax(450px, 1.02fr);
  align-items: center;
  gap: 76px;
  padding: 28px 0 24px;
}

.software-service-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.software-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.platform-mockup {
  position: sticky;
  top: calc(var(--header-height) + var(--top-contact-height) + 26px);
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    #ffffff;
  box-shadow: var(--shadow-lg);
}

.mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px 18px;
  background: #111111;
}

.mockup-sidebar span {
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-sidebar span:first-child {
  background: var(--brand);
}

.mockup-main {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(234, 81, 25, 0.07), transparent 40%),
    #f8f9fb;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.mockup-topbar b {
  flex: 1;
  height: 20px;
  max-width: 180px;
  border-radius: 999px;
  background: #111111;
}

.mockup-topbar i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.mockup-metrics strong {
  min-height: 92px;
  padding: 18px;
  border-radius: 18px;
  color: #111111;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.mockup-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 190px;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
}

.mockup-chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--brand), rgba(234, 81, 25, 0.18));
  animation: barPulse 2.8s ease-in-out infinite;
}

.mockup-chart span:nth-child(1) { height: 44%; }
.mockup-chart span:nth-child(2) { height: 72%; animation-delay: 0.1s; }
.mockup-chart span:nth-child(3) { height: 56%; animation-delay: 0.2s; }
.mockup-chart span:nth-child(4) { height: 86%; animation-delay: 0.3s; }
.mockup-chart span:nth-child(5) { height: 62%; animation-delay: 0.4s; }

@keyframes barPulse {
  0%, 100% { opacity: 0.76; transform: scaleY(0.98); }
  50% { opacity: 1; transform: scaleY(1.04); }
}

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

.mockup-list p {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) 60px;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
}

.mockup-list b {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
}

.mockup-list span,
.mockup-list em {
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
}

.mockup-list em {
  background: rgba(234, 81, 25, 0.22);
}

.mockup-alert,
.mockup-floating {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.18);
}

.mockup-alert {
  right: 26px;
  top: 112px;
  background: var(--brand);
}

.mockup-floating {
  left: 108px;
  bottom: 30px;
}

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

.software-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.software-card span {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(17, 17, 17, 0.12);
  font-size: 48px;
  font-weight: 900;
}

.software-card b {
  display: inline-flex;
  margin-bottom: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
  font-size: 13px;
}

.software-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.98), rgba(28, 28, 28, 0.98));
}

.service-card div {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(234, 81, 25, 0.92);
}

.service-card h3,
.service-card p {
  color: #ffffff;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.software-platform-section {
  overflow: hidden;
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 81, 25, 0.07), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.software-platform-section .section-title {
  margin-bottom: 38px;
}

.software-platform-section .section-title > div {
  max-width: 760px;
}

.software-platform-section .section-title h2 {
  max-width: 820px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.08;
}

.software-platform-section .section-title p:not(.kicker) {
  max-width: 760px;
}

.service-support-section .section-title {
  margin-bottom: 48px;
}

.software-platform-section .software-layout {
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: 32px;
  align-items: stretch;
}

.software-platform-placeholder {
  position: relative;
  display: flex;
  min-height: 0;
  height: auto;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 50% 32%, rgba(234, 81, 25, 0.1), transparent 15rem),
    linear-gradient(145deg, #ffffff, #f4f6f8);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.software-platform-placeholder:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.22);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.1);
}

.software-platform-placeholder strong {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(229, 231, 235, 0.94);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  color: #6f747c;
  font-size: 14px;
  font-weight: 900;
}

.software-placeholder-frame {
  position: relative;
  z-index: 1;
  width: min(72%, 340px);
  aspect-ratio: 1.58;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 46%, rgba(234, 81, 25, 0.1), transparent 58%),
    rgba(255, 255, 255, 0.6);
}

.screen-outline {
  position: absolute;
  border: 2px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.08);
}

.desktop-screen {
  left: 12%;
  top: 18%;
  width: 58%;
  height: 46%;
  border-radius: 16px;
}

.mobile-screen {
  right: 14%;
  bottom: 16%;
  width: 22%;
  height: 52%;
  border-radius: 18px;
}

.placeholder-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(234, 81, 25, 0.08);
}

.placeholder-dot.dot-a { left: 22%; top: 28%; }
.placeholder-dot.dot-b { left: 50%; top: 28%; }
.placeholder-dot.dot-c { right: 22%; bottom: 28%; }

.placeholder-flow {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 81, 25, 0.48), transparent);
}

.placeholder-flow.flow-a {
  left: 22%;
  right: 24%;
  top: 45%;
}

.placeholder-flow.flow-b {
  left: 28%;
  right: 22%;
  bottom: 38%;
}

.mockup-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.software-platform-section .software-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
  align-self: stretch;
}

.software-platform-section .software-card {
  height: 100%;
  min-height: 196px;
  padding: 22px;
  border-radius: 22px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.software-platform-section .software-card span {
  right: 18px;
  top: 14px;
  font-size: 38px;
}

.software-platform-section .software-card b {
  margin-bottom: 22px;
  padding: 7px 10px;
  font-size: 12px;
}

.software-platform-section .software-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.24;
}

.software-platform-section .software-card p {
  font-size: 14px;
  line-height: 1.65;
}

.software-platform-section .software-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.42);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
}

.software-platform-section .software-card:hover span {
  color: rgba(234, 81, 25, 0.16);
}

.software-platform-section .software-card:hover b {
  background: rgba(234, 81, 25, 0.14);
}

.service-support-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(234, 81, 25, 0.12), transparent 21rem),
    radial-gradient(circle at 82% 76%, rgba(234, 81, 25, 0.07), transparent 18rem),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(410px, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.service-network-visual {
  position: sticky;
  top: calc(var(--header-height) + var(--top-contact-height) + 26px);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    #ffffff;
  box-shadow: var(--shadow-lg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-network-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.12);
}

.us-map-outline {
  position: absolute;
  left: 50%;
  top: 46px;
  width: min(88%, 500px);
  height: auto;
  transform: translateX(-50%);
}

.us-map-outline path {
  fill: rgba(246, 247, 249, 0.88);
  stroke: rgba(17, 17, 17, 0.14);
  stroke-width: 2;
}

.service-line-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-line-field .line {
  position: absolute;
  left: 50%;
  top: 190px;
  width: 190px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(234, 81, 25, 0.7), transparent);
  transform-origin: left center;
  animation: serviceFlow 2.8s ease-in-out infinite;
}

.service-line-field .line-a { transform: rotate(-152deg); }
.service-line-field .line-b { transform: rotate(-104deg); animation-delay: 0.2s; }
.service-line-field .line-c { transform: rotate(-34deg); animation-delay: 0.35s; }
.service-line-field .line-d { transform: rotate(8deg); animation-delay: 0.5s; }

@keyframes serviceFlow {
  0%, 100% { opacity: 0.22; filter: blur(0); }
  50% { opacity: 0.86; filter: blur(0.2px); }
}

.service-point {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(234, 81, 25, 0.18);
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
  cursor: default;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.service-point b {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: 140px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #ffffff;
  background: #111111;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.service-point:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(234, 81, 25, 0.42);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
}

.service-point:hover b {
  opacity: 1;
  transform: translate(-50%, 0);
}

.service-point.ca { left: 17%; top: 158px; }
.service-point.tx { left: 42%; top: 224px; }
.service-point.ga { left: 64%; top: 212px; }
.service-point.nj { left: 76%; top: 154px; }

.service-mini-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 128px;
  padding: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.service-mini-panel strong {
  display: block;
  margin-bottom: 14px;
  color: #111111;
  font-size: 18px;
}

.service-mini-panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  color: #555555;
  font-size: 14px;
}

.service-mini-panel p span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(234, 81, 25, 0.1);
}

.service-status-grid {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-status-grid span {
  padding: 12px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  color: #333333;
  background: rgba(246, 247, 249, 0.82);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.service-status-grid span:hover {
  transform: translateY(-3px);
  background: #ffffff;
}

.service-content {
  display: grid;
  gap: 18px;
}

.service-feature-list {
  display: grid;
  gap: 18px;
}

.service-support-section .service-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 12%, rgba(234, 81, 25, 0.1), transparent 11rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-support-section .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.42);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
}

.service-card .service-index {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(17, 17, 17, 0.1);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.service-support-section .service-card h3 {
  max-width: calc(100% - 70px);
  color: #111111;
}

.service-support-section .service-card p {
  margin: 0 0 18px;
  color: #555555;
  font-size: 15px;
}

.service-card .service-tags {
  display: flex;
  width: auto;
  height: auto;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

.service-tags b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
  font-size: 12px;
}

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

.service-stat-card {
  padding: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.34);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
}

.service-stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: #111111;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.service-stat-card span {
  color: #555555;
  font-size: 13px;
  font-weight: 800;
}

.core-advantages-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(234, 81, 25, 0.07), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.advantage-bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(292px, 1fr));
  gap: 24px;
}

.advantage-bento-card {
  position: relative;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(234, 81, 25, 0.09), transparent 12rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.advantage-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 81, 25, 0.28);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.11);
}

.advantage-bento-card.large {
  grid-column: 1;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(330px, 1fr) auto;
  min-height: 660px;
  background:
    radial-gradient(circle at 12% 10%, rgba(234, 81, 25, 0.12), transparent 17rem),
    radial-gradient(circle at 82% 68%, rgba(17, 17, 17, 0.05), transparent 16rem),
    linear-gradient(145deg, #ffffff, #f8f9fb);
}

.advantage-bento-card.lock,
.advantage-bento-card.saas {
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.66fr);
  min-height: 292px;
}

.advantage-bento-card.saas {
  background:
    radial-gradient(circle at 86% 18%, rgba(234, 81, 25, 0.1), transparent 12rem),
    linear-gradient(145deg, #151515, #242424);
}

.advantage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.advantage-bento-card.large .advantage-copy {
  justify-content: flex-start;
  max-width: 680px;
  padding: 40px 42px 18px;
}

.advantage-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.advantage-bento-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}

.advantage-bento-card.lock h3,
.advantage-bento-card.saas h3 {
  font-size: clamp(24px, 2vw, 31px);
}

.advantage-bento-card.large h3 {
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 900;
}

.advantage-bento-card p {
  margin: 0;
  color: #555555;
  font-size: 15.5px;
  line-height: 1.78;
}

.advantage-bento-card.saas h3,
.advantage-bento-card.saas p {
  color: #ffffff;
}

.advantage-bento-card.saas p {
  color: rgba(255, 255, 255, 0.72);
}

.advantage-visual {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 22px 24px 24px 0;
  background: transparent;
}

.advantage-bento-card.saas .advantage-visual {
  background: transparent;
}

.advantage-visual::before {
  display: none;
}

.advantage-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 214px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 32%, rgba(234, 81, 25, 0.08), transparent 13rem),
    linear-gradient(145deg, #ffffff, #f4f6f8);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 22px 50px rgba(17, 17, 17, 0.08);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.advantage-bento-card:hover .advantage-placeholder {
  transform: translateY(-3px);
  border-color: rgba(234, 81, 25, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 26px 58px rgba(17, 17, 17, 0.11);
}

.advantage-bento-card.large .advantage-visual {
  min-height: 360px;
  padding: 0 42px 18px;
}

.advantage-bento-card.large .advantage-placeholder {
  min-height: 360px;
  border-style: dashed;
  border-color: rgba(234, 81, 25, 0.22);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(234, 81, 25, 0.1), transparent 15rem),
    linear-gradient(145deg, #ffffff, #f5f6f8);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.advantage-placeholder strong {
  position: relative;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 24px);
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 999px;
  color: #7a7f88;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.advantage-bento-card.lock .advantage-placeholder strong,
.advantage-bento-card.saas .advantage-placeholder strong {
  min-height: 34px;
  padding: 0 13px;
  font-size: 12.5px;
}

.advantage-bento-card.lock .advantage-visual {
  padding: 22px 24px 22px 0;
}

.advantage-bento-card.lock .advantage-placeholder {
  background:
    linear-gradient(rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(66, 142, 255, 0.08), transparent 12rem),
    linear-gradient(145deg, #ffffff, #f3f6fa);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.advantage-bento-card.saas .advantage-visual {
  padding: 22px 24px 22px 0;
}

.advantage-bento-card.saas .advantage-placeholder {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(234, 81, 25, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.055);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.advantage-bento-card.saas .advantage-placeholder strong {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.advantage-placeholder-frame {
  position: relative;
  z-index: 2;
  width: min(58%, 220px);
  aspect-ratio: 1.45;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(234, 81, 25, 0.11), transparent 52%),
    rgba(255, 255, 255, 0.62);
}

.visual-saas .advantage-placeholder-frame {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.placeholder-node,
.placeholder-line,
.advantage-placeholder-frame i {
  position: absolute;
  display: block;
}

.placeholder-node {
  width: 13px;
  height: 13px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(234, 81, 25, 0.08);
}

.placeholder-node.node-a { left: 18%; top: 22%; }
.placeholder-node.node-b { right: 18%; top: 22%; }
.placeholder-node.node-c { left: 48%; bottom: 16%; }

.placeholder-line {
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 81, 25, 0.42), transparent);
}

.placeholder-line.line-a { top: 35%; }
.placeholder-line.line-b { top: 52%; }
.placeholder-line.line-c { top: 69%; }

.advantage-placeholder-frame i {
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(90deg, #f5c84c 0 24%, #ffffff 24% 38%, #9bd6ff 38% 58%, #ffffff 58% 68%, #ff9b7b 68%);
  transform: translate(-50%, -50%);
}

.advantage-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 42px 38px;
}

.advantage-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(234, 81, 25, 0.14);
  border-radius: 999px;
  color: #8f3217;
  background: rgba(234, 81, 25, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.adv-machine {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 138px;
  height: 206px;
  border: 3px solid #1d1d1d;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(90deg, #222 0 24%, #f8f9fb 24% 100%);
  box-shadow: 0 24px 34px rgba(17, 17, 17, 0.16);
  transform: translate(-50%, -50%);
}

.adv-machine span {
  position: absolute;
  left: 44px;
  width: 72px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(90deg, #f6d365 0 22%, #fff 22% 34%, #9ed8ff 34% 56%, #fff 56% 66%, #ff9f7f 66%);
}

.adv-machine span:nth-child(1) { top: 34px; }
.adv-machine span:nth-child(2) { top: 72px; }
.adv-machine span:nth-child(3) { top: 110px; }
.adv-machine span:nth-child(4) { top: 148px; }

.adv-machine i {
  position: absolute;
  left: 10px;
  top: 58px;
  width: 16px;
  height: 54px;
  border-radius: 999px;
  background: var(--brand);
}

.adv-camera {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 3px solid #111111;
  border-radius: 50%;
  background: #ffffff;
}

.adv-camera.c1 { left: 18%; top: 26%; }
.adv-camera.c2 { right: 18%; top: 24%; }
.adv-camera.c3 { right: 20%; bottom: 24%; }

.adv-scan {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: scanMove 2.8s ease-in-out infinite;
}

.adv-lock {
  position: absolute;
  left: 50%;
  width: 170px;
  height: 16px;
  border-radius: 999px;
  background: #111111;
  transform: translateX(-50%);
}

.adv-lock.top { top: 34%; }
.adv-lock.bottom { bottom: 30%; }

.adv-lock-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 4px solid var(--brand);
  border-radius: 18px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.adv-dashboard {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 50%;
  height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
}

.adv-dashboard b,
.adv-dashboard span {
  position: absolute;
  border-radius: 999px;
}

.adv-dashboard b {
  left: 20px;
  top: 22px;
  width: 74px;
  height: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.adv-dashboard span {
  bottom: 24px;
  width: 18px;
  background: linear-gradient(180deg, var(--brand), rgba(234, 81, 25, 0.28));
}

.adv-dashboard span:nth-child(2) { left: 26px; height: 52px; }
.adv-dashboard span:nth-child(3) { left: 62px; height: 82px; }
.adv-dashboard span:nth-child(4) { left: 98px; height: 64px; }

.adv-phone {
  position: absolute;
  right: 22px;
  bottom: 28px;
  width: 78px;
  height: 126px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.adv-phone b {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateX(-50%);
}

.adv-phone span {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.adv-phone span:nth-child(2) { top: 72px; }
.adv-phone span:nth-child(3) { top: 92px; }

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  max-width: 640px;
  margin-bottom: 20px;
  color: #111111;
  font-size: clamp(50px, 4.1vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy .kicker,
.hero-copy .hero-lead {
  color: #555555;
}

.hero-copy .kicker::before {
  background: var(--brand);
}

.hero-lead {
  margin-bottom: 14px;
  color: #222222;
  font-size: 21px;
  font-weight: 700;
}

.hero-body-copy {
  display: grid;
  max-width: 630px;
  gap: 12px;
  margin-bottom: 28px;
  color: #333333;
  font-size: 15.5px;
  line-height: 1.82;
}

.hero-body-copy p {
  margin: 0;
}

.hero .button-row {
  margin-top: 0;
}

.hero .button-row .btn {
  min-height: 54px;
  padding-inline: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span,
.tag-row span,
.scenario-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(234, 81, 25, 0.2);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.hero-capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: #666666;
  font-size: 14px;
  font-weight: 700;
}

.hero-capability-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-capability-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(234, 81, 25, 0.1);
}

.hero-proof-strip {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof-strip div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 560px;
  padding: 14px 16px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(16px);
}

.hero-proof-strip b {
  color: #111111;
}

.hero-proof-strip span {
  color: #555555;
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.hero-device-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 660px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 56% 56%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.22) 32%, transparent 68%),
    radial-gradient(ellipse at 60% 76%, rgba(234, 81, 25, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(246, 247, 249, 0.7), rgba(246, 247, 249, 0));
}

.hero-device-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 92%;
  height: 34%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(17, 17, 17, 0.16), transparent 66%);
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-device-card::after {
  content: "";
  position: absolute;
  inset: 54px 0 30px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 46%;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.78), transparent 72%);
  pointer-events: none;
}

.hero-combo-image {
  position: relative;
  z-index: 4;
  display: block;
  width: min(112%, 760px);
  max-height: 700px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 38px 32px rgba(0, 0, 0, 0.2));
  animation: heroProductFloat 5.8s ease-in-out infinite;
  transition: transform 240ms ease, filter 240ms ease;
}

.hero-device-card:hover .hero-combo-image {
  transform: translateY(-10px) scale(1.015);
  filter: drop-shadow(0 48px 38px rgba(0, 0, 0, 0.24));
}

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

.stage-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(234, 81, 25, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.stage-orbit.one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(234, 81, 25, 0.08), transparent 68%);
  animation: stageGlow 4.8s ease-in-out infinite;
}

.stage-orbit.two {
  width: 690px;
  height: 340px;
  border-color: rgba(17, 17, 17, 0.08);
  transform: rotate(-8deg);
}

@keyframes stageGlow {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 3px 8px;
  width: 212px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.09);
  opacity: 0;
  animation: floatingFeatureIn 640ms ease forwards;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-software-panel {
  position: absolute;
  left: 0;
  bottom: 88px;
  z-index: 3;
  width: 210px;
  min-height: 270px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(20px);
  transform: rotate(-2deg);
}

.hero-panel-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.hero-panel-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.16);
}

.hero-panel-top span:first-child {
  background: var(--brand);
}

.hero-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.hero-panel-metrics b {
  height: 44px;
  border-radius: 14px;
  background: rgba(246, 247, 249, 0.9);
}

.hero-panel-chart {
  display: flex;
  height: 94px;
  align-items: end;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(246, 247, 249, 0.8);
}

.hero-panel-chart i {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--brand), rgba(234, 81, 25, 0.16));
}

.hero-panel-chart i:nth-child(1) { height: 46%; }
.hero-panel-chart i:nth-child(2) { height: 72%; }
.hero-panel-chart i:nth-child(3) { height: 58%; }
.hero-panel-chart i:nth-child(4) { height: 86%; }

.hero-panel-list {
  display: grid;
  gap: 8px;
}

.hero-panel-list span {
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.09);
}

.hero-panel-list span:nth-child(2) {
  width: 78%;
}

.hero-panel-list span:nth-child(3) {
  width: 56%;
}

.floating-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 81, 25, 0.22);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
}

@keyframes floatingFeatureIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.floating-dashboard {
  position: absolute;
  right: 24px;
  bottom: 34px;
  z-index: 3;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(16, 16, 16, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(17, 17, 17, 0.18);
}

.floating-dashboard span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.floating-dashboard b {
  display: block;
  height: 9px;
  margin: 9px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(255, 255, 255, 0.24));
}

.floating-dashboard b:nth-child(3) {
  width: 72%;
}

.floating-dashboard b:nth-child(4) {
  width: 54%;
}

.floating-card strong {
  align-self: end;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
}

.floating-card span {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.floating-card .icon {
  grid-row: span 2;
  align-self: center;
  color: var(--brand);
}

.top-left {
  top: 58px;
  left: -6px;
  animation-delay: 160ms;
}

.top-right {
  top: 112px;
  right: -28px;
  animation-delay: 280ms;
}

.bottom-left {
  left: auto;
  right: -18px;
  bottom: 82px;
  animation-delay: 400ms;
}

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

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

.home-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.compact-product-stack {
  display: grid;
  gap: 18px;
}

.page-bento .featured {
  grid-column: span 2;
}

.product-showcase .featured {
  grid-column: auto;
  grid-row: auto;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    #ffffff;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.page-product-card .product-image-wrap {
  min-height: 360px;
}

.home-product-layout .product-card.featured {
  min-height: 100%;
}

.product-card.featured {
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 81, 25, 0.14), transparent 18rem),
    linear-gradient(145deg, #ffffff, #f7f8fa);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.round-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
}

.product-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 260px;
  margin: 8px 0 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f3f5f8 0%, #ffffff 100%);
}

.featured .product-image-wrap {
  min-height: 430px;
}

.product-image-wrap img {
  width: 78%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.14));
  transition: transform 220ms ease;
}

.product-card:hover .product-image-wrap img {
  transform: translateY(-8px) scale(1.02);
}

.product-card p {
  margin-bottom: 18px;
}

.compact-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 176px);
  min-height: 210px;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(234, 81, 25, 0.08), transparent 12rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.compact-product-copy {
  min-width: 0;
}

.compact-product-copy p {
  margin-bottom: 14px;
  font-size: 15px;
}

.compact-product-card .card-actions {
  margin-top: 4px;
  flex-wrap: wrap;
}

.compact-product-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 170px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3f5f8, #ffffff);
}

.compact-product-image img {
  width: min(82%, 150px);
  max-height: 178px;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.12));
  transition: transform 220ms ease;
}

.compact-product-card:hover .compact-product-image img {
  transform: translateY(-6px) scale(1.03);
}

.muted-link {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

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

.card-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 81, 25, 0.28);
  box-shadow: var(--shadow-md);
}

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

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 26px;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    #ffffff;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border: 1px solid rgba(234, 81, 25, 0.18);
  border-radius: 18px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
}

.feature-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(17, 17, 17, 0.18);
  font-size: 28px;
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
}

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

.feature-story-card {
  position: relative;
  display: grid;
  grid-template-rows: 196px minmax(0, 1fr);
  overflow: hidden;
  min-height: 410px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(234, 81, 25, 0.08), transparent 10rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 81, 25, 0.34);
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.11);
}

.feature-story-copy {
  position: relative;
  display: flex;
  min-height: 214px;
  flex-direction: column;
  padding: 22px;
}

.feature-story-copy .feature-index {
  top: auto;
  right: 20px;
  bottom: 18px;
  color: rgba(17, 17, 17, 0.1);
  font-size: 42px;
  line-height: 1;
}

.feature-story-copy p {
  margin-bottom: 0;
  padding-right: 6px;
  color: #555555;
  font-size: 14px;
  line-height: 1.78;
}

.feature-illustration {
  position: relative;
  height: 196px;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #eff1f5, #fbfbfc);
}

.feature-illustration::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
}

.visual-vending {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 94px;
  height: 138px;
  border: 3px solid #1e1e1e;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(90deg, #2d2d2d 0 24%, #f6f7f9 24% 100%);
  transform: translateX(-50%);
  box-shadow: 0 20px 26px rgba(17, 17, 17, 0.14);
}

.visual-vending span {
  position: absolute;
  left: 30px;
  width: 48px;
  height: 16px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #f6d365 0 22%, #ffffff 22% 35%, #a5d8ff 35% 58%, #ffffff 58% 68%, #ff9f7f 68%);
}

.visual-vending span:nth-child(1) { top: 24px; }
.visual-vending span:nth-child(2) { top: 52px; }
.visual-vending span:nth-child(3) { top: 80px; }
.visual-vending span:nth-child(4) { top: 108px; }

.visual-vending i {
  position: absolute;
  left: 8px;
  top: 38px;
  width: 13px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand);
}

.scan-frame {
  position: absolute;
  border: 2px solid var(--brand);
  border-radius: 12px;
  opacity: 0.85;
}

.scan-frame.one {
  left: calc(50% + 8px);
  top: 56px;
  width: 70px;
  height: 32px;
}

.scan-frame.two {
  left: calc(50% - 74px);
  top: 122px;
  width: 62px;
  height: 30px;
}

.scan-line {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: scanMove 2.8s ease-in-out infinite;
}

@keyframes scanMove {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(122px); opacity: 0.95; }
}

.camera-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #111111;
  border-radius: 50%;
  background: #ffffff;
}

.camera-dot.c1 { left: calc(50% - 76px); top: 34px; }
.camera-dot.c2 { left: calc(50% + 62px); top: 42px; }
.camera-dot.c3 { left: calc(50% + 82px); bottom: 54px; }

.camera-ray {
  position: absolute;
  height: 1px;
  background: rgba(234, 81, 25, 0.55);
  transform-origin: left center;
}

.camera-ray.r1 { left: calc(50% - 68px); top: 48px; width: 86px; transform: rotate(34deg); }
.camera-ray.r2 { left: calc(50% + 64px); top: 55px; width: 88px; transform: rotate(145deg); }
.camera-ray.r3 { left: calc(50% + 88px); bottom: 62px; width: 96px; transform: rotate(205deg); }

.lock-bar {
  position: absolute;
  left: calc(50% - 78px);
  width: 156px;
  height: 16px;
  border-radius: 999px;
  background: #111111;
}

.lock-bar.top { top: 54px; }
.lock-bar.bottom { bottom: 50px; }

.lock-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 4px solid var(--brand);
  border-radius: 16px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.phone-card,
.dashboard-card {
  position: absolute;
  right: 34px;
  bottom: 38px;
  width: 84px;
  height: 136px;
  border: 3px solid #111111;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 24px rgba(17, 17, 17, 0.12);
}

.phone-card b {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateX(-50%);
}

.phone-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
}

.phone-card span:nth-child(2) { top: 70px; }
.phone-card span:nth-child(3) { top: 90px; }

.pay-chip {
  position: absolute;
  left: 34px;
  top: 48px;
  width: 72px;
  height: 48px;
  border-radius: 14px;
  background: #111111;
  box-shadow: 0 14px 22px rgba(17, 17, 17, 0.14);
}

.dashboard-card {
  right: 22px;
  width: 128px;
  height: 108px;
  border-radius: 20px;
}

.dashboard-card b,
.dashboard-card span {
  position: absolute;
  left: 16px;
  border-radius: 999px;
}

.dashboard-card b {
  top: 18px;
  width: 50px;
  height: 10px;
  background: #111111;
}

.dashboard-card span {
  bottom: 18px;
  width: 14px;
  background: var(--brand);
}

.dashboard-card span:nth-child(2) { height: 42px; left: 18px; }
.dashboard-card span:nth-child(3) { height: 62px; left: 48px; }
.dashboard-card span:nth-child(4) { height: 30px; left: 78px; }

.status-pill {
  position: absolute;
  left: 30px;
  top: 44px;
  width: 94px;
  height: 34px;
  border-radius: 999px;
  background: #111111;
}

.shelf-row {
  position: absolute;
  left: calc(50% - 98px);
  width: 196px;
  height: 28px;
  border-bottom: 4px solid #111111;
  background:
    linear-gradient(90deg, #f6d365 0 13%, transparent 13% 20%, #a5d8ff 20% 34%, transparent 34% 42%, #ff9f7f 42% 56%, transparent 56% 64%, #c8f7dc 64% 78%, transparent 78%);
}

.shelf-row.row-a { top: 54px; }
.shelf-row.row-b { top: 102px; }
.shelf-row.row-c { top: 150px; }

.growth-arrow {
  position: absolute;
  right: 34px;
  top: 56px;
  width: 74px;
  height: 52px;
  border-right: 4px solid var(--brand);
  border-top: 4px solid var(--brand);
  border-radius: 0 18px 0 0;
}

.growth-arrow span {
  position: absolute;
  right: -9px;
  top: -10px;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--brand);
  border-right: 4px solid var(--brand);
  transform: rotate(45deg);
}

.cooling-flow {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 46px;
  border: 2px solid rgba(234, 81, 25, 0.42);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  animation: coolingMove 2.6s ease-in-out infinite;
}

.cooling-flow.flow-a { top: 62px; }
.cooling-flow.flow-b { bottom: 50px; transform: scaleX(-1); animation-delay: 0.35s; }

@keyframes coolingMove {
  0%, 100% { opacity: 0.38; }
  50% { opacity: 0.9; }
}

.snow-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #a5d8ff;
  box-shadow: 0 0 0 8px rgba(165, 216, 255, 0.16);
}

.snow-dot.s1 { left: 38px; top: 58px; }
.snow-dot.s2 { right: 46px; top: 98px; }
.snow-dot.s3 { left: 68px; bottom: 48px; }

.app-chip {
  left: auto;
  right: 116px;
  top: 58px;
  width: 58px;
  height: 34px;
  background: var(--brand);
}

.upload-card {
  position: absolute;
  right: 34px;
  bottom: 42px;
  display: grid;
  width: 128px;
  min-height: 100px;
  gap: 10px;
  padding: 16px;
  border: 3px solid #111111;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 24px rgba(17, 17, 17, 0.12);
}

.upload-card b {
  color: var(--brand);
  font-size: 22px;
}

.upload-card span {
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
}

.upload-card i {
  width: 36px;
  height: 24px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, var(--brand), rgba(234, 81, 25, 0.22));
}

.clock-ring {
  position: absolute;
  left: 38px;
  top: 44px;
  width: 56px;
  height: 56px;
  border: 4px solid rgba(17, 17, 17, 0.88);
  border-radius: 50%;
}

.clock-ring::before,
.clock-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: var(--brand);
  transform-origin: left center;
}

.clock-ring::before {
  width: 20px;
  height: 4px;
  transform: rotate(0deg);
}

.clock-ring::after {
  width: 16px;
  height: 4px;
  transform: rotate(-70deg);
}

.service-headset {
  position: absolute;
  right: 44px;
  bottom: 54px;
  width: 112px;
  height: 112px;
  border: 3px solid #111111;
  border-radius: 50% 50% 44% 44%;
  background: #ffffff;
}

.service-headset b {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 28px;
  height: 36px;
  border: 8px solid var(--brand);
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
}

.service-headset span,
.service-headset i {
  position: absolute;
  top: 56px;
  width: 18px;
  height: 30px;
  border-radius: 8px;
  background: #111111;
}

.service-headset span { left: 18px; }
.service-headset i { right: 18px; }

.service-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 9px rgba(234, 81, 25, 0.12);
}

.service-node.n1 { left: 48px; top: 54px; }
.service-node.n2 { left: 84px; bottom: 58px; }
.service-node.n3 { right: 42px; top: 52px; }

.process-section {
  background: #ffffff;
}

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

.process-story-card {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 28px 28px 0;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 81, 25, 0.26);
  box-shadow: var(--shadow-md);
}

.process-step-label {
  margin-bottom: 10px;
  color: #111111;
  font-size: 18px;
  font-weight: 900;
}

.process-story-card h3 {
  margin-bottom: 6px;
}

.process-story-card p {
  min-height: 58px;
  margin-bottom: 18px;
}

.process-num {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(17, 17, 17, 0.08);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.process-illustration {
  position: relative;
  height: 310px;
  margin: 0 -8px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #eef0f3, #fbfbfc);
}

.process-placeholder-media {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(17, 17, 17, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.78), transparent 12rem),
    linear-gradient(135deg, #f2f3f5, #fbfbfc);
}

.process-placeholder-media::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
}

.process-placeholder-media span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 999px;
  color: #8a8f98;
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
}

.process-machine {
  position: absolute;
  left: 18%;
  bottom: 34px;
  width: 112px;
  height: 206px;
  border: 3px solid #1a1a1a;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(90deg, #1f1f1f 0 22%, #f8f9fb 22% 100%);
  box-shadow: 0 18px 22px rgba(17, 17, 17, 0.16);
}

.process-2 .process-machine {
  transform: translateX(-10px);
}

.process-2 .process-machine::after {
  content: "";
  position: absolute;
  right: -54px;
  top: 14px;
  width: 50px;
  height: 166px;
  border: 3px solid #1a1a1a;
  border-left: 0;
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.6);
  transform: skewY(-8deg);
}

.machine-screen {
  position: absolute;
  left: 8px;
  top: 46px;
  width: 14px;
  height: 46px;
  border-radius: 8px;
  background: var(--brand);
}

.machine-shelves {
  position: absolute;
  left: 34px;
  top: 28px;
  display: grid;
  width: 62px;
  gap: 12px;
}

.machine-shelves span {
  height: 20px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #f6d365 0 22%, #ffffff 22% 34%, #9dd7ff 34% 56%, #ffffff 56% 66%, #ff9f7f 66%);
  box-shadow: inset 0 -3px 0 rgba(17, 17, 17, 0.08);
}

.machine-base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  background: #2a2a2a;
}

.process-person {
  position: absolute;
  right: 18%;
  bottom: 44px;
  width: 88px;
  height: 176px;
  animation: personFloat 3.4s ease-in-out infinite;
}

.process-person b {
  position: absolute;
  left: 34px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111111;
}

.process-person i {
  position: absolute;
  left: 22px;
  top: 34px;
  width: 48px;
  height: 76px;
  border-radius: 24px 24px 18px 18px;
  background: #3c3c3c;
  transform: rotate(-12deg);
}

.process-person .arm {
  position: absolute;
  left: 0;
  top: 68px;
  width: 66px;
  height: 14px;
  border-radius: 999px;
  background: #3c3c3c;
  transform: rotate(-18deg);
  transform-origin: right center;
}

.process-2 .process-person .arm {
  left: -18px;
  top: 62px;
  transform: rotate(-28deg);
}

.process-3 .process-person {
  right: 12%;
}

.process-person .leg {
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 72px;
  border-radius: 999px;
  background: #f8f9fb;
  border: 2px solid #111111;
}

.process-person .leg.one {
  left: 32px;
  transform: rotate(14deg);
}

.process-person .leg.two {
  left: 58px;
  transform: rotate(-18deg);
}

.process-item {
  position: absolute;
  right: 25%;
  top: 120px;
  width: 30px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6d365);
  border: 2px solid #111111;
}

.process-1 .process-item {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  transform: translate(30px, -34px);
}

.process-3 .process-item {
  right: 18%;
  top: 88px;
  background: #ffffff;
}

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

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

.scenario-card,
.news-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius);
  background: #ffffff;
}

.placeholder-media {
  position: relative;
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #8a8f98;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #eef0f4, #fbfbfc);
  font-weight: 900;
}

.placeholder-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
}

.placeholder-media span {
  position: relative;
  z-index: 1;
}

.scenario-card:hover .placeholder-media,
.news-card:hover .placeholder-media {
  transform: scale(1.015);
}

.scenario-content,
.news-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.trust-section {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 16%, rgba(234, 81, 25, 0.2), transparent 28rem),
    linear-gradient(180deg, #101010 0%, #171717 100%);
}

.trust-section .section-title h2,
.trust-section .section-title p {
  color: #ffffff;
}

.trust-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-mosaic {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.trust-visual-card {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 70% 18%, rgba(234, 81, 25, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.trust-visual-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.trust-visual-card img {
  position: relative;
  z-index: 1;
  width: min(70%, 410px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(0, 0, 0, 0.32));
}

.trust-visual-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(16, 16, 16, 0.68);
  backdrop-filter: blur(16px);
}

.trust-visual-copy span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-weight: 900;
}

.trust-visual-copy strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
}

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

.trust-data-card {
  display: flex;
  min-height: 174px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.trust-data-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 81, 25, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.trust-data-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

.trust-data-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.16;
}

.trust-data-card strong::first-letter {
  color: #ffffff;
}

.about-video-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 81, 25, 0.12), transparent 24rem),
    radial-gradient(circle at 14% 12%, rgba(17, 17, 17, 0.04), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.about-video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: 56px;
}

.about-video-copy {
  max-width: 640px;
}

.about-video-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
}

.about-video-lead {
  color: #202020;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.7;
}

.about-video-copy p:not(.kicker) {
  color: #555555;
  line-height: 1.85;
}

.about-video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.about-video-points span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(234, 81, 25, 0.2);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.about-video-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 12%, rgba(234, 81, 25, 0.11), transparent 18rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.12);
}

.about-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #111111;
  object-fit: cover;
}

.about-video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px 2px;
}

.about-video-caption strong {
  color: #111111;
  font-size: 16px;
}

.about-video-caption span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.about-tech-capability-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(234, 81, 25, 0.055), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.about-tech-heading {
  display: grid;
  width: 100%;
  max-width: 860px;
  justify-items: center;
  margin: 0 auto clamp(34px, 4vw, 50px);
  text-align: center;
}

.about-tech-heading h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-tech-heading p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #5a616b;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.85;
}

.about-tech-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.about-tech-system-card,
.about-tech-card {
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.about-tech-system-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 3vw, 42px);
  background:
    radial-gradient(circle at 88% 8%, rgba(234, 81, 25, 0.1), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #fff8f4 100%);
}

.about-tech-system-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(234, 81, 25, 0.06);
  pointer-events: none;
}

.about-tech-system-card h3,
.about-tech-system-card p {
  position: relative;
  z-index: 1;
}

.about-tech-system-card h3 {
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

.about-tech-system-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.82;
}

.about-tech-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.about-tech-card {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  padding: 24px;
}

.about-tech-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(234, 81, 25, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.about-tech-card h3 {
  margin: 18px 0 12px;
  color: #111111;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1.18;
}

.about-tech-card p {
  margin: 0;
  color: #535b66;
  font-size: 15px;
  line-height: 1.75;
}

.about-tech-system-card:hover,
.about-tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.24);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.07);
}

.about-tech-tags,
.about-manufacturing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-tech-tags span,
.about-manufacturing-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #3f4650;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .about-tech-layout {
    grid-template-columns: 1fr;
  }

  .about-tech-system-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .about-tech-heading {
    margin-bottom: 28px;
  }

  .about-tech-heading h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .about-tech-card-grid {
    grid-template-columns: 1fr;
  }

  .about-tech-card {
    min-height: 240px;
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .about-tech-system-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .about-tech-card {
    border-radius: 24px;
  }
}

/* Resource center content pages */
.resource-hub-page .resource-featured-section .section-title > div,
.resource-hub-page .resource-directory-section .section-title > div {
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.resource-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.resource-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.resource-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.resource-guide-section {
  background: #ffffff;
}

.resource-guide-list {
  display: grid;
}

.resource-guide-row {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding: 62px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
}

.resource-guide-row:first-child {
  padding-top: 0;
}

.resource-guide-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resource-guide-row.is-reverse .resource-guide-media {
  order: 2;
}

.resource-guide-media {
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 74% 18%, rgba(234, 80, 26, 0.11), transparent 28%),
    #f5f6f8;
}

.resource-guide-media figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
}

.resource-guide-media img {
  width: 88%;
  height: 410px;
  object-fit: contain;
}

.resource-guide-media.is-comparison {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 24px;
}

.resource-guide-media.is-comparison figure {
  align-content: center;
  min-width: 0;
  padding: 12px;
}

.resource-guide-media.is-comparison figure + figure {
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}

.resource-guide-media.is-comparison img {
  width: 100%;
  height: 330px;
}

.resource-guide-media figcaption {
  margin-top: 14px;
  color: #5f646d;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.resource-guide-copy h2 {
  max-width: 680px;
  margin: 0;
  color: #111111;
  font-size: 38px;
  line-height: 1.18;
}

.resource-guide-intro {
  max-width: 720px;
  margin: 18px 0 28px;
  color: #5f646d;
  line-height: 1.75;
}

.resource-guide-points {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.09);
  list-style: none;
}

.resource-guide-points li {
  display: grid;
  grid-template-columns: minmax(112px, 0.28fr) minmax(0, 0.72fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.resource-guide-points strong {
  color: #18191b;
  font-size: 14px;
}

.resource-guide-points span {
  color: #676c74;
  font-size: 14px;
  line-height: 1.65;
}

.resource-case-section {
  background: #f6f7f8;
}

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

.resource-case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.resource-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 80, 26, 0.28);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
}

.resource-case-card figure {
  position: relative;
  min-height: 272px;
  margin: 0;
  overflow: hidden;
  background: #eceef1;
}

.resource-case-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-case-card figure span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-size: 11px;
  font-weight: 900;
}

.resource-case-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.resource-case-card > div > p:first-child {
  margin: 0 0 9px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-case-card h2 {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.28;
}

.resource-case-rule {
  width: 32px;
  height: 2px;
  margin: 18px 0;
  background: var(--brand);
}

.resource-case-card > div > p:last-child {
  margin: 0;
  color: #636871;
  font-size: 13px;
  line-height: 1.7;
}

.resource-download-section {
  background: #f6f7f8;
}

.resource-download-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  max-width: 1040px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.07);
}

.resource-download-preview {
  display: grid;
  min-height: 390px;
  padding: 52px;
  place-items: center;
  align-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)),
    repeating-linear-gradient(45deg, #e7e9ec 0 12px, #ffffff 12px 24px);
}

.resource-download-preview img {
  width: min(100%, 320px);
  max-height: 120px;
  object-fit: contain;
}

.resource-download-preview span {
  margin-top: 32px;
  color: #737882;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-download-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}

.resource-download-copy h2 {
  margin: 0;
  color: #111111;
  font-size: 36px;
}

.resource-download-copy > p {
  margin: 16px 0 24px;
  color: #626770;
  line-height: 1.75;
}

.resource-download-copy dl {
  display: grid;
  margin: 0 0 28px;
}

.resource-download-copy dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.resource-download-copy dt {
  color: #858a92;
  font-size: 13px;
}

.resource-download-copy dd {
  margin: 0;
  color: #272a2f;
  font-size: 13px;
  font-weight: 850;
}

.resource-download-copy .btn {
  align-self: flex-start;
}

.resource-insights-section {
  background: #f6f7f8;
}

.resource-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.resource-insight-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.05);
}

.resource-insight-card.is-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.resource-insight-card figure {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #e8eaed;
}

.resource-insight-card.is-featured figure {
  min-height: 100%;
}

.resource-insight-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-insight-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.resource-insight-card.is-featured .resource-insight-copy {
  padding: 42px;
}

.resource-insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.resource-insight-meta span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.resource-insight-meta time {
  color: #858a92;
  font-size: 12px;
  font-weight: 800;
}

.resource-insight-copy h2 {
  margin: 0;
  color: #111111;
  font-size: 27px;
  line-height: 1.3;
}

.resource-insight-card.is-featured h2 {
  font-size: 34px;
}

.resource-insight-copy > p {
  margin: 16px 0 24px;
  color: #626770;
  line-height: 1.75;
}

.resource-insight-details {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.resource-insight-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.resource-insight-details summary:focus {
  outline: none;
}

.resource-insight-details summary:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.resource-insight-details summary b {
  position: relative;
  width: 18px;
  height: 18px;
}

.resource-insight-details summary b::before,
.resource-insight-details summary b::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.resource-insight-details summary b::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.resource-insight-details[open] summary b::after {
  transform: rotate(0deg);
}

.resource-insight-close-label {
  display: none;
}

.resource-insight-details[open] .resource-insight-read-label {
  display: none;
}

.resource-insight-details[open] .resource-insight-close-label {
  display: inline;
}

.resource-insight-details > div {
  display: grid;
  gap: 22px;
  padding-top: 24px;
}

.resource-insight-details section {
  padding-left: 16px;
  border-left: 2px solid rgba(234, 80, 26, 0.28);
}

.resource-insight-details h3 {
  margin: 0 0 7px;
  color: #22252a;
  font-size: 17px;
}

.resource-insight-details h4 {
  margin: 0 0 7px;
  color: #31353b;
  font-size: 15px;
  font-weight: 850;
}

.resource-insight-details p {
  margin: 0;
  color: #676c74;
  font-size: 14px;
  line-height: 1.72;
}

.resource-insight-details p + p {
  margin-top: 12px;
}

.resource-insight-details p a {
  color: #006dca;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-insight-card.is-expanded {
  grid-column: 1 / -1;
  display: block;
  scroll-margin-top: calc(var(--header-height, 78px) + var(--top-contact-height, 38px) + 74px);
}

.resource-insight-card.is-expanded figure,
.resource-insight-card.is-featured.is-expanded figure {
  width: 100%;
  height: 440px;
  min-height: 0;
}

.resource-insight-card.is-expanded .resource-insight-copy,
.resource-insight-card.is-featured.is-expanded .resource-insight-copy {
  padding: 48px;
}

.resource-insight-card.is-expanded .resource-insight-meta,
.resource-insight-card.is-expanded .resource-insight-copy > h2,
.resource-insight-card.is-expanded .resource-insight-copy > p,
.resource-insight-card.is-expanded .resource-insight-details {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
}

.resource-insight-card.is-expanded .resource-insight-copy > h2 {
  font-size: 38px;
}

.resource-insight-card.is-expanded .resource-insight-copy > p {
  margin-top: 18px;
  margin-bottom: 28px;
  font-size: 16px;
}

.resource-insight-card.is-expanded .resource-insight-details {
  margin-top: 0;
  padding-top: 22px;
}

.resource-insight-card.is-expanded .resource-insight-article {
  gap: 0;
  padding-top: 34px;
}

.resource-insight-card.is-expanded .resource-insight-article section {
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 0;
}

.resource-insight-card.is-expanded .resource-insight-article section + section {
  padding-top: 30px;
}

.resource-insight-card.is-expanded .resource-insight-article section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resource-insight-card.is-expanded .resource-insight-article h3 {
  margin-bottom: 12px;
  color: #111111;
  font-size: 22px;
}

.resource-insight-card.is-expanded .resource-insight-article h4 {
  margin-bottom: 10px;
  color: #272a2f;
  font-size: 18px;
}

.resource-insight-card.is-expanded .resource-insight-article p {
  color: #555b64;
  font-size: 16px;
  line-height: 1.85;
}

.resource-faq-section {
  background: #f6f7f8;
}

html:has(.resource-faq-page),
body:has(.resource-faq-page),
#app:has(.resource-faq-page) {
  overflow-x: clip;
  overflow-y: visible;
}

.resource-faq-page-grid {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 46px;
}

.resource-faq-page-grid .resource-faq-nav {
  position: sticky;
  top: calc(var(--header-height, 78px) + var(--top-contact-height, 38px) + 24px);
  align-self: start;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  padding: 12px;
  border-radius: 14px;
}

.resource-faq-page-grid .resource-faq-nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-width: 0;
  padding: 11px 10px;
  font-size: 12px;
  line-height: 1.4;
}

.resource-faq-page-grid .resource-faq-nav a span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
}

.resource-faq-page-grid .resource-faq-nav a.is-active {
  color: var(--brand);
  background: rgba(234, 80, 26, 0.08);
}

.resource-faq-categories {
  gap: 56px;
}

.resource-faq-categories .resource-faq-category {
  scroll-margin-top: calc(var(--header-height, 78px) + var(--top-contact-height, 38px) + 72px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.resource-faq-category > header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.resource-faq-category > header > span {
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
}

.resource-faq-category > header p {
  margin: 0 0 5px;
  color: #858a92;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-faq-category > header h2 {
  margin: 0;
  color: #111111;
  font-size: 29px;
}

.resource-faq-category > header b {
  color: #777c84;
  font-size: 12px;
  white-space: nowrap;
}

.resource-faq-category .faq-stack {
  gap: 10px;
}

.resource-faq-category .faq-item {
  border-radius: 12px;
  box-shadow: none;
}

.resource-faq-category .faq-item summary {
  padding: 18px 20px;
  font-size: 14px;
}

.resource-faq-category .faq-answer {
  padding: 0 20px 20px;
}

.resource-faq-category .faq-answer p {
  color: #626770;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .resource-guide-row {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: 34px;
  }

  .resource-guide-media {
    min-height: 400px;
  }

  .resource-guide-media img {
    height: 350px;
  }

  .resource-guide-media.is-comparison {
    grid-template-columns: 1fr;
  }

  .resource-guide-media.is-comparison figure + figure {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
  }

  .resource-guide-media.is-comparison img {
    height: 180px;
  }

  .resource-case-card {
    grid-template-columns: 1fr;
  }

  .resource-case-card figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .resource-insight-card.is-featured {
    grid-template-columns: 1fr;
  }

  .resource-insight-card.is-featured figure {
    min-height: 0;
    aspect-ratio: 16 / 8;
  }

  .resource-faq-page-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .resource-guide-row,
  .resource-download-card {
    grid-template-columns: 1fr;
  }

  .resource-guide-row {
    gap: 28px;
    padding: 46px 0;
  }

  .resource-guide-row.is-reverse .resource-guide-media {
    order: 0;
  }

  .resource-guide-media {
    min-height: 350px;
  }

  .resource-guide-media img {
    height: 310px;
  }

  .resource-guide-copy h2 {
    font-size: 31px;
  }

  .resource-case-grid,
  .resource-insight-grid {
    grid-template-columns: 1fr;
  }

  .resource-insight-card.is-featured {
    grid-column: auto;
  }

  .resource-insight-card.is-expanded figure,
  .resource-insight-card.is-featured.is-expanded figure {
    height: 320px;
  }

  .resource-insight-card.is-expanded .resource-insight-copy,
  .resource-insight-card.is-featured.is-expanded .resource-insight-copy {
    padding: 28px;
  }

  .resource-insight-card.is-expanded .resource-insight-copy > h2 {
    font-size: 30px;
  }

  .resource-insight-card.is-expanded .resource-insight-copy > p,
  .resource-insight-card.is-expanded .resource-insight-article p {
    font-size: 15px;
  }

  .resource-download-preview {
    min-height: 280px;
    padding: 38px;
  }

  .resource-download-copy {
    padding: 34px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
  }

  .resource-faq-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .resource-faq-page-grid .resource-faq-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px;
  }

  .resource-faq-page-grid .resource-faq-nav a {
    grid-template-columns: 1fr;
    min-width: 168px;
  }

  .resource-faq-category > header {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .resource-faq-category > header b {
    display: none;
  }
}

@media (max-width: 520px) {
  .resource-guide-media {
    min-height: 300px;
  }

  .resource-guide-media img {
    height: 270px;
  }

  .resource-guide-media.is-comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 260px;
    padding: 12px;
  }

  .resource-guide-media.is-comparison figure {
    padding: 8px;
  }

  .resource-guide-media.is-comparison figure + figure {
    border-top: 0;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
  }

  .resource-guide-media.is-comparison img {
    height: 190px;
  }

  .resource-guide-points li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .resource-case-card > div,
  .resource-insight-copy,
  .resource-insight-card.is-featured .resource-insight-copy {
    padding: 22px;
  }

  .resource-case-card h2 {
    font-size: 22px;
  }

  .resource-insight-card figure,
  .resource-insight-card.is-featured figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .resource-insight-card.is-expanded figure,
  .resource-insight-card.is-featured.is-expanded figure {
    height: auto;
    aspect-ratio: 16 / 9;
    background: #eef0f3;
  }

  .resource-insight-card.is-expanded figure img,
  .resource-insight-card.is-featured.is-expanded figure img {
    object-fit: contain;
  }

  .resource-insight-copy h2,
  .resource-insight-card.is-featured h2 {
    font-size: 24px;
  }

  .resource-download-copy {
    padding: 24px;
  }

  .resource-download-copy h2 {
    font-size: 30px;
  }

  .resource-download-copy dl div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .resource-download-copy .btn {
    align-self: stretch;
  }

  .resource-faq-category > header h2 {
    font-size: 24px;
  }

  .resource-faq-category .faq-item summary {
    padding: 16px;
  }

  .resource-faq-category .faq-answer {
    padding: 0 16px 18px;
  }
}

.about-manufacturing-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(234, 81, 25, 0.05), transparent 24rem),
    linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.about-manufacturing-heading {
  display: grid;
  width: 100%;
  max-width: 860px;
  justify-items: center;
  margin: 0 auto clamp(34px, 4vw, 50px);
  text-align: center;
}

.about-manufacturing-heading h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-manufacturing-heading p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #5a616b;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.85;
}

.about-manufacturing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.about-manufacturing-system-card,
.about-manufacturing-card {
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.about-manufacturing-system-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 3vw, 42px);
  background:
    radial-gradient(circle at 14% 12%, rgba(234, 81, 25, 0.11), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fff8f4 100%);
}

.about-manufacturing-system-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(234, 81, 25, 0.06);
  pointer-events: none;
}

.about-manufacturing-system-card h3,
.about-manufacturing-system-card p,
.about-manufacturing-flow {
  position: relative;
  z-index: 1;
}

.about-manufacturing-system-card h3 {
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

.about-manufacturing-system-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.82;
}

.about-manufacturing-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}

.about-manufacturing-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(234, 81, 25, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #24272d;
  font-size: 13px;
  font-weight: 800;
}

.about-manufacturing-flow i {
  font-style: normal;
  color: rgba(234, 81, 25, 0.52);
  font-weight: 900;
}

.about-manufacturing-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.about-manufacturing-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  padding: 24px;
}

.about-manufacturing-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(234, 81, 25, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.about-manufacturing-card h3 {
  margin: 18px 0 12px;
  color: #111111;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1.18;
}

.about-manufacturing-card p {
  margin: 0;
  color: #535b66;
  font-size: 15px;
  line-height: 1.75;
}

.about-manufacturing-system-card:hover,
.about-manufacturing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.24);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.07);
}

.about-global-service-section {
  background:
    radial-gradient(circle at 84% 14%, rgba(234, 81, 25, 0.06), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

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

.about-global-service-card {
  position: relative;
  min-height: 156px;
  padding: 24px 70px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.about-global-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.3);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.07);
}

.about-global-service-card:first-child {
  border-color: rgba(234, 81, 25, 0.42);
}

.about-global-service-card > span {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(17, 17, 17, 0.1);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.about-global-service-card h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(21px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.2;
}

.about-global-service-card:first-child h3 {
  color: var(--brand);
}

.about-global-service-card p {
  margin: 0;
  color: #535b66;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .about-manufacturing-layout {
    grid-template-columns: 1fr;
  }

  .about-manufacturing-system-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .about-manufacturing-heading {
    margin-bottom: 28px;
  }

  .about-manufacturing-heading h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .about-manufacturing-card-grid {
    grid-template-columns: 1fr;
  }

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

  .about-manufacturing-card {
    min-height: 238px;
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .about-manufacturing-flow {
    gap: 8px;
  }

  .about-manufacturing-flow i {
    display: none;
  }
}

@media (max-width: 430px) {
  .about-manufacturing-system-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .about-manufacturing-card {
    border-radius: 24px;
  }

  .about-tech-tags span,
  .about-manufacturing-tags span {
    min-height: 32px;
  }

  .about-global-service-card {
    min-height: 0;
    padding: 22px 62px 22px 22px;
  }
}

.about-entry-grid,
.story-grid,
.product-detail-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 58px;
}

.product-detail-copy,
.product-detail-image,
.contact-form,
.contact-aside,
.faq-categories,
.faq-category,
.comparison-wrap {
  min-width: 0;
}

.about-entry-copy {
  max-width: 560px;
}

.about-entry-copy .btn {
  margin-top: 12px;
}

.about-entry-media,
.story-visual,
.product-detail-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.82);
  border-radius: 36px;
  background:
    radial-gradient(circle at 72% 24%, rgba(234, 81, 25, 0.12), transparent 19rem),
    linear-gradient(145deg, #f2f4f7, #ffffff);
  box-shadow: var(--shadow-lg);
}

.about-entry-media img,
.story-visual img,
.product-detail-image img {
  width: min(68%, 410px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.16));
}

.glass-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
}

.glass-note span {
  color: var(--muted);
  font-size: 14px;
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 52px;
  align-items: start;
}

.faq-stack {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary b {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item summary b::before,
.faq-item summary b::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.faq-item summary b::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary b::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin-bottom: 0;
}

.cta-section {
  padding-top: 80px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 38px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(234, 81, 25, 0.32), transparent 24rem),
    linear-gradient(145deg, #101010, #181818);
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.16);
}

.cta-panel h2,
.cta-panel p {
  color: #ffffff;
}

.cta-panel p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel .kicker {
  justify-content: center;
}

.cta-panel .kicker::before {
  background: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 82% 16%, rgba(234, 81, 25, 0.13), transparent 27rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.page-hero .container {
  position: relative;
  max-width: 980px;
}

.page-hero p:not(.kicker) {
  max-width: 760px;
  font-size: 20px;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.comparison-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #ffffff;
  background: #111111;
  font-size: 15px;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  color: var(--text);
  font-weight: 900;
  background: #fafafa;
}

.product-detail-hero {
  padding: 78px 0 52px;
  background:
    radial-gradient(circle at 74% 20%, rgba(234, 81, 25, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.product-detail-copy p {
  font-size: 20px;
}

.key-strip-section {
  padding: 40px 0 84px;
}

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

.key-strip span {
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(234, 81, 25, 0.16);
  border-radius: 18px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.07);
  font-weight: 900;
}

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

.spec-grid div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 20px;
  background: #ffffff;
}

.spec-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--subtle);
  font-size: 14px;
  font-weight: 800;
}

.spec-grid strong {
  display: block;
  color: var(--text);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-list {
  display: grid;
  gap: 24px;
}

.solution-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.solution-card .placeholder-media {
  min-height: 260px;
  border-radius: 22px;
}

.solution-card .btn {
  margin-top: 10px;
}

.story-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.story-card,
.content-panel {
  padding: 36px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.story-visual {
  min-height: 440px;
}

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

.faq-page-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: calc(var(--header-height) + var(--top-contact-height) + 24px);
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}

.faq-nav a:hover {
  color: var(--brand);
  background: var(--bg-warm);
}

.faq-categories {
  display: grid;
  gap: 32px;
}

.faq-category {
  scroll-margin-top: calc(var(--header-height) + var(--top-contact-height) + 22px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

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

.news-card .placeholder-media {
  min-height: 260px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: start;
}

.contact-form {
  padding: 32px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

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

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

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

.field span {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.required-mark {
  color: #dc2626;
  font-size: 15px;
  line-height: 1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: #fbfbfc;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(234, 81, 25, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(234, 81, 25, 0.11);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(220, 38, 38, 0.7);
  background: #fff7f7;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(234, 81, 25, 0.22);
  border-radius: 16px;
  color: var(--brand-dark);
  background: var(--bg-warm);
  font-weight: 900;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-loading {
  opacity: 0.88;
}

.form-message.is-success {
  border-color: rgba(16, 185, 129, 0.22);
  color: #0f6b4c;
  background: #ecfdf5;
}

.form-message.is-error {
  border-color: rgba(220, 38, 38, 0.22);
  color: #a61b1b;
  background: #fef2f2;
}

.contact-aside {
  display: grid;
  gap: 16px;
}

.contact-aside div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.contact-aside a {
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.site-footer {
  padding: 56px 0 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(234, 81, 25, 0.14), transparent 25rem),
    #101010;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(130px, 0.72fr)) minmax(225px, 1.08fr);
  gap: clamp(24px, 2.7vw, 42px);
  align-items: start;
}

.footer-brand {
  padding-right: 8px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-brand > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.footer-social-block {
  margin-top: 26px;
}

.footer-social-block h3,
.footer-col h3 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.footer-address {
  margin-top: 19px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-address-label {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.footer-address address {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.footer-address address span {
  display: block;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.footer-social-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  user-select: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  border-color: var(--brand);
  color: #ffffff;
  background: var(--brand);
  transform: translateY(-2px);
}

.footer-social-icon:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.footer-social-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-icon.facebook .footer-social-svg {
  width: 22px;
  height: 22px;
}

.footer-contact-group {
  max-width: none;
  margin-top: 0;
}

.footer-col a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal-links a,
.footer-legal-links .footer-cookie-button {
  display: inline-flex;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .footer-grid {
    grid-template-columns: minmax(270px, 1.15fr) repeat(2, minmax(170px, 1fr));
    gap: 38px 34px;
  }

  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding-top: 46px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }

  .footer-legal-links {
    justify-content: flex-start;
    gap: 12px 18px;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 36;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 50%;
  color: #ffffff;
  background: #111111;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .hero {
    background:
      radial-gradient(circle at 76% 22%, rgba(234, 81, 25, 0.13), transparent 19rem),
      linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  }

  .hero-layout,
  .software-layout,
  .service-layout,
  .about-video-grid,
  .about-entry-grid,
  .story-grid,
  .product-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-device-card,
  .about-entry-media,
  .product-detail-image {
    min-height: 600px;
  }

  .hero-combo-image {
    width: min(100%, 680px);
  }

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

  .about-video-copy {
    max-width: 780px;
  }

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

  .advantage-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .advantage-bento-card.large,
  .advantage-bento-card.lock,
  .advantage-bento-card.saas {
    grid-column: auto;
    grid-row: auto;
  }

  .advantage-bento-card.large,
  .advantage-bento-card.lock,
  .advantage-bento-card.saas {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(260px, 1fr);
    min-height: auto;
  }

  .advantage-bento-card.large {
    grid-template-rows: auto minmax(330px, 1fr) auto;
  }

  .product-bento,
  .product-page-grid,
  .home-product-layout,
  .trust-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .feature-grid.four,
  .feature-story-grid,
  .software-card-grid,
  .service-stat-grid,
  .service-band,
  .scenario-grid,
  .news-grid,
  .trust-card-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-layout,
  .software-layout,
  .service-layout,
  .trust-mosaic {
    grid-template-columns: 1fr;
  }

  .platform-mockup,
  .service-network-visual {
    position: relative;
    top: auto;
  }

  .solution-card {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--header-height) + var(--top-contact-height) + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

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

  .section-title,
  .faq-preview-grid,
  .faq-page-grid,
  .solution-card,
  .footer-grid,
  .capability-panels {
    grid-template-columns: 1fr;
  }

  .section-title {
    display: grid;
  }

  .footer-contact-group {
    max-width: 100%;
  }

  .footer-brand {
    grid-row: auto;
  }

  .faq-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-showcase {
    grid-template-columns: 1fr;
  }

  .trust-visual-card {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .brand img {
    width: 132px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 64px;
    background:
      radial-gradient(circle at 76% 20%, rgba(234, 81, 25, 0.12), transparent 15rem),
      linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  }

  .about-video-hero {
    padding: 58px 0 54px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-layout {
    gap: 42px;
    padding: 18px 0 20px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .about-video-copy h1 {
    font-size: 40px;
  }

  .about-video-card {
    padding: 12px;
    border-radius: 26px;
  }

  .about-video-card video {
    border-radius: 18px;
  }

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

  .hero-body-copy {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-device-card,
  .about-entry-media,
  .story-visual,
  .product-detail-image {
    min-height: 480px;
    border-radius: 28px;
  }

  .hero-combo-image,
  .about-entry-media img,
  .story-visual img,
  .product-detail-image img {
    width: min(96%, 460px);
  }

  .hero-software-panel {
    left: 2px;
    bottom: 72px;
    width: 158px;
    min-height: 210px;
    padding: 14px;
    opacity: 0.72;
  }

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

  .hero-panel-metrics b {
    height: 34px;
  }

  .hero-panel-metrics b:nth-child(3) {
    display: none;
  }

  .hero-panel-chart {
    height: 72px;
    padding: 10px;
  }

  .floating-card {
    width: 200px;
    padding: 10px 12px;
  }

  .hero-device-card {
    display: flex;
    align-items: center;
    padding: 0;
  }

  .hero-capability-row {
    gap: 10px 14px;
  }

  .hero-combo-image {
    justify-self: auto;
    order: initial;
  }

  .bottom-left {
    display: none;
  }

  .top-left {
    top: 24px;
    left: 8px;
  }

  .top-right {
    top: 84px;
    right: 8px;
  }

  .stage-orbit.one {
    width: 330px;
    height: 330px;
  }

  .stage-orbit.two {
    width: 390px;
    height: 220px;
  }

  .platform-mockup {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mockup-sidebar {
    grid-template-columns: repeat(4, 1fr);
    padding: 16px;
  }

  .mockup-main {
    padding: 18px;
  }

  .mockup-metrics {
    grid-template-columns: 1fr;
  }

  .mockup-alert,
  .mockup-floating {
    position: static;
    margin: 10px 18px;
    justify-self: start;
  }

  .product-bento,
  .product-page-grid,
  .home-product-layout,
  .software-layout,
  .service-layout,
  .software-card-grid,
  .service-band,
  .compact-product-stack,
  .product-showcase .featured,
  .page-bento .featured,
  .feature-grid,
  .feature-grid.four,
  .feature-story-grid,
  .scenario-grid,
  .news-grid,
  .trust-mosaic,
  .trust-card-grid,
  .process-showcase,
  .spec-grid,
  .key-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .advantage-bento-card.large,
  .advantage-bento-card.lock,
  .advantage-bento-card.saas {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .advantage-visual {
    min-height: 300px;
  }

  .advantage-bento-card.large .advantage-visual {
    min-height: 380px;
  }

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

  .product-showcase .featured,
  .page-bento .featured {
    grid-column: auto;
    grid-row: auto;
  }

  .featured .product-image-wrap,
  .product-image-wrap {
    min-height: 300px;
  }

  .compact-product-card {
    grid-template-columns: 1fr;
  }

  .compact-product-image {
    min-height: 250px;
  }

  .feature-story-card,
  .process-story-card {
    min-height: auto;
  }

  .process-illustration {
    height: 300px;
  }

  .service-network-visual {
    min-height: 590px;
  }

  .service-mini-panel {
    left: 18px;
    right: 18px;
    bottom: 142px;
  }

  .service-status-grid {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .trust-visual-card {
    min-height: 460px;
  }

  .button-row .btn {
    width: 100%;
  }

  .faq-nav {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    border-radius: 28px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-body-copy {
    font-size: 14.5px;
  }

  .hero .button-row .btn {
    width: 100%;
  }

  .hero-device-card {
    min-height: 400px;
  }

  .hero-combo-image {
    width: min(100%, 420px);
  }

  .hero-software-panel {
    display: none;
  }

  .top-right {
    display: none;
  }

  .top-left {
    left: 50%;
    top: 18px;
    opacity: 1;
    animation: none;
    transform: translateX(-50%);
  }

  .floating-card:hover {
    transform: translateX(-50%) translateY(-4px);
  }

  .feature-story-card {
    grid-template-rows: 186px minmax(0, 1fr);
  }

  .feature-illustration {
    height: 186px;
  }

  .advantage-copy {
    padding: 26px;
  }

  .advantage-bento-card.large .advantage-copy {
    padding: 28px 26px 14px;
  }

  .advantage-visual {
    min-height: 260px;
    padding: 0 26px 26px;
  }

  .advantage-bento-card.large .advantage-visual {
    min-height: 260px;
    padding: 0 26px 16px;
  }

  .advantage-placeholder,
  .advantage-bento-card.large .advantage-placeholder {
    min-height: 240px;
  }

  .advantage-points {
    padding: 0 26px 28px;
  }

  .advantage-points span {
    min-height: 32px;
    font-size: 13px;
  }

  .service-network-visual {
    min-height: 620px;
    border-radius: 24px;
  }

  .service-point {
    padding-right: 7px;
  }

  .service-point span {
    width: 30px;
    height: 30px;
  }

  .service-point.ca { left: 9%; top: 160px; }
  .service-point.tx { left: 36%; top: 230px; }
  .service-point.ga { left: 58%; top: 220px; }
  .service-point.nj { left: 70%; top: 158px; }

  .service-mini-panel {
    padding: 18px;
  }

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

@media (min-width: 900px) and (max-width: 1199px) {
  .software-platform-section .software-layout {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
  }

  .software-platform-section .software-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 16px;
    height: 100%;
  }

  .software-platform-placeholder {
    min-height: 0;
    height: auto;
    align-self: stretch;
  }

  .software-platform-section .software-card {
    height: 100%;
    min-height: 172px;
    padding: 20px;
  }

  .software-platform-section .software-card span {
    font-size: 34px;
  }

  .software-platform-section .software-card b {
    margin-bottom: 16px;
  }

  .software-platform-section .software-card h3 {
    font-size: 19px;
  }

  .software-platform-section .software-card p {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

@media (max-width: 899px) {
  .software-platform-section {
    padding: 78px 0;
  }

  .software-platform-section .section-title {
    margin-bottom: 34px;
  }

  .software-platform-section .section-title h2 {
    font-size: clamp(30px, 6vw, 38px);
  }

  .software-platform-placeholder {
    height: auto;
    min-height: 330px;
  }

  .software-platform-section .software-card-grid {
    height: auto;
    grid-template-rows: none;
  }

  .software-platform-section .software-card {
    height: auto;
  }
}

@media (max-width: 680px) {
  .software-platform-section {
    padding: 70px 0;
  }

  .software-platform-section .section-title h2 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .software-platform-placeholder {
    min-height: 270px;
    border-radius: 24px;
  }

  .software-placeholder-frame {
    width: min(78%, 300px);
  }

  .software-platform-placeholder strong {
    max-width: calc(100% - 34px);
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
    text-align: center;
  }

  .software-platform-section .software-card {
    min-height: auto;
    padding: 22px;
  }
}

/* Homepage compact rhythm */
.home-page > .section {
  padding: 80px 0;
}

.home-page > .product-showcase,
.home-page > .home-who-section,
.home-page > .core-advantages-section,
.home-page > .software-platform-section,
.home-page > .process-section,
.home-page > .service-support-section,
.home-page > .soft-section,
.home-page > .trust-section,
.home-page > .customer-proof-section,
.home-page > .faq-preview-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-page > .home-who-section {
  padding-top: 44px;
  padding-bottom: 64px;
}

.home-page > .cta-section {
  padding-top: 66px;
  padding-bottom: 76px;
}

.home-page .section-title {
  display: grid;
  justify-items: center;
  margin-bottom: 36px;
  text-align: center;
}

.home-page .section-title > div {
  max-width: 820px;
  margin: 0 auto;
}

.home-page .section-title .kicker {
  justify-content: center;
}

.home-page > .section > .container > .section-title {
  width: 100%;
  max-width: none;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.home-page > .section > .container > .section-title > div {
  display: grid;
  width: 100%;
  max-width: 980px;
  justify-items: center;
}

.home-page > .section > .container > .section-title h2 {
  max-width: 100%;
  white-space: nowrap;
}

.home-page > .section > .container > .section-title p:not(.kicker) {
  max-width: 100%;
  white-space: nowrap;
}

.home-page .software-platform-section .section-title,
.home-page .service-support-section .section-title {
  margin-bottom: 34px;
}

.home-who-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(234, 81, 25, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.home-who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 22px;
  align-items: stretch;
}

.home-who-copy,
.home-who-stat-card {
  border: 1px solid rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.home-who-copy {
  display: grid;
  align-content: center;
  min-height: 348px;
  padding: 36px;
  border-radius: 28px;
}

.home-who-copy .kicker {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.home-who-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.home-who-subtitle {
  max-width: 760px;
  margin-bottom: 22px;
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
}

.home-who-copy h3 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.home-who-copy p {
  max-width: 760px;
  line-height: 1.75;
}

.home-who-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.home-who-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-who-stat-card {
  position: relative;
  display: flex;
  min-height: 167px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px 24px 22px;
  border-radius: 24px;
  border-color: rgba(234, 81, 25, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-who-stat-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -38px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(234, 81, 25, 0.08);
}

.home-who-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.3);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.08);
}

.home-who-stat-card strong {
  position: relative;
  z-index: 1;
  color: var(--brand);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.home-who-stat-card span {
  position: relative;
  z-index: 1;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 800;
}

.home-page .process-showcase {
  gap: 22px;
}

.home-page .process-story-card {
  min-height: auto;
  padding: 24px;
  border-radius: 22px;
}

.home-page .process-step-label {
  margin-bottom: 8px;
  font-size: 14px;
}

.home-page .process-story-card h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

.home-page .process-story-card p {
  min-height: 0;
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.65;
}

.home-page .process-illustration {
  height: 205px;
  margin: 12px 0 0;
  border-radius: 20px;
}

.home-page .process-placeholder-media::before {
  inset: 20px;
  border-radius: 18px;
}

.home-page .process-placeholder-media span {
  min-height: 34px;
  padding: 0 15px;
  font-size: 13px;
}

.home-page .process-num {
  right: 24px;
  bottom: 14px;
  color: rgba(17, 17, 17, 0.055);
  font-size: 70px;
}

.home-page .service-layout {
  gap: 24px;
}

.home-page .service-network-visual {
  min-height: 500px;
  border-radius: 26px;
}

.home-page .us-map-outline {
  top: 34px;
  width: min(78%, 420px);
}

.home-page .service-line-field .line {
  top: 154px;
  width: 160px;
}

.home-page .service-point {
  padding: 5px 9px 5px 5px;
}

.home-page .service-point span {
  width: 30px;
  height: 30px;
  font-size: 11px;
}

.home-page .service-point.ca { left: 15%; top: 128px; }
.home-page .service-point.tx { left: 40%; top: 190px; }
.home-page .service-point.ga { left: 64%; top: 180px; }
.home-page .service-point.nj { left: 76%; top: 126px; }

.home-page .service-mini-panel {
  left: 24px;
  right: 24px;
  bottom: 92px;
  padding: 16px;
  border-radius: 20px;
}

.home-page .service-mini-panel strong {
  margin-bottom: 9px;
  font-size: 15px;
}

.home-page .service-mini-panel p {
  gap: 8px;
  margin-top: 7px;
  font-size: 12px;
}

.home-page .service-mini-panel p span {
  width: 7px;
  height: 7px;
}

.home-page .service-status-grid {
  left: 24px;
  right: 24px;
  bottom: 22px;
  gap: 8px;
}

.home-page .service-status-grid span {
  padding: 9px 10px;
  border-radius: 14px;
  font-size: 12px;
}

.home-page .service-content,
.home-page .service-feature-list {
  gap: 14px;
}

.home-page .service-support-section .service-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
}

.home-page .service-card .service-index {
  right: 22px;
  top: 18px;
  font-size: 36px;
}

.home-page .service-support-section .service-card h3 {
  max-width: calc(100% - 56px);
  margin-bottom: 10px;
  font-size: clamp(20px, 1.8vw, 22px);
  line-height: 1.24;
}

.home-page .service-support-section .service-card p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.home-page .service-tags b {
  min-height: 26px;
  padding: 0 9px;
  font-size: 11px;
}

.home-page .service-stat-grid {
  gap: 10px;
}

.home-page .service-stat-card {
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 16px;
}

.home-page .service-stat-card strong {
  margin-bottom: 5px;
  font-size: clamp(25px, 2.4vw, 32px);
}

.home-page .service-stat-card span {
  font-size: 12px;
}

.home-page .scenario-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-page .scenario-card {
  border-radius: 20px;
}

.home-page .scenario-card .placeholder-media {
  min-height: 145px;
}

.home-page .scenario-card .placeholder-media::before {
  inset: 14px;
  border-radius: 16px;
}

.home-page .scenario-content {
  min-height: 112px;
  gap: 10px;
  padding: 18px;
}

.home-page .scenario-content .mini-label {
  margin-bottom: 7px;
  font-size: 10px;
}

.home-page .scenario-content h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.18;
}

.home-page .scenario-content p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.55;
}

.home-page .scenario-content .text-link {
  font-size: 13px;
}

.customer-proof-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(234, 81, 25, 0.08), transparent 20rem),
    linear-gradient(180deg, #f6f7f9 0%, #ffffff 100%);
}

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

.customer-proof-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.customer-proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.28);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.09);
}

.customer-proof-card .placeholder-media {
  min-height: 210px;
}

.customer-proof-card > div {
  padding: 24px;
}

.customer-proof-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.customer-proof-card p {
  margin-bottom: 0;
}

.home-page .trust-mosaic {
  gap: 24px;
}

.home-page .trust-visual-card {
  min-height: 540px;
  border-radius: 30px;
}

.trust-visual-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.trust-placeholder-frame {
  position: relative;
  display: flex;
  width: min(82%, 460px);
  aspect-ratio: 1.05;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(234, 81, 25, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.05);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.trust-placeholder-frame::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.trust-placeholder-frame span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(16, 16, 16, 0.42);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.trust-placeholder-orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(234, 81, 25, 0.14);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.home-page .trust-card-grid {
  gap: 14px;
}

.home-page .trust-data-card {
  min-height: 132px;
  padding: 22px;
  border-radius: 22px;
}

.home-page .trust-data-card strong {
  font-size: clamp(24px, 2.4vw, 34px);
}

.faq-preview-panel {
  display: grid;
  gap: 30px;
}

.faq-preview-header {
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.faq-preview-header .kicker {
  justify-content: center;
}

.faq-preview-header h2 {
  margin-bottom: 12px;
}

.faq-preview-header p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 18px;
}

.home-page .faq-preview-section .faq-stack {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-page .faq-preview-section .faq-item {
  border-radius: 18px;
}

.home-page .faq-preview-section .faq-item summary {
  padding: 18px 20px;
}

.home-page .faq-preview-section .faq-answer {
  padding: 0 20px 18px;
}

@media (max-width: 1200px) {
  .customer-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .scenario-card .placeholder-media {
    min-height: 150px;
  }
}

@media (max-width: 1120px) {
  .home-page .service-network-visual {
    position: relative;
    top: auto;
    min-height: 500px;
  }

  .home-page .trust-visual-card {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  :root {
    --top-contact-height: 58px;
  }

  .top-contact-inner {
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
  }

  .top-contact-links {
    justify-content: center;
    gap: 8px;
  }

  .top-contact-link {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .home-page > .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-page .section-title {
    margin-bottom: 30px;
  }

  .home-page > .section > .container > .section-title h2,
  .home-page > .section > .container > .section-title p:not(.kicker) {
    white-space: normal;
  }

  .home-page .process-showcase,
  .home-page .faq-preview-section .faq-stack {
    grid-template-columns: 1fr;
  }

  .home-who-grid,
  .home-who-stats,
  .customer-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .home-page .service-support-section .service-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --top-contact-height: 72px;
  }

  .top-contact-bar {
    display: block;
  }

  .top-contact-inner {
    min-height: var(--top-contact-height);
    padding: 7px 0;
  }

  .top-contact-links {
    row-gap: 7px;
  }

  .top-whatsapp {
    min-width: 118px;
  }

  .home-page > .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-page > .cta-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .home-page .process-story-card {
    padding: 22px;
  }

  .home-page .process-illustration {
    height: 210px;
  }

  .home-page .service-network-visual {
    min-height: 500px;
  }

  .home-page .service-mini-panel {
    left: 16px;
    right: 16px;
    bottom: 104px;
  }

  .home-page .service-status-grid {
    left: 16px;
    right: 16px;
  }

  .home-page .service-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .scenario-grid,
  .home-page .trust-card-grid {
    grid-template-columns: 1fr;
  }

  .home-who-copy {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }

  .home-who-copy h2 {
    font-size: 36px;
  }

  .home-who-actions .btn {
    width: 100%;
  }

  .home-who-stats {
    gap: 12px;
  }

  .home-who-stat-card {
    min-height: 122px;
    padding: 20px;
  }

  .customer-proof-card .placeholder-media {
    min-height: 170px;
  }

  .home-page .scenario-card .placeholder-media {
    min-height: 150px;
  }

  .home-page .trust-visual-card {
    min-height: 420px;
  }

  .trust-visual-placeholder {
    padding: 24px;
  }

  .trust-placeholder-frame {
    width: min(92%, 380px);
  }

  .home-page .faq-preview-section .faq-item summary {
    padding: 17px 18px;
  }
}

/* Product detail pages */
.product-detail-page {
  background: #ffffff;
}

.product-detail-page [id] {
  scroll-margin-top: calc(var(--header-height) + var(--top-contact-height) + 82px);
}

.product-detail-hero {
  padding: 58px 0 36px;
  background:
    radial-gradient(circle at 20% 14%, rgba(234, 81, 25, 0.08), transparent 23rem),
    radial-gradient(circle at 82% 22%, rgba(234, 81, 25, 0.12), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.product-gallery,
.product-info-panel {
  min-width: 0;
}

.product-gallery-stage {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 18%, rgba(234, 81, 25, 0.12), transparent 18rem),
    linear-gradient(145deg, #f2f4f7, #ffffff);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.08);
}

.product-gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.product-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-gallery-slide img {
  width: min(88%, 620px);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(17, 17, 17, 0.18));
}

.detail-placeholder-visual {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(234, 81, 25, 0.1), transparent 15rem),
    linear-gradient(145deg, #f4f6f8, #ffffff);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.detail-placeholder-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
}

.detail-placeholder-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(229, 231, 235, 0.94);
  border-radius: 999px;
  color: #747983;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(var(--gallery-columns, 5), minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-gallery-thumbs.is-single {
  grid-template-columns: minmax(0, 120px);
}

.product-gallery-thumbs button {
  display: grid;
  min-height: 88px;
  align-content: center;
  justify-items: center;
  padding: 10px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 18px;
  color: #555555;
  background: #ffffff;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-gallery-thumbs button:hover,
.product-gallery-thumbs button.is-active {
  transform: translateY(-3px);
  border-color: rgba(234, 81, 25, 0.56);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.09);
}

.product-gallery-thumbs img {
  width: 68px;
  height: 56px;
  object-fit: contain;
}

.product-gallery-thumbs span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
  font-weight: 900;
}

.product-info-panel {
  position: sticky;
  top: calc(var(--header-height) + var(--top-contact-height) + 22px);
  padding: 30px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #8a8f98;
  font-size: 13px;
}

.product-breadcrumb a {
  color: #555555;
}

.product-info-panel h1 {
  margin-bottom: 8px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
}

.product-position {
  margin-bottom: 18px;
  color: #111111;
  font-size: 20px;
  font-weight: 900;
}

.product-core-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 26px 0 30px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(240, 90, 40, 0.08), transparent 10rem),
    linear-gradient(135deg, rgba(246, 247, 249, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-core-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.product-core-point-dot {
  width: 7px;
  height: 7px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.1);
}

.product-model-switcher {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.product-model-switcher > span {
  color: #111111;
  font-weight: 900;
}

.product-model-switcher > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-model-switcher a {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 16px;
  color: #111111;
  background: #ffffff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-model-switcher a:hover,
.product-model-switcher a.is-active {
  transform: translateY(-2px);
  border-color: rgba(234, 81, 25, 0.48);
  background: rgba(234, 81, 25, 0.07);
}

.product-model-switcher em {
  color: #777777;
  font-size: 12px;
  font-style: normal;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.product-service-row span {
  min-height: 42px;
  padding: 10px;
  border: 1px solid rgba(234, 81, 25, 0.14);
  border-radius: 14px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.product-quick-strip {
  padding: 24px 0;
  background: #ffffff;
}

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

.product-quick-grid div {
  padding: 18px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.product-quick-grid span,
.product-spec-table span,
.included-card span {
  display: block;
  margin-bottom: 8px;
  color: #8a8f98;
  font-size: 13px;
  font-weight: 900;
}

.product-quick-grid strong,
.product-spec-table strong,
.included-card strong {
  color: #111111;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-anchor-nav {
  position: sticky;
  top: calc(var(--header-height) + var(--top-contact-height));
  z-index: 20;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.product-anchor-nav .container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.product-anchor-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: #555555;
  font-size: 14px;
  font-weight: 900;
}

.product-anchor-nav a:hover {
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
}

.product-detail-page .section {
  padding: 86px 0;
}

.product-section-heading {
  display: grid;
  max-width: 860px;
  margin: 0 auto 42px;
  justify-items: center;
  text-align: center;
}

.product-section-heading .kicker {
  justify-content: center;
}

.product-section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 4vw, 54px);
}

.product-section-heading p:not(.kicker) {
  max-width: 760px;
}

.product-overview-visual {
  min-height: 520px;
}

.product-overview-visual.has-image {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 28px;
  background: #f4f5f7;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.08);
}

.product-overview-visual.has-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1464 / 600;
  object-fit: cover;
}

.product-feature-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}

.product-feature-card {
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-feature-card:hover,
.product-detail-card:hover,
.product-scenario-card:hover,
.included-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.3);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.09);
}

.product-feature-card.wide {
  grid-column: span 2;
}

.product-feature-card.tall {
  grid-row: span 2;
}

.product-feature-card.dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(234, 81, 25, 0.24), transparent 18rem),
    linear-gradient(145deg, #111111, #1a1a1a);
}

.product-feature-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.product-feature-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.12;
}

.product-feature-card p {
  margin-bottom: 0;
}

.product-feature-card.dark h3,
.product-feature-card.dark p {
  color: #ffffff;
}

.product-feature-card .detail-placeholder-visual,
.product-overview-visual .detail-placeholder-visual {
  min-height: 220px;
}

.product-detail-card-grid,
.product-scenario-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-card,
.product-scenario-card,
.included-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-detail-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background: #f2f3f5;
}

.product-detail-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-detail-card:hover .product-detail-card-media img {
  transform: scale(1.025);
}

.product-detail-card-copy,
.product-scenario-card > div {
  padding: 22px;
}

.product-detail-card h3,
.product-scenario-card h3 {
  margin-bottom: 10px;
}

.product-software-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(234, 81, 25, 0.08), transparent 21rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.product-software-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.product-software-visual {
  min-height: 430px;
}

.product-software-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 50px);
}

.product-software-copy p:not(.kicker) {
  max-width: 680px;
}

.product-software-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.product-software-tags span {
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(234, 81, 25, 0.14);
  border-radius: 14px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.07);
  font-weight: 900;
  text-align: center;
}

.product-scenario-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background: #f2f3f5;
}

.product-scenario-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-scenario-card:hover .product-scenario-media img {
  transform: scale(1.025);
}

.product-spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.product-spec-table div {
  min-height: 86px;
  padding: 20px 24px;
  border-right: 1px solid rgba(229, 231, 235, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.included-card {
  min-height: 132px;
  padding: 24px;
}

.product-faq-section .faq-stack {
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .product-detail-shell,
  .product-software-grid {
    grid-template-columns: 1fr;
  }

  .product-info-panel {
    position: relative;
    top: auto;
  }

  .product-detail-card-grid,
  .product-scenario-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-feature-card.wide,
  .product-feature-card.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .product-detail-hero {
    padding-top: 34px;
  }

  .product-gallery-stage {
    min-height: 410px;
    border-radius: 26px;
  }

  .product-gallery-slide {
    padding: 28px;
  }

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

  .product-info-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .product-core-points,
  .product-model-switcher > div,
  .product-quick-grid,
  .product-service-row,
  .product-feature-bento,
  .product-detail-card-grid,
  .product-scenario-grid,
  .included-grid,
  .product-spec-table,
  .product-software-tags {
    grid-template-columns: 1fr;
  }

  .product-hero-actions .btn {
    width: 100%;
  }

  .product-detail-page .section {
    padding: 58px 0;
  }

  .product-section-heading {
    margin-bottom: 30px;
    text-align: left;
    justify-items: start;
  }

  .product-section-heading .kicker {
    justify-content: flex-start;
  }

  .product-section-heading h2 {
    font-size: 32px;
  }

  .product-overview-visual,
  .product-software-visual {
    min-height: 300px;
  }

  .product-feature-card,
  .product-detail-card-copy,
  .product-scenario-card > div {
    padding: 22px;
  }

  .product-anchor-nav .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Homepage focused refinements: Hero copy, core advantages, WHO WE ARE, FAQ preview */
.hero-body-copy {
  max-width: 610px;
  gap: 12px;
  margin-bottom: 24px;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.8;
}

.hero-body-copy p {
  margin: 0;
}

.hero-tags {
  margin-top: 22px;
}

.hero-capability-row {
  margin-top: 14px;
}

.hero-copy h1 span {
  white-space: nowrap;
  word-break: keep-all;
}

.advantage-bento-card.cooling {
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.66fr);
  min-height: 292px;
  background:
    radial-gradient(circle at 82% 18%, rgba(82, 155, 255, 0.12), transparent 11rem),
    radial-gradient(circle at 24% 80%, rgba(234, 81, 25, 0.06), transparent 10rem),
    linear-gradient(145deg, #ffffff, #f5f8fb);
}

.advantage-bento-card.cooling h3 {
  font-size: clamp(23px, 1.9vw, 30px);
}

.advantage-bento-card.cooling .advantage-visual {
  padding: 22px 24px 22px 0;
}

.advantage-bento-card.cooling .advantage-placeholder {
  background:
    linear-gradient(rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 48% 42%, rgba(82, 155, 255, 0.12), transparent 12rem),
    radial-gradient(circle at 72% 68%, rgba(234, 81, 25, 0.08), transparent 10rem),
    linear-gradient(145deg, #ffffff, #f3f7fb);
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
}

.advantage-bento-card.cooling .advantage-placeholder strong {
  min-height: 34px;
  padding: 0 13px;
  font-size: 12.5px;
}

.advantage-bento-card.cooling .advantage-points {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: flex-start;
  padding: 0 34px 28px;
}

.advantage-bento-card.cooling .advantage-points span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(234, 81, 25, 0.08);
  font-size: 12.5px;
  font-weight: 900;
}

.home-who-copy {
  align-content: center;
  padding: 34px;
}

.home-who-copy h3,
.home-who-copy p,
.home-who-subtitle,
.home-who-text {
  max-width: 680px;
}

.home-who-subtitle {
  margin-bottom: 18px;
  color: #333333;
  font-size: 17px;
  font-weight: 700;
}

.home-who-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.22;
}

.home-who-text {
  display: grid;
  gap: 14px;
}

.home-who-text p {
  margin: 0;
  color: #555555;
  font-size: 15.5px;
  line-height: 1.82;
}

.faq-preview-panel {
  width: 100%;
  max-width: 1200px;
  gap: 38px;
}

.faq-preview-header {
  max-width: 760px;
}

.home-page .faq-preview-section .faq-stack {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.home-page .faq-preview-section .faq-item {
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(234, 81, 25, 0.04), transparent 8rem),
    #ffffff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-page .faq-preview-section .faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 81, 25, 0.28);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.home-page .faq-preview-section .faq-item[open] {
  border-color: rgba(234, 81, 25, 0.34);
  background:
    radial-gradient(circle at 94% 12%, rgba(234, 81, 25, 0.08), transparent 8rem),
    linear-gradient(145deg, #ffffff, #fff8f5);
}

.home-page .faq-preview-section .faq-item summary {
  min-height: 72px;
  padding: 22px 24px;
  font-size: 17px;
  line-height: 1.45;
}

.home-page .faq-preview-section .faq-answer {
  padding: 0 24px 22px;
}

.home-page .faq-preview-section .faq-answer p {
  color: #555555;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .advantage-bento-card.cooling {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(260px, 1fr) auto;
    min-height: auto;
  }

  .advantage-bento-card.cooling .advantage-visual {
    min-height: 260px;
    padding: 0 34px 16px;
  }
}

@media (max-width: 900px) {
  .home-page .faq-preview-section .faq-stack {
    grid-template-columns: 1fr;
  }

  .home-who-text p {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .hero-body-copy {
    max-width: 100%;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.75;
  }

  .home-who-copy {
    padding: 28px 24px;
  }

  .home-who-copy h3 {
    font-size: 26px;
  }

  .home-page .faq-preview-section .faq-item summary {
    min-height: 64px;
    padding: 18px 18px;
    font-size: 16px;
  }

  .home-page .faq-preview-section .faq-answer {
    padding: 0 18px 18px;
  }

  .advantage-bento-card.cooling .advantage-visual {
    padding: 0 26px 16px;
  }

  .advantage-bento-card.cooling .advantage-points {
    padding: 0 26px 28px;
  }
}

/* WHO WE ARE stats wall upgrade */
.home-who-stats {
  gap: 22px;
  align-self: stretch;
  grid-auto-rows: minmax(220px, 1fr);
}

.home-who-stat-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 230px;
  gap: 16px;
  justify-content: stretch;
  padding: 30px;
  border-radius: 28px;
  border-color: rgba(240, 90, 40, 0.16);
  background:
    radial-gradient(circle at 84% 8%, rgba(240, 90, 40, 0.11), transparent 7.5rem),
    radial-gradient(circle at 18% 100%, rgba(240, 90, 40, 0.06), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 247, 0.88));
  box-shadow: 0 20px 54px rgba(17, 17, 17, 0.06);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.home-who-stat-card::after {
  right: -34px;
  top: -42px;
  width: 118px;
  height: 118px;
  background: rgba(240, 90, 40, 0.075);
}

.home-who-stat-card::before {
  content: "";
  position: absolute;
  inset: auto 28px 24px 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 90, 40, 0.22), transparent);
  opacity: 0.75;
}

.home-who-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 90, 40, 0.34);
  box-shadow: 0 28px 68px rgba(17, 17, 17, 0.11);
}

.home-who-stat-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240, 90, 40, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 90, 40, 0.9) 0 3px, transparent 4px),
    rgba(240, 90, 40, 0.08);
}

.home-who-stat-card strong {
  align-self: center;
  transform-origin: left center;
  background: linear-gradient(135deg, #f05a28 0%, #ff7a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(60px, 5vw, 78px);
  white-space: nowrap;
  word-break: keep-all;
  letter-spacing: 0;
  line-height: 0.95;
  transition: transform 240ms ease;
}

.home-who-stat-card:hover strong {
  transform: scale(1.02);
}

.home-who-stat-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  max-width: 260px;
}

.home-who-stat-copy span {
  color: #111111;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.home-who-stat-copy p {
  margin: 0;
  color: #555555;
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .home-who-stats {
    grid-auto-rows: minmax(190px, 1fr);
  }

  .home-who-stat-card {
    min-height: 200px;
    padding: 26px;
  }

  .home-who-stat-card strong {
    font-size: clamp(50px, 6.4vw, 62px);
  }
}

@media (max-width: 680px) {
  .home-who-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    grid-auto-rows: minmax(168px, auto);
  }

  .home-who-stat-card {
    min-height: 172px;
    gap: 12px;
    padding: 22px;
    border-radius: 22px;
  }

  .home-who-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }

  .home-who-stat-card strong {
    font-size: clamp(42px, 12vw, 52px);
  }

  .home-who-stat-copy span {
    font-size: 16px;
  }

  .home-who-stat-copy p {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 430px) {
  .home-who-stats {
    grid-template-columns: 1fr;
  }
}

/* Hero title collision fix */
.hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.88fr);
  gap: clamp(52px, 6vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 6;
  max-width: 620px;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(44px, 3.6vw, 54px);
  line-height: 1.08;
}

.hero-visual {
  z-index: 1;
  transform: translateX(24px);
}

.hero-combo-image {
  width: min(102%, 680px);
  max-height: 660px;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .hero-copy h1 {
    max-width: 100%;
    font-size: 48px;
  }

  .hero-visual {
    transform: none;
  }

  .hero-combo-image {
    width: min(100%, 640px);
  }
}

@media (max-width: 680px) {
  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.12;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: 36px;
  }
}

/* IA 2026 framework update */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-resource-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.resource-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-resource:hover .resource-toggle,
.nav-resource.is-open .resource-toggle {
  background: rgba(234, 81, 25, 0.08);
  transform: rotate(180deg);
}

.resource-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  width: min(520px, 92vw);
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.nav-resource:hover .resource-dropdown,
.nav-resource:focus-within .resource-dropdown,
.nav-resource.is-open .resource-dropdown {
  display: grid;
}

.resource-dropdown a {
  display: block;
  padding: 14px;
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid transparent;
}

.resource-dropdown a:hover {
  border-color: rgba(234, 81, 25, 0.18);
  background: rgba(234, 81, 25, 0.06);
}

.resource-dropdown strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.resource-dropdown span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.ia-section {
  padding-block: clamp(56px, 6.5vw, 88px);
}

.ia-section .section-title {
  justify-content: center;
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.ia-section .section-title > div {
  margin-inline: auto;
  max-width: 860px;
  text-align: center;
}

.ia-section .section-title .btn {
  margin: 18px auto 0;
}

.ia-hero .hero-copy {
  max-width: 700px;
}

.ia-hero .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.15vw, 68px);
}

.ia-hero .hero-stage {
  position: relative;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(234, 81, 25, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(246, 247, 249, 0.62), rgba(255, 255, 255, 0.34));
}

.hero-stats-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(18px, 2.4vw, 34px);
}

.hero-stat-card {
  min-width: 0;
  min-height: 108px;
  padding: 22px 24px;
  border: 1px solid rgba(240, 90, 40, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 90, 40, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.055);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.28);
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.085);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: clamp(38px, 3.3vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
}

.hero-stat-card span {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.engine-grid,
.ia-product-grid,
.ia-scenario-grid,
.ia-resource-grid,
.ia-option-grid,
.ia-scenario-mini-grid,
.solution-template-grid,
.ia-process-grid {
  display: grid;
  gap: 20px;
}

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

.engine-card {
  position: relative;
  min-height: 420px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 4%, rgba(234, 81, 25, 0.13), transparent 24%),
    linear-gradient(180deg, #fff, #fbfbfc);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.engine-card:hover,
.ia-product-card:hover,
.resource-card:hover,
.option-card:hover,
.mini-scenario:hover,
.solution-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.28);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.1);
}

.engine-index {
  position: absolute;
  right: 26px;
  top: 22px;
  color: rgba(17, 17, 17, 0.08);
  font-size: 54px;
  font-weight: 900;
}

.engine-value {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(234, 81, 25, 0.08);
  color: var(--brand);
  font-weight: 800;
}

.engine-card h3 {
  margin: 24px 0 14px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.08;
}

.engine-card h3 span {
  color: var(--brand);
}

.engine-card p,
.engine-card li {
  color: var(--muted);
  line-height: 1.7;
}

.engine-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 22px 0 0;
}

.engine-foot {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: rgba(234, 81, 25, 0.22);
  font-size: 22px;
  font-weight: 900;
}

.ia-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.ia-tag-row span,
.ia-filter-grid button span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(234, 81, 25, 0.07);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

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

.ia-product-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 0.55fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ia-product-media {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 75% 14%, rgba(234, 81, 25, 0.12), transparent 26%),
    linear-gradient(145deg, #f6f7f9, #fff);
  overflow: hidden;
}

.ia-product-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.ia-product-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.ia-product-copy dt {
  color: var(--muted);
  font-size: 12px;
}

.ia-product-copy dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.ia-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(148, 163, 184, 0.38);
  border-radius: 24px;
  color: #7a8491;
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, #f7f8fa, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.process-card.compact {
  min-height: auto;
  padding: 24px;
}

.process-placeholder {
  min-height: 180px;
  margin-top: 18px;
}

.ia-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ia-software-layout,
.ia-support-grid,
.technology-split,
.quote-layout,
.ia-trust-faq-grid {
  display: grid;
  gap: 28px;
}

.ia-software-layout {
  grid-template-columns: 0.42fr 0.58fr;
  align-items: stretch;
}

.software-placeholder {
  min-height: 420px;
  height: 100%;
}

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

.software-feature-card {
  min-height: 156px;
}

.ia-support-grid {
  grid-template-columns: 0.42fr 0.58fr;
}

.service-placeholder {
  min-height: 460px;
  height: 100%;
}

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

.ia-scenario-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-card.compact {
  overflow: hidden;
}

.scenario-card.compact .ia-placeholder {
  min-height: 140px;
  border-radius: 18px;
  margin: 14px;
}

.scenario-card.compact > div:last-child {
  padding: 0 18px 20px;
}

.scenario-card.compact p {
  font-size: 13px;
  line-height: 1.55;
}

.ia-trust-faq-grid {
  grid-template-columns: 0.42fr 0.58fr;
}

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

.trust-tile,
.resource-card,
.option-card,
.mini-scenario,
.solution-detail-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-detail-card {
  min-height: 246px;
}

.solution-detail-card h3 {
  margin-bottom: 16px;
}

.solution-detail-card p {
  margin: 0 0 10px;
  line-height: 1.68;
}

.solution-detail-card a {
  margin-top: auto;
  padding-top: 14px;
}

.trust-tile strong {
  display: block;
  margin-top: 18px;
  color: var(--brand);
  font-size: clamp(26px, 3vw, 44px);
}

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

.ia-filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ia-filter-grid button {
  min-height: 92px;
  text-align: left;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  font-weight: 900;
  cursor: default;
}

.ia-filter-grid button span {
  display: table;
  margin-top: 12px;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.05);
}

.comparison-wrap .comparison-table {
  min-width: 860px;
  margin: 0;
  box-shadow: none;
}

.ia-scenario-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(170px, auto);
}

.ia-scenario-mini-grid .mini-scenario a {
  margin-top: auto;
}

.ia-option-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-template-grid,
.ia-resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ia-flow-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ia-flow-line span {
  padding: 13px 16px;
  border: 1px solid rgba(234, 81, 25, 0.18);
  border-radius: 999px;
  background: rgba(234, 81, 25, 0.06);
  color: var(--brand);
  font-weight: 900;
}

.technology-split {
  grid-template-columns: 0.35fr 0.65fr;
  align-items: center;
}

.technology-engine-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.technology-engine-title h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

.technology-engine-description {
  max-width: 720px;
  margin: 0;
  color: #555b63;
  font-size: 16px;
  line-height: 1.8;
}

.technology-engine-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.technology-engine-item {
  display: flex;
  min-width: 0;
  min-height: 218px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.technology-engine-item:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 81, 25, 0.3);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.technology-engine-item-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.technology-engine-item-meta > span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.technology-engine-item h3 {
  margin: 18px 0 10px;
  color: #111111;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 900;
  line-height: 1.22;
}

.technology-engine-item p {
  margin: 0;
  color: #555b63;
  font-size: 14px;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .technology-engine-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .technology-engine-description {
    max-width: 780px;
  }
}

@media (max-width: 560px) {
  .technology-engine-intro {
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .technology-engine-items {
    grid-template-columns: 1fr;
  }

  .technology-engine-item {
    min-height: 0;
    padding: 21px;
  }
}

.resource-subnav {
  position: sticky;
  top: var(--header-height, 78px);
  z-index: 20;
  padding: 10px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.resource-subnav .container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.resource-subnav a {
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.resource-subnav a:hover,
.resource-subnav a.is-active {
  border-color: rgba(234, 81, 25, 0.18);
  background: rgba(234, 81, 25, 0.07);
  color: var(--brand);
}

/* Resource center overview */
.resource-hub-page .resource-subnav {
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
}

.resource-hub-page .resource-subnav .container {
  gap: 0;
}

.resource-hub-page .resource-subnav a {
  padding: 17px 16px 15px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.resource-hub-page .resource-subnav a:hover,
.resource-hub-page .resource-subnav a.is-active {
  border-bottom-color: var(--brand);
  background: transparent;
}

.resource-hub-page .resource-featured-section .section-title,
.resource-hub-page .resource-directory-section .section-title {
  margin-bottom: 30px;
}

.resource-hub-page .resource-featured-section .section-title > div,
.resource-hub-page .resource-directory-section .section-title > div {
  justify-items: center;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.resource-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.resource-feature-card {
  display: flex;
  min-width: 0;
  min-height: 286px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.055);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.resource-feature-card:hover,
.resource-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 80, 26, 0.28);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.085);
}

.resource-feature-meta,
.resource-directory-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.resource-feature-meta > span,
.resource-directory-heading > span {
  color: rgba(234, 80, 26, 0.72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.resource-feature-meta small,
.resource-directory-heading small {
  color: #6b7078;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.resource-feature-card h3 {
  margin: 36px 0 14px;
  color: #111111;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.24;
}

.resource-feature-card > p,
.resource-directory-card > p {
  margin: 0;
  color: #5d626b;
  font-size: 14px;
  line-height: 1.72;
}

.resource-feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.resource-feature-footer > span {
  color: #8a8f97;
  font-size: 12px;
  font-weight: 800;
}

.resource-feature-footer a,
.resource-directory-link {
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.resource-feature-footer a:hover,
.resource-directory-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.resource-directory-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}

.resource-directory-card {
  grid-column: span 2;
  display: flex;
  min-width: 0;
  min-height: 340px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.045);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.resource-directory-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.resource-directory-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.resource-directory-heading {
  justify-content: flex-start;
}

.resource-directory-heading > span {
  flex: 0 0 34px;
  padding-top: 5px;
}

.resource-directory-heading h3 {
  margin: 7px 0 0;
  color: #111111;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.16;
}

.resource-directory-card > p {
  margin-top: 20px;
}

.resource-directory-card ul {
  display: grid;
  gap: 0;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.resource-directory-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.065);
  color: #282b30;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.resource-directory-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
  vertical-align: 0.08em;
}

.resource-directory-card .resource-directory-more {
  color: #777d86;
  font-weight: 750;
}

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

@media (max-width: 1040px) {
  .resource-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .resource-directory-card,
  .resource-directory-card:nth-child(4) {
    grid-column: auto;
  }

  .resource-directory-card:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .resource-hub-page .resource-subnav a {
    padding-inline: 14px;
  }

  .resource-feature-grid,
  .resource-directory-grid {
    grid-template-columns: 1fr;
  }

  .resource-feature-card,
  .resource-directory-card {
    min-height: 0;
    padding: 22px;
  }

  .resource-directory-card:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }

  .resource-feature-card h3 {
    margin-top: 28px;
  }
}

.quote-layout {
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  align-items: start;
}

.quote-side {
  position: sticky;
  top: 120px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 8%, rgba(234, 81, 25, 0.12), transparent 26%),
    #fff;
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.08);
}

.quote-side ol {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.quote-contact-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.quote-contact-options a {
  color: var(--brand);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .engine-grid,
  .ia-process-grid,
  .solution-template-grid,
  .ia-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ia-product-grid,
  .ia-software-layout,
  .ia-support-grid,
  .ia-trust-faq-grid,
  .technology-split,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .ia-scenario-grid,
  .ia-scenario-mini-grid,
  .ia-option-grid,
  .ia-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-item,
  .nav-resource-row {
    display: block;
    width: 100%;
  }

  .nav-resource-row {
    display: flex;
    justify-content: space-between;
  }

  .resource-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    transform: none;
    box-shadow: none;
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .nav-resource:hover .resource-dropdown {
    display: none;
  }

  .nav-resource.is-open .resource-dropdown {
    display: grid;
  }

  .ia-hero .hero-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .engine-grid,
  .ia-product-grid,
  .ia-process-grid,
  .ia-feature-grid,
  .ia-support-cards,
  .ia-scenario-grid,
  .ia-scenario-mini-grid,
  .ia-option-grid,
  .solution-template-grid,
  .ia-resource-grid,
  .ia-faq-grid,
  .ia-filter-grid {
    grid-template-columns: 1fr;
  }

  .ia-product-card {
    grid-template-columns: 1fr;
  }

  .ia-product-copy dl,
  .ia-trust-wall,
  .ia-stat-strip {
    grid-template-columns: 1fr;
  }

  .engine-card {
    min-height: auto;
  }

  .software-placeholder,
  .service-placeholder {
    min-height: 260px;
  }

  .resource-subnav {
    top: 72px;
  }
}

/* IA alignment and dropdown usability refinements */
.nav-links {
  gap: 6px;
}

.nav-links a {
  padding-inline: 9px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links .nav-cta {
  margin-left: 6px;
  padding-inline: 18px;
}

.resource-dropdown {
  top: 100%;
  margin-top: 0;
}

.resource-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-resource-row > a {
  padding-right: 4px;
}

.ia-home-page .section-title h2,
.ia-home-page .section-title p:not(.kicker),
.ia-page .section-title h2,
.ia-page .section-title p:not(.kicker) {
  white-space: normal !important;
}

.ia-home-page .section-title,
.ia-page .section-title {
  width: 100%;
}

.ia-home-page .section-title > div,
.ia-page .section-title > div {
  display: grid;
  justify-items: center;
  width: 100%;
}

.ia-home-page .section-title h2,
.ia-page .section-title h2 {
  max-width: 940px;
}

.ia-home-page .section-title p:not(.kicker),
.ia-page .section-title p:not(.kicker) {
  max-width: 820px;
  line-height: 1.7;
}

.ia-home-page .home-who-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.ia-home-page .home-who-copy,
.ia-home-page .home-who-stat-card {
  min-width: 0;
}

.ia-home-page .home-who-copy {
  width: 100%;
  max-width: none;
  padding: clamp(34px, 4.5vw, 56px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 4%, rgba(240, 90, 40, 0.065), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.96));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.ia-home-page .home-who-copy h3,
.ia-home-page .home-who-copy p,
.ia-home-page .home-who-subtitle,
.ia-home-page .home-who-copy .ia-tag-row {
  max-width: 980px;
}

.ia-home-page .home-who-actions .btn {
  max-width: 100%;
}

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

.ia-home-page .home-who-stat-card {
  min-height: 210px;
  padding: 28px;
}

.ia-home-page .home-who-stat-card strong {
  font-size: clamp(46px, 5vw, 68px);
  line-height: 0.95;
  white-space: nowrap;
}

.engine-card,
.ia-product-card,
.resource-card,
.option-card,
.mini-scenario,
.solution-detail-card,
.service-feature-card,
.software-feature-card,
.trust-tile {
  min-width: 0;
}

.engine-card {
  display: flex;
  flex-direction: column;
}

.engine-card ul {
  margin-bottom: 40px;
}

.ia-product-copy,
.ia-product-copy dl,
.ia-product-copy dd,
.ia-product-copy h3 {
  min-width: 0;
}

.ia-product-copy dd {
  overflow-wrap: anywhere;
}

.ia-scenario-grid {
  align-items: stretch;
}

.scenario-card.compact {
  display: flex;
  flex-direction: column;
}

.scenario-card.compact > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scenario-card.compact > div:last-child a {
  margin-top: auto;
}

.ia-faq-grid .faq-item {
  min-width: 0;
}

@media (max-width: 1240px) {
  .nav-shell {
    gap: 18px;
  }

  .nav-links {
    gap: 3px;
  }

  .nav-links a {
    padding-inline: 7px;
    font-size: 13px;
  }

  .nav-links .nav-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    justify-content: flex-start;
    padding-inline: 14px;
    font-size: 15px;
  }

  .resource-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .nav-resource-row > a {
    flex: 1;
  }

  .resource-dropdown::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .ia-home-page .home-who-grid,
  .ia-stats-grid {
    grid-template-columns: 1fr;
  }

  .ia-home-page .home-who-stat-card {
    min-height: 170px;
  }
}

/* Full-site UI audit hardening */
html,
body,
#app {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
span,
summary,
label,
input,
textarea,
select,
.section-title,
.card-title,
.mini-label,
.kicker {
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

a,
button,
.btn {
  max-width: 100%;
}

img,
video,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - clamp(32px, 4vw, 56px), 1280px);
}

.section,
.ia-section,
.product-detail-page .section {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.page-hero .container,
.section-title > div,
.ia-section .section-title > div {
  min-width: 0;
}

h1 {
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.08;
}

.page-hero h1 {
  font-size: clamp(36px, 4.1vw, 60px);
}

h2,
.section-title h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.14;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.22;
}

p,
li,
dd,
summary {
  line-height: 1.72;
}

.btn,
.nav-links .nav-cta,
button[type="submit"] {
  min-height: 52px;
  min-width: 132px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
}

.btn-primary,
button[type="submit"] {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #ff6b2a);
  box-shadow: 0 18px 36px rgba(234, 81, 25, 0.24);
}

.btn-primary:hover,
button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 22px 44px rgba(234, 81, 25, 0.3);
}

.btn-secondary,
.btn-light {
  color: var(--text);
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover,
.btn-light:hover {
  color: var(--brand);
  border-color: rgba(234, 81, 25, 0.42);
  background: #fff;
}

.card-actions,
.hero-actions,
.cta-actions,
.product-hero-actions,
.home-who-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.card-actions a:not(.btn),
.resource-card a,
.mini-scenario a,
.solution-detail-card a,
.scenario-card a,
.text-link {
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.card-actions a:not(.btn):hover,
.resource-card a:hover,
.mini-scenario a:hover,
.solution-detail-card a:hover,
.scenario-card a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-card,
.feature-card,
.scenario-card,
.engine-card,
.ia-product-card,
.resource-card,
.option-card,
.mini-scenario,
.solution-detail-card,
.service-feature-card,
.software-feature-card,
.trust-tile,
.faq-item,
.product-detail-card,
.content-panel,
.story-card,
.contact-form,
.quote-side {
  min-width: 0;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 28px);
}

.product-card *,
.feature-card *,
.scenario-card *,
.engine-card *,
.ia-product-card *,
.resource-card *,
.option-card *,
.mini-scenario *,
.solution-detail-card *,
.service-feature-card *,
.software-feature-card *,
.trust-tile *,
.faq-item *,
.product-detail-card *,
.content-panel *,
.story-card *,
.quote-side * {
  min-width: 0;
}

.engine-grid,
.ia-product-grid,
.ia-process-grid,
.ia-feature-grid,
.ia-support-cards,
.ia-scenario-grid,
.ia-scenario-mini-grid,
.ia-option-grid,
.solution-template-grid,
.ia-resource-grid,
.ia-faq-grid,
.feature-grid,
.product-page-grid,
.product-detail-card-grid {
  align-items: stretch;
}

.engine-card,
.resource-card,
.option-card,
.mini-scenario,
.solution-detail-card,
.service-feature-card,
.software-feature-card,
.trust-tile,
.product-detail-card {
  display: flex;
  flex-direction: column;
}

.engine-card > :last-child,
.resource-card > :last-child,
.option-card > :last-child,
.mini-scenario > :last-child,
.solution-detail-card > :last-child,
.service-feature-card > :last-child,
.software-feature-card > :last-child,
.trust-tile > :last-child,
.product-detail-card > :last-child {
  margin-bottom: 0;
}

.ia-placeholder,
.placeholder-image,
.detail-placeholder-visual,
.product-card-image,
.ia-product-media,
.product-gallery-stage {
  max-width: 100%;
  overflow: hidden;
}

.ia-placeholder,
.placeholder-image,
.detail-placeholder-visual {
  aspect-ratio: 16 / 10;
}

.comparison-wrap,
.spec-table-wrap,
.product-specs-table,
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  max-width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td,
.spec-table th,
.spec-table td {
  white-space: normal;
  overflow-wrap: break-word;
  vertical-align: top;
}

.product-detail-shell,
.quote-layout,
.ia-software-layout,
.ia-support-grid,
.ia-trust-faq-grid,
.home-who-grid,
.story-grid,
.contact-layout,
.faq-page-grid {
  min-width: 0;
}

.product-info-panel {
  min-width: 0;
}

.product-info-panel h1,
.product-info-panel h2,
.product-info-panel p,
.product-model-switcher a,
.product-core-point {
  overflow-wrap: break-word;
}

.product-anchor-nav .container {
  max-width: 1280px;
}

.product-anchor-nav a,
.resource-subnav a {
  white-space: nowrap;
}

.resource-dropdown {
  pointer-events: auto;
}

.resource-dropdown a {
  min-width: 0;
  white-space: normal;
}

.faq-item summary {
  gap: 16px;
}

.faq-item summary span {
  min-width: 0;
}

.faq-item summary strong {
  flex: 0 0 auto;
  color: var(--brand);
}

.field,
.field input,
.field textarea,
.field select {
  min-width: 0;
  width: 100%;
}

.field input,
.field textarea,
.field select {
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 16px;
}

@media (max-width: 1180px) {
  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .product-info-panel {
    position: relative;
    top: auto;
  }

  .product-gallery-stage {
    min-height: 440px;
  }
}

@media (max-width: 900px) {
  .section,
  .ia-section,
  .product-detail-page .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .page-hero {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .nav-links {
    max-height: calc(100vh - var(--header-height) - var(--top-contact-height) - 28px);
    overflow-y: auto;
  }

  .resource-dropdown {
    max-height: none;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-core-points,
  .product-model-switcher > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, 1280px);
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .page-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  h2,
  .section-title h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  h3 {
    font-size: clamp(20px, 6vw, 25px);
  }

  .hero-actions,
  .cta-actions,
  .card-actions,
  .product-hero-actions,
  .home-who-actions,
  .button-row {
    align-items: stretch;
  }

  .btn,
  .nav-links .nav-cta,
  button[type="submit"] {
    width: 100%;
    min-height: 50px;
    white-space: normal;
    text-align: center;
  }

  .card-actions a:not(.btn),
  .resource-card a,
  .mini-scenario a,
  .solution-detail-card a,
  .scenario-card a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
  }

  .ia-product-copy dl {
    grid-template-columns: 1fr;
  }

  .product-gallery-stage {
    min-height: 320px;
    border-radius: 24px;
  }

  .product-gallery-slide {
    padding: 24px;
  }

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

  .product-info-panel,
  .contact-form,
  .quote-side {
    padding: 22px;
    border-radius: 24px;
  }

  .resource-subnav .container {
    width: min(100% - 24px, 1280px);
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .top-contact-link span {
    font-size: 12px;
  }

  .engine-card,
  .ia-product-card,
  .resource-card,
  .option-card,
  .mini-scenario,
  .solution-detail-card,
  .service-feature-card,
  .software-feature-card,
  .trust-tile {
    padding: 20px;
  }

  .ia-home-page .home-who-stat-card strong {
    font-size: 44px;
  }
}

/* Refined placeholder and home module polish */
.ia-placeholder,
.placeholder-media,
.detail-placeholder-visual,
.process-placeholder,
.software-placeholder,
.service-placeholder {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 90, 40, 0.1), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 56%, #f6f7f9 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #7a7f87;
}

.ia-placeholder::after,
.placeholder-media::after,
.detail-placeholder-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  pointer-events: none;
}

.ia-placeholder span,
.placeholder-media span,
.detail-placeholder-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #7a7f87;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.software-placeholder-frame,
.advantage-placeholder-frame,
.process-placeholder-media,
.trust-placeholder-frame {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 70% 18%, rgba(240, 90, 40, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.trust-placeholder-frame {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 70% 20%, rgba(240, 90, 40, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.ia-home-page .process-section,
.ia-home-page .software-platform-section,
.ia-home-page .service-support-section,
.ia-home-page .trust-faq-section {
  padding-top: clamp(56px, 6vw, 82px);
  padding-bottom: clamp(56px, 6vw, 82px);
}

.ia-home-page .process-section .section-title,
.ia-home-page .software-platform-section .section-title,
.ia-home-page .service-support-section .section-title,
.ia-home-page .trust-faq-section .section-title {
  margin-bottom: 36px;
}

.refined-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.refined-process-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 132px;
  min-height: 292px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.05);
  overflow: visible;
}

.refined-process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 90, 40, 0.25), rgba(240, 90, 40, 0.72));
}

.refined-process-card .step-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.08);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.process-card-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.process-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.refined-process-card .process-placeholder {
  min-height: 0;
  height: 132px;
  margin-top: 20px;
  border-radius: 20px;
}

.software-platform-layout {
  align-items: stretch;
  gap: 28px;
}

.software-platform-layout .software-placeholder {
  min-height: 0;
  height: 100%;
  max-height: 480px;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
}

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

.software-feature-card {
  position: relative;
  min-height: 104px;
  padding: 18px 20px;
  border-radius: 20px;
}

.software-feature-card span {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(17, 17, 17, 0.1);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.software-feature-card h3 {
  max-width: calc(100% - 46px);
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.28;
}

.software-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-support-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 3vw, 40px);
  align-items: start;
  margin-bottom: 24px;
}

.service-portrait-shell {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.service-portrait-card {
  position: relative;
  width: min(100%, 390px);
  min-height: 520px;
  max-height: 620px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 90, 40, 0.12), transparent 32%),
    #f7f8fa;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.service-portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 28%, rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.service-portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.service-portrait-card.is-switching img {
  opacity: 0.28;
  transform: scale(1.025);
}

.service-portrait-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(16, 16, 18, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.service-portrait-overlay span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.service-portrait-overlay strong {
  display: block;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.14;
}

.service-portrait-overlay p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.service-portrait-fallback {
  position: absolute;
  inset: 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 20%, rgba(240, 90, 40, 0.12), transparent 34%),
    #fff;
  color: var(--ink);
}

.service-portrait-fallback[hidden] {
  display: none !important;
}

.service-portrait-fallback strong {
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
}

.service-portrait-fallback p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-promise-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(240, 90, 40, 0.08), transparent 30%),
    #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.05);
}

.service-promise-card h3 {
  margin: 10px 0 14px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.18;
}

.service-promise-card > p:not(.mini-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-promise-card .ia-tag-row {
  margin: 22px 0;
}

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

.service-feature-card {
  position: relative;
  min-height: 126px;
  padding: 22px;
  border-radius: 22px;
}

.service-feature-card span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(17, 17, 17, 0.1);
  font-size: 24px;
  font-weight: 900;
}

.service-feature-card h3 {
  max-width: calc(100% - 44px);
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.service-feature-card.is-active {
  border-color: rgba(240, 90, 40, 0.42);
  background:
    radial-gradient(circle at 92% 10%, rgba(240, 90, 40, 0.12), transparent 34%),
    linear-gradient(145deg, #fffdfb 0%, #fff7f2 100%);
  box-shadow: 0 18px 42px rgba(240, 90, 40, 0.1);
}

.service-feature-card.is-active span,
.service-feature-card.is-active h3 {
  color: var(--brand);
}

.service-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.trust-data-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.trust-data-pill {
  min-width: 0;
  min-height: 164px;
  padding: 24px;
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 90, 40, 0.1), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #fffaf7 100%);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.05);
}

.trust-data-pill strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 900;
  line-height: 0.95;
  white-space: nowrap;
  word-break: keep-all;
}

.trust-data-pill span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.trust-data-pill p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.trust-faq-panel {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.05);
}

.faq-preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.faq-preview-heading.faq-preview-actions {
  justify-content: flex-end;
}

.faq-preview-heading h3 {
  margin: 6px 0 0;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.2;
}

.trust-faq-panel .ia-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-faq-panel .faq-item {
  border-radius: 18px;
}

.trust-faq-panel .faq-item summary {
  min-height: 62px;
  padding: 18px 20px;
}

.trust-faq-panel .faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .software-platform-layout,
  .service-support-overview {
    grid-template-columns: 1fr;
  }

  .software-platform-layout .software-placeholder,
  .service-visual-card .service-placeholder {
    height: 320px;
    max-height: none;
  }

  .trust-data-strip,
  .refined-support-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-stat-card {
    min-height: 96px;
  }
}

@media (max-width: 760px) {
  .refined-process-grid,
  .refined-software-grid,
  .refined-support-cards,
  .trust-data-strip,
  .trust-faq-panel .ia-faq-grid {
    grid-template-columns: 1fr;
  }

  .refined-process-card:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 32px;
    bottom: -22px;
    width: 1px;
    height: 22px;
  }

  .software-platform-layout .software-placeholder,
  .service-visual-card .service-placeholder {
    height: 260px;
  }

  .trust-faq-panel {
    padding: 20px;
  }

  .faq-preview-heading {
    display: grid;
    align-items: start;
  }

  .hero-stats-strip {
    gap: 12px;
    margin-top: 8px;
  }

  .hero-stat-card {
    min-height: 88px;
    padding: 18px;
    border-radius: 18px;
  }

  .hero-stat-card strong {
    font-size: clamp(30px, 9vw, 38px);
  }
}

@media (max-width: 430px) {
  .refined-process-card,
  .software-feature-card,
  .service-feature-card,
  .trust-data-pill {
    padding: 20px;
  }

  .trust-data-pill strong {
    font-size: 40px;
  }

  .hero-stat-card {
    padding: 16px;
  }

  .hero-stat-card span {
    font-size: 13px;
  }
}

/* Homepage hero cleanup and scenarios carousel */
.ia-hero {
  padding-bottom: clamp(54px, 6vw, 82px);
}

.ia-hero .hero-layout {
  padding-bottom: 0;
}

.ia-hero .hero-stage {
  min-height: clamp(440px, 48vw, 660px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.ia-hero .hero-combo-image {
  width: min(112%, 760px);
  max-height: min(700px, 76vh);
}

/* Homepage factory banner hero */
.ia-hero-banner {
  display: grid;
  min-height: clamp(720px, calc(100vh - var(--header-height)), 820px);
  padding: clamp(76px, 8vw, 112px) 0;
  place-items: center;
  color: #ffffff;
  text-align: center;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.08), transparent 38%),
    var(--hero-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ia-hero-banner::after {
  display: none;
}

.ia-hero-banner .hero-banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100% - 48px, 1000px);
  margin: 0 auto;
}

.ia-hero-banner .kicker {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
}

.ia-hero-banner .kicker::before {
  background: var(--brand);
}

.ia-hero-banner h1 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.ia-hero-banner h1 span {
  display: block;
}

.ia-hero-banner .hero-subtitle {
  max-width: 840px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.ia-hero-banner .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.ia-hero-banner .btn {
  min-height: 54px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 900;
}

.ia-hero-banner .btn-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(240, 90, 40, 0.34);
}

.ia-hero-banner .btn-primary:hover {
  background: #d94713;
  border-color: #d94713;
}

.ia-hero-banner .btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.ia-hero-banner .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
}

.ia-hero-banner .hero-tags {
  justify-content: center;
  margin-top: 24px;
}

.ia-hero-banner .hero-tags span {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.ia-home-page .home-who-section {
  padding-top: clamp(58px, 6vw, 82px);
}

.scenarios-section {
  overflow: hidden;
}

.scenario-carousel {
  position: relative;
  width: 100%;
  padding: 0 54px;
}

.scenario-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.scenario-track {
  display: flex;
  gap: 24px;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
}

.scenario-slide {
  position: relative;
  flex: 0 0 calc((100% - 24px) / 2);
  min-height: clamp(310px, 28vw, 376px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #151515;
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.14);
  isolation: isolate;
}

.scenario-slide-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 420ms ease, filter 420ms ease;
}

.scenario-slide-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.85), transparent 80%);
}

.scenario-slide-visual span {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.scenario-slide-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease, filter 420ms ease;
}

.scenario-slide-visual.has-image::before {
  display: none;
}

.scenario-slide-visual.has-image .scenario-fallback-label {
  display: none;
}

.scenario-slide-visual.has-image.is-fallback {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 90, 40, 0.28), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #1d1d1f, #36302d);
}

.scenario-slide-visual.has-image.is-fallback::before {
  display: block;
}

.scenario-slide-visual.has-image.is-fallback .scenario-fallback-label {
  display: inline-flex;
}

.scenario-tone-1 {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 90, 40, 0.34), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #1d1d1f, #36302d);
}

.scenario-tone-2 {
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 90, 40, 0.3), transparent 30%),
    radial-gradient(circle at 24% 72%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #18191d, #283036);
}

.scenario-tone-3 {
  background:
    radial-gradient(circle at 50% 15%, rgba(240, 90, 40, 0.24), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #171717, #272b28);
}

.scenario-tone-4 {
  background:
    radial-gradient(circle at 20% 78%, rgba(240, 90, 40, 0.28), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #171717, #302829);
}

.scenario-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.14) 100%);
}

.scenario-slide-copy {
  position: absolute;
  left: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 36px);
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.scenario-slide-copy h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.08;
}

.scenario-slide-copy p {
  max-width: 460px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.68;
}

.scenario-slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #ff6b2a);
  box-shadow: 0 16px 36px rgba(240, 90, 40, 0.28);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.scenario-slide:hover .scenario-slide-visual {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.scenario-slide:hover .scenario-slide-visual.has-image {
  transform: none;
  filter: none;
}

.scenario-slide:hover .scenario-slide-visual.has-image img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.scenario-slide-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 20px 42px rgba(240, 90, 40, 0.34);
  text-decoration: none;
}

.scenario-nav {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, color 180ms ease;
}

.scenario-nav.prev {
  left: 12px;
}

.scenario-nav.next {
  right: 12px;
}

.scenario-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 90, 40, 0.34);
  color: var(--brand);
}

.scenario-nav:disabled {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

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

.scenario-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.scenario-dots button.is-active {
  width: 26px;
  background: var(--brand);
}

@media (max-width: 1024px) {
  .scenario-carousel {
    padding: 0 46px;
  }

  .scenario-track {
    gap: 18px;
  }

  .scenario-slide {
    flex-basis: calc((100% - 18px) / 2);
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .ia-hero {
    padding-bottom: 48px;
  }

  .ia-hero .hero-stage {
    min-height: 340px;
  }

  .ia-hero-banner {
    min-height: clamp(620px, 78vh, 720px);
    padding: 72px 0;
    background-position: 58% center;
  }

  .ia-hero-banner .hero-banner-content {
    width: min(100% - 40px, 760px);
  }

  .ia-hero-banner h1 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.12;
  }

  .ia-hero-banner .hero-subtitle {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.68;
  }

  .ia-hero-banner .hero-actions {
    margin-top: 28px;
  }

  .scenario-carousel {
    padding: 0;
  }

  .scenario-track {
    gap: 14px;
  }

  .scenario-slide {
    flex-basis: 100%;
    min-height: 292px;
    border-radius: 24px;
  }

  .scenario-slide-copy h3 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .scenario-slide-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .scenario-nav {
    display: none;
  }

  .scenario-dots {
    margin-top: 16px;
  }
}

@media (max-width: 430px) {
  .ia-hero-banner {
    min-height: 660px;
    padding: 58px 0;
    background-position: 62% center;
  }

  .ia-hero-banner .hero-banner-content {
    width: min(100% - 32px, 430px);
  }

  .ia-hero-banner .kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .ia-hero-banner h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .ia-hero-banner .hero-subtitle {
    font-size: 15px;
  }

  .ia-hero-banner .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .ia-hero-banner .hero-actions .btn {
    flex: 1 1 150px;
    justify-content: center;
    min-width: 0;
    padding-inline: 20px;
  }

  .ia-hero-banner .hero-tags {
    gap: 8px;
    margin-top: 20px;
  }

  .ia-hero-banner .hero-tags span {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Three core engines layout refresh */
.engines-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 90, 40, 0.055), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.engines-section .section-title {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.engines-section .engine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.engines-section .engine-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 0%, rgba(240, 90, 40, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86));
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.07);
}

.engines-section .engine-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  margin-bottom: 26px;
}

.engines-section .engine-value {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.08);
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.engines-section .engine-index {
  position: static;
  color: rgba(17, 17, 17, 0.08);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.engines-section .engine-heading {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 94px;
  margin-bottom: 18px;
}

.engines-section .engine-title-en {
  color: #111;
  font-size: clamp(27px, 1.7vw, 31px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

.engines-section .engine-title-cn {
  margin-top: 8px;
  color: var(--brand);
  font-size: clamp(32px, 2.45vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.engines-section .engine-description {
  max-width: 96%;
  margin: 0 0 24px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.76;
}

.engines-section .engine-point-list {
  display: grid;
  gap: 10px;
  align-content: start;
  margin-top: 4px;
}

.engines-section .engine-point-list span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(240, 90, 40, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.075), rgba(255, 255, 255, 0.78));
  color: #242424;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.48;
}

.engines-section .engine-point-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.engines-section .engine-foot {
  position: static;
  justify-self: end;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(240, 90, 40, 0.36);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.engines-section .engine-card:hover .engine-point-list span {
  border-color: rgba(240, 90, 40, 0.2);
}

@media (max-width: 1180px) {
  .engines-section .engine-grid {
    grid-template-columns: 1fr;
  }

  .engines-section .engine-card {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    grid-template-rows: auto auto 1fr auto;
    column-gap: 28px;
  }

  .engines-section .engine-card-top,
  .engines-section .engine-heading,
  .engines-section .engine-description,
  .engines-section .engine-foot {
    grid-column: 1;
  }

  .engines-section .engine-point-list {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: stretch;
    align-content: center;
    margin-top: 0;
  }
}

@media (min-width: 1181px) {
  .engines-section .engine-title-en {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .engines-section .engine-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 26px;
  }

  .engines-section .engine-card-top,
  .engines-section .engine-heading,
  .engines-section .engine-description,
  .engines-section .engine-point-list,
  .engines-section .engine-foot {
    grid-column: auto;
    grid-row: auto;
  }

  .engines-section .engine-card-top {
    margin-bottom: 20px;
  }

  .engines-section .engine-index {
    font-size: 34px;
  }

  .engines-section .engine-description {
    max-width: none;
  }

  .engines-section .engine-heading {
    min-height: 0;
    margin-bottom: 16px;
  }

  .engines-section .engine-title-en {
    font-size: clamp(24px, 7vw, 32px);
    white-space: normal;
  }

  .engines-section .engine-title-cn {
    font-size: clamp(30px, 8vw, 40px);
  }

  .engines-section .engine-foot {
    margin-top: 22px;
    padding-top: 0;
  }
}

.integrated-system-section {
  background:
    radial-gradient(circle at 50% 44%, rgba(240, 90, 40, 0.075), transparent 24rem),
    radial-gradient(circle at 14% 12%, rgba(240, 90, 40, 0.035), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  overflow: hidden;
}

.integrated-system-heading {
  max-width: 1080px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.integrated-system-heading h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.integrated-system-heading p {
  max-width: 1000px;
  margin: 18px auto 0;
  color: #555e69;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.85;
}

.integrated-system-map {
  position: relative;
  max-width: 1280px;
  min-height: 760px;
  margin: 0 auto;
  isolation: isolate;
}

.integrated-system-map::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: min(62vw, 700px);
  aspect-ratio: 1;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 90, 40, 0.13), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(240, 90, 40, 0.055), transparent 58%);
  pointer-events: none;
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

.integrated-system-map::after {
  content: none;
}

.integrated-system-lines {
  position: absolute;
  inset: 70px 120px;
  width: auto;
  height: auto;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  transform: translateY(38px);
}

.system-loop-orbit,
.system-loop-line,
.system-center-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.system-loop-orbit {
  stroke: rgba(240, 90, 40, 0.2);
  stroke-width: 2;
  stroke-dasharray: 5 12;
  animation: integratedOrbitDrift 18s linear infinite;
}

.system-loop-line {
  stroke: rgba(240, 90, 40, 0.52);
  stroke-width: 2.6;
  stroke-dasharray: 18 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(240, 90, 40, 0.18));
  animation: integratedOrbitFlow 9s linear infinite;
}

.system-moving-arrow {
  fill: rgba(240, 90, 40, 0.94);
  filter: drop-shadow(0 2px 5px rgba(240, 90, 40, 0.3));
}

.system-center-line {
  stroke: rgba(240, 90, 40, 0.2);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-platform-node,
.system-engine-node,
.integrated-logic-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.system-platform-node {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 5;
  width: clamp(288px, 24vw, 334px);
  min-width: 0;
  padding: 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(234, 80, 26, 0.9);
  border-radius: 18px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: #1b1c1e;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.2),
    0 0 0 6px rgba(234, 80, 26, 0.04);
  isolation: isolate;
}

.system-platform-node::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.72;
  pointer-events: none;
}

.system-platform-node span {
  display: inline-flex;
  margin: 14px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(234, 80, 26, 0.38);
  border-radius: 999px;
  background: rgba(234, 80, 26, 0.14);
  color: #ff8a61;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.system-platform-node h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.system-platform-node p {
  margin: 16px 0 0;
  color: #c4c7cb;
  font-size: 14px;
  line-height: 1.72;
}

.system-platform-base {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: flex;
  width: calc(100% - 42px);
  height: 27px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 2px solid #ea501a;
  background: #111214;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
  pointer-events: none;
}

.system-platform-base i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.system-platform-base i:nth-child(2) {
  background: #ea501a;
  box-shadow: 0 0 8px rgba(234, 80, 26, 0.8);
}

.system-engine-node {
  position: absolute;
  z-index: 4;
  display: flex;
  width: clamp(270px, 23vw, 300px);
  min-width: 0;
  min-height: 246px;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
}

.system-engine-node-growth {
  top: 4px;
  left: 50%;
  width: clamp(340px, 31vw, 400px);
  translate: -50% 0;
}

.system-engine-node-efficiency {
  top: 55%;
  bottom: auto;
  left: clamp(0px, 2vw, 28px);
  translate: 0 -50%;
}

.system-engine-node-operations {
  top: 55%;
  right: clamp(0px, 2vw, 28px);
  bottom: auto;
  translate: 0 -50%;
}

.system-engine-value {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 10px;
  padding: 6px 11px;
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.08);
  color: rgba(240, 90, 40, 0.72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.system-engine-node h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(27px, 2vw, 32px);
  font-weight: 900;
  line-height: 1.12;
}

.system-engine-node p {
  margin: 14px 0 16px;
  color: #535b66;
  font-size: 13.5px;
  line-height: 1.64;
}

.system-engine-node ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.system-engine-node li {
  position: relative;
  padding-left: 16px;
  color: #24272d;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.42;
}

.system-engine-node li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.1);
}

.system-engine-node:hover {
  border-color: rgba(240, 90, 40, 0.24);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.07);
}

.system-engine-node-growth:hover {
  transform: translateY(-4px);
}

.system-engine-node-efficiency:hover {
  transform: translateY(-4px);
}

.system-engine-node-operations:hover {
  transform: translateY(-4px);
}

.integrated-system-map:has(.system-engine-node:hover) .system-platform-node {
  transform: translate(-50%, -50%) scale(1.015);
  border-color: rgba(234, 80, 26, 0.52);
  border-top-color: #ea501a;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.22),
    0 0 0 7px rgba(234, 80, 26, 0.06);
}

.integrated-system-map:has(.system-engine-node:hover) .system-loop-line {
  stroke: rgba(240, 90, 40, 0.92);
}

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

.integrated-logic-card {
  min-width: 0;
  padding: 22px;
  border-radius: 24px;
}

.integrated-logic-card span {
  color: rgba(240, 90, 40, 0.72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.integrated-logic-card h3 {
  margin: 12px 0 10px;
  color: #111111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.22;
}

.integrated-logic-card p {
  margin: 0;
  color: #535b66;
  font-size: 14px;
  line-height: 1.72;
}

.integrated-logic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.22);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.07);
}

@keyframes integratedOrbitFlow {
  to {
    stroke-dashoffset: -60;
  }
}

@keyframes integratedOrbitDrift {
  to {
    stroke-dashoffset: 68;
  }
}

@media (max-width: 1120px) {
  .integrated-system-map {
    min-height: 800px;
  }

  .integrated-system-map::before {
    width: min(64vw, 620px);
  }

  .integrated-system-lines {
    inset: 70px 68px;
  }

  .system-engine-node {
    width: clamp(252px, 25vw, 280px);
    min-height: 242px;
    padding: 22px;
  }

  .system-engine-node-growth {
    width: min(340px, 36vw);
  }

  .system-platform-node {
    width: 280px;
    padding: 28px 24px;
  }

  .system-engine-node-efficiency {
    left: 0;
  }

  .system-engine-node-operations {
    right: 0;
  }
}

@media (max-width: 860px) {
  .integrated-system-heading {
    margin-bottom: 28px;
  }

  .integrated-system-map {
    display: grid;
    min-height: 0;
    gap: 36px;
  }

  .integrated-system-map::before {
    inset: 88px auto 88px 50%;
    width: 1px;
    height: auto;
    aspect-ratio: auto;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(240, 90, 40, 0.18), rgba(17, 17, 17, 0.08), rgba(240, 90, 40, 0.18));
    box-shadow: none;
    filter: none;
    transform: translateX(-50%);
  }

  .integrated-system-lines {
    display: none;
  }

  .system-platform-node::after,
  .system-engine-node::after {
    content: none;
    display: none;
  }

  .system-platform-node,
  .system-engine-node {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    translate: none;
    transform: none;
  }

  .system-platform-node {
    order: 1;
    padding: 28px 24px;
  }

  .system-platform-base {
    display: none;
  }

  .system-platform-node::after,
  .system-engine-node-growth::after,
  .system-engine-node-operations::after {
    content: "↓";
    position: absolute;
    left: 50%;
    bottom: -31px;
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff6f1;
    border: 1px solid rgba(240, 90, 40, 0.18);
    color: var(--brand);
    font-size: 16px;
    font-weight: 900;
    transform: translateX(-50%);
  }

  .system-engine-node-growth {
    order: 2;
  }

  .system-engine-node-operations {
    order: 3;
  }

  .system-engine-node-efficiency {
    order: 4;
  }

  .system-engine-node-efficiency::after {
    content: "↺ 返回增长引擎";
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-top: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(240, 90, 40, 0.08);
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
  }

  .system-engine-node:hover,
  .system-engine-node-growth:hover,
  .system-engine-node-operations:hover,
  .integrated-system-map:has(.system-engine-node:hover) .system-platform-node {
    transform: translateY(-3px);
  }

  .integrated-logic-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .integrated-system-heading h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .system-engine-node,
  .integrated-logic-card {
    border-radius: 24px;
  }

  .system-engine-node {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .integrated-system-heading p {
    line-height: 1.78;
  }

  .system-platform-node {
    padding: 26px 22px;
  }

  .system-engine-node h3 {
    font-size: 28px;
  }
}

@media (min-width: 861px) {
  body.lang-en .integrated-system-map .system-platform-node {
    width: clamp(260px, 20vw, 286px);
    padding: 24px 22px;
  }

  body.lang-en .integrated-system-map .system-platform-node h3 {
    font-size: clamp(24px, 1.85vw, 27px);
    line-height: 1.08;
  }

  body.lang-en .integrated-system-map .system-platform-node span {
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }

  body.lang-en .integrated-system-map .system-platform-node p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  body.lang-en .integrated-system-map .system-engine-node-growth {
    z-index: 6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-loop-orbit,
  .system-loop-line {
    animation: none;
  }

  .system-moving-arrows {
    display: none;
  }
}

/* Home product showcase: simple product window cards */
.product-showcase .section-title {
  margin-bottom: clamp(34px, 4vw, 44px);
}

.product-showcase .ia-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-showcase .home-product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 82% 6%, rgba(240, 90, 40, 0.08), transparent 30%),
    #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.045);
}

.product-showcase .home-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.22);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.08);
}

.product-showcase .home-product-card .ia-product-media {
  width: 100%;
  min-height: 0;
  height: clamp(420px, 34vw, 560px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 90, 40, 0.1), transparent 30%),
    linear-gradient(145deg, #f7f8fa, #ffffff);
}

.product-showcase .home-product-card .ia-product-media img {
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 94%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-showcase .home-product-card:hover .ia-product-media img {
  transform: scale(1.02);
}

.product-showcase .home-product-card .ia-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 22px;
}

.product-showcase .home-product-card h3 {
  margin: 0;
  color: #0b0b0f;
  font-size: clamp(21px, 1.55vw, 25px);
  font-weight: 900;
  line-height: 1.18;
}

.product-showcase .home-product-card .ia-product-copy > p {
  min-height: 44px;
  margin: 10px 0 22px;
  color: #555555;
  font-size: 14.5px;
  line-height: 1.55;
}

.product-showcase .home-product-card .home-product-subtitle.is-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 7px 13px;
  border: 1px solid rgba(240, 90, 40, 0.2);
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.075);
  color: #d84918;
  font-weight: 850;
  line-height: 1.35;
}

.product-showcase .home-product-card .card-actions {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;
  gap: 12px;
}

.product-showcase .home-product-card .home-product-quote {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(240, 90, 40, 0.22);
}

.product-showcase .home-product-card .home-product-link {
  display: inline-flex;
  justify-content: center;
  min-height: 32px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.product-showcase .home-product-card .home-product-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Homepage product images use square transparent canvases. Size by height so
   the machine fills the card while the transparent side margins are clipped. */
.ia-home-page > .product-showcase .home-product-card {
  padding: 18px;
}

.ia-home-page > .product-showcase .home-product-card .ia-product-media {
  height: clamp(280px, 22vw, 320px);
}

.ia-home-page > .product-showcase .home-product-card .ia-product-media img {
  width: auto;
  max-width: none;
  height: clamp(258px, 20vw, 294px);
  max-height: none;
}

.ia-home-page > .product-showcase .home-product-card .ia-product-copy {
  padding-top: 16px;
}

.ia-home-page > .product-showcase .home-product-card .ia-product-copy > p {
  margin: 8px 0 16px;
}

@media (max-width: 1180px) {
  .product-showcase .ia-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ia-home-page > .product-showcase .home-product-card .ia-product-media {
    height: clamp(340px, 42vw, 460px);
  }

  .ia-home-page > .product-showcase .home-product-card .ia-product-media img {
    height: clamp(315px, 38vw, 420px);
  }
}

@media (max-width: 760px) {
  .product-showcase .ia-product-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase .home-product-card {
    padding: 22px;
  }

  .product-showcase .home-product-card .ia-product-media {
    height: clamp(420px, 112vw, 620px);
  }

  .ia-home-page > .product-showcase .home-product-card .ia-product-media {
    height: clamp(340px, 94vw, 440px);
  }

  .ia-home-page > .product-showcase .home-product-card .ia-product-media img {
    height: clamp(315px, 86vw, 405px);
  }

  .product-showcase .home-product-card .ia-product-copy > p {
    min-height: 44px;
  }
}

/* Home workflow, software and service interaction refresh */
.process-section .refined-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-section .refined-process-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  overflow: visible;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 88% 8%, rgba(240, 90, 40, 0.08), transparent 28%),
    #ffffff;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.05);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.process-section .refined-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.26);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.09);
}

.process-section .refined-process-card:not(:last-child)::after {
  top: 48%;
  right: -24px;
  width: 24px;
  background: linear-gradient(90deg, rgba(240, 90, 40, 0.16), rgba(240, 90, 40, 0.48));
}

.process-section .refined-process-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(48% - 4px);
  right: -25px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(240, 90, 40, 0.5);
  border-right: 1px solid rgba(240, 90, 40, 0.5);
  transform: rotate(45deg);
}

.process-section .refined-process-card .step-label {
  margin-bottom: 18px;
}

.process-section .refined-process-card .process-placeholder {
  order: 2;
  height: clamp(210px, 18vw, 260px);
  margin: 0 0 22px;
  border-radius: 24px;
}

.process-section .process-image {
  order: 2;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: 460px;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 90, 40, 0.08), transparent 34%),
    linear-gradient(135deg, #f6f7f9, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.process-section .process-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.32s ease;
}

.process-section .refined-process-card:hover .process-image img {
  transform: scale(1.03);
}

.process-section .process-card-copy {
  order: 3;
}

.process-section .process-card-copy h3 {
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 900;
}

.process-section .process-card-copy p {
  font-size: 15px;
}

.interactive-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 34px;
  align-items: stretch;
}

.interactive-visual {
  display: grid;
  min-height: 480px;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  place-items: center;
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 74% 16%, rgba(240, 90, 40, 0.11), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 58%, #f5f6f8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 48px rgba(17, 17, 17, 0.05);
}

.interactive-visual-frame {
  display: grid;
  width: min(78%, 440px);
  min-height: 250px;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 68% 24%, rgba(240, 90, 40, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.64);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.interactive-visual-frame > span {
  display: inline-flex;
  padding: 7px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #747b86;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.interactive-visual-frame strong {
  margin-top: 24px;
  color: #111111;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.12;
}

.interactive-visual-frame p {
  max-width: 320px;
  margin: 10px 0 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.65;
}

.interactive-panel {
  min-width: 0;
}

.interactive-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

.interactive-feature-card {
  position: relative;
  min-height: 126px;
  padding: 20px;
  cursor: pointer;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.interactive-feature-card:hover,
.interactive-feature-card:focus-visible,
.interactive-feature-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.34);
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 90, 40, 0.08), transparent 26%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.075);
  outline: none;
}

.interactive-feature-card span {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(17, 17, 17, 0.1);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.interactive-feature-card.is-active span,
.interactive-feature-card:hover span {
  color: rgba(240, 90, 40, 0.38);
}

.interactive-feature-card h3 {
  max-width: calc(100% - 48px);
  margin: 0 0 8px;
  color: #111111;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.28;
}

.interactive-feature-card.is-active h3,
.interactive-feature-card:hover h3 {
  color: var(--brand);
}

.interactive-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.interactive-feature-card em {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.interactive-feature-card em::after {
  content: " →";
  transition: transform 180ms ease;
}

.interactive-feature-card:hover em::after,
.interactive-feature-card.is-active em::after {
  transform: translateX(3px);
}

.service-support-section .service-support-overview {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  margin-bottom: 0;
}

.service-interactive-panel {
  display: grid;
  gap: 16px;
}

.service-interactive-panel .service-promise-card {
  padding: 26px;
  border-radius: 26px;
}

.service-interactive-panel .service-promise-card h3 {
  font-size: clamp(26px, 2.2vw, 34px);
}

.service-interactive-panel .service-promise-card .btn {
  align-self: flex-start;
}

.service-interactive-panel .refined-support-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-support-section .interactive-visual {
  min-height: 560px;
}

@media (max-width: 1180px) {
  .interactive-showcase,
  .service-support-section .service-support-overview {
    grid-template-columns: 1fr;
  }

  .interactive-visual,
  .service-support-section .interactive-visual {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .process-section .refined-process-grid,
  .interactive-card-grid,
  .service-interactive-panel .refined-support-cards {
    grid-template-columns: 1fr;
  }

  .process-section .refined-process-card {
    min-height: 0;
    padding: 22px;
  }

  .process-section .refined-process-card:not(:last-child)::after,
  .process-section .refined-process-card:not(:last-child)::before {
    display: none;
  }

  .process-section .refined-process-card .process-placeholder {
    height: 220px;
  }

  .process-section .process-image {
    aspect-ratio: 3 / 4;
    height: auto;
    max-height: 440px;
    margin-bottom: 20px;
  }

  .interactive-showcase {
    gap: 22px;
  }

  .interactive-visual,
  .service-support-section .interactive-visual {
    min-height: 300px;
    border-radius: 26px;
  }

  .interactive-visual-frame {
    width: min(88%, 360px);
    min-height: 190px;
    padding: 24px;
  }

  .interactive-visual-frame strong {
    font-size: clamp(26px, 8vw, 34px);
  }

  .interactive-feature-card {
    min-height: 118px;
  }

  .service-interactive-panel .service-promise-card .btn {
    align-self: stretch;
  }
}

/* Home service support portrait image showcase */
.service-support-section .service-support-overview {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 3vw, 40px);
  align-items: start;
  margin-bottom: 0;
}

.service-support-section .service-portrait-shell {
  min-height: 0;
}

.service-support-section .service-portrait-card {
  width: min(100%, 390px);
  min-height: 520px;
  max-height: 620px;
}

.service-interactive-panel .refined-support-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-interactive-panel .service-feature-card {
  min-height: 126px;
}

.service-support-section .service-phone-visual {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  min-height: clamp(500px, 42vw, 620px);
  max-height: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.service-support-section .service-phone-visual:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.service-support-section .service-mobile-visual {
  width: min(100%, 430px);
  min-height: clamp(500px, 39vw, 600px);
  overflow: visible;
}

.service-support-section .service-phone-device {
  width: min(310px, 25vw);
  aspect-ratio: 9 / 16;
  border-radius: 36px;
  cursor: default;
}

.service-support-section .service-phone-reference {
  display: none;
}

.service-support-section .service-phone-screen {
  inset: 12px;
  border-radius: 28px;
}

.service-support-section .service-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-support-section .service-phone-caption {
  width: min(100%, 430px);
  margin-top: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-support-section .service-phone-caption span {
  color: #1f2933;
  font-weight: 800;
}

.service-support-section .service-phone-caption strong {
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
}

.service-support-section .service-phone-caption p {
  color: #3f4650;
  font-size: 13.5px;
  line-height: 1.55;
}

.service-support-section .service-phone-fallback {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.service-support-section .service-phone-fallback span {
  color: #7a7f87;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .service-support-section .service-support-overview {
    grid-template-columns: 1fr;
  }

  .service-support-section .service-portrait-shell {
    justify-content: center;
  }

  .service-support-section .service-portrait-card {
    width: min(100%, 420px);
    min-height: 0;
    max-height: none;
  }

  .service-support-section .service-phone-visual {
    min-height: auto;
    max-height: none;
  }

  .service-support-section .service-mobile-visual {
    min-height: 520px;
  }

  .service-support-section .service-phone-device {
    width: min(300px, 44vw);
  }
}

@media (max-width: 760px) {
  .service-support-section .service-support-overview {
    gap: 22px;
  }

  .service-support-section .service-portrait-card {
    width: min(100%, 360px);
    min-height: 0;
    border-radius: 26px;
  }

  .service-portrait-overlay {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .service-portrait-overlay strong {
    font-size: 22px;
  }

  .service-support-section .service-phone-visual {
    min-height: auto;
    padding: 0;
  }

  .service-support-section .service-mobile-visual {
    width: min(100%, 390px);
    min-height: 500px;
    padding: 10px 0 0;
  }

  .service-support-section .service-phone-device {
    width: min(300px, 74vw);
  }

  .service-support-section .service-phone-caption {
    width: min(100%, 390px);
    margin-top: 18px;
  }

  .service-interactive-panel .refined-support-cards {
    grid-template-columns: 1fr;
  }

  .service-interactive-panel .service-feature-card {
    min-height: 0;
  }
}

/* Software platform real screenshot showcase */
.software-platform-section .software-platform-layout {
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
  gap: clamp(26px, 3vw, 38px);
}

.software-platform-section .software-visual {
  min-height: clamp(420px, 36vw, 520px);
  padding: clamp(22px, 2.4vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 12%, rgba(240, 90, 40, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 249, 0.92));
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.07);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.software-platform-section .software-visual:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.22);
  box-shadow: 0 28px 78px rgba(17, 17, 17, 0.09);
}

.software-visual-screen {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(330px, 30vw, 430px);
  place-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 90, 40, 0.07), transparent 30%),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: zoom-in;
}

.software-visual-screen img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(17, 17, 17, 0.08));
  transition: opacity 240ms ease, transform 240ms ease;
}

.software-visual-screen.is-switching img {
  opacity: 0.2;
  transform: translateY(8px) scale(0.985);
}

.software-zoom-hint {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(240, 90, 40, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.06);
  opacity: 0.86;
}

.software-zoom-preview {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 120;
  display: grid;
  width: min(86vw, 1180px);
  height: min(82vh, 760px);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: clamp(16px, 2vw, 26px);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  border: 1px solid rgba(240, 90, 40, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 12%, rgba(240, 90, 40, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 38px 110px rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.software-zoom-preview::before {
  content: "";
  position: fixed;
  inset: -100vh -100vw;
  z-index: -1;
  background: rgba(17, 17, 17, 0.18);
}

.software-visual:hover .software-zoom-preview,
.interactive-showcase.is-zoom-open .software-zoom-preview {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.software-zoom-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
}

.software-zoom-preview span {
  justify-self: center;
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
}

.software-image-fallback {
  display: grid;
  place-items: center;
  gap: 10px;
  width: min(86%, 420px);
  min-height: 220px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 18%, rgba(240, 90, 40, 0.08), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 58%, #f6f7f9 100%);
  color: #7a7f87;
}

.software-image-fallback[hidden] {
  display: none;
}

.software-image-fallback span {
  display: inline-flex;
  padding: 7px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.software-image-fallback strong {
  color: #111111;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
}

.software-image-fallback p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.software-visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
}

.software-visual-caption span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.software-visual-caption strong {
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.software-visual-caption p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.45;
}

.software-platform-section .software-feature-card {
  min-height: 116px;
  padding: 20px;
}

.software-platform-section .software-feature-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0);
  transition: background 220ms ease, width 220ms ease;
}

.software-platform-section .software-feature-card.is-active::after,
.software-platform-section .software-feature-card:hover::after {
  width: 42px;
  background: rgba(240, 90, 40, 0.68);
}

.software-platform-section .software-feature-card.is-active {
  border-color: rgba(240, 90, 40, 0.42);
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 90, 40, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 247, 243, 0.98), #ffffff);
}

@media (max-width: 1180px) {
  .software-platform-section .software-platform-layout {
    grid-template-columns: 1fr;
  }

  .software-platform-section .software-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .software-platform-section .software-visual {
    min-height: 300px;
    padding: 18px;
    border-radius: 26px;
  }

  .software-visual-screen {
    min-height: 250px;
    padding: 14px;
  }

  .software-zoom-hint {
    right: 12px;
    bottom: 10px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .software-zoom-preview {
    width: min(94vw, 680px);
    height: min(78vh, 560px);
    padding: 14px;
    border-radius: 24px;
  }

  .software-visual-caption {
    display: grid;
    gap: 6px;
  }

  .software-visual-caption strong {
    white-space: normal;
  }
}

.software-platform-section .software-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.software-mobile-visual {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(430px, 36vw, 520px);
  place-items: center;
  overflow: hidden;
  padding: clamp(22px, 2.8vw, 36px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 16%, rgba(240, 90, 40, 0.1), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.software-phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.12);
  filter: blur(40px);
  transform: translate(54px, -28px);
  pointer-events: none;
}

.software-phone-reference {
  position: absolute;
  right: -18%;
  bottom: -16%;
  width: min(72%, 430px);
  max-width: none;
  opacity: 0.1;
  filter: blur(0.2px) saturate(0.8);
  pointer-events: none;
  user-select: none;
}

.software-phone-device {
  position: relative;
  z-index: 2;
  width: min(252px, 58vw);
  aspect-ratio: 9 / 19.3;
  border-radius: 40px;
  background:
    linear-gradient(145deg, #222226, #050506 48%, #26211e);
  box-shadow:
    0 30px 70px rgba(17, 17, 17, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -20px 38px rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.software-phone-device:hover,
.software-phone-device:focus-visible {
  transform: translateY(-4px) scale(1.012);
  box-shadow:
    0 36px 90px rgba(17, 17, 17, 0.28),
    0 0 0 1px rgba(240, 90, 40, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.software-phone-device:focus-visible {
  outline: 3px solid rgba(240, 90, 40, 0.24);
  outline-offset: 5px;
}

.software-phone-device::before,
.software-phone-device::after {
  content: "";
  position: absolute;
  top: 24%;
  width: 4px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2b2928, #0c0c0d);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.software-phone-device::before {
  left: -3px;
}

.software-phone-device::after {
  right: -3px;
  top: 33%;
  height: 70px;
}

.software-phone-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 4;
  width: 74px;
  height: 22px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #050506;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

.software-phone-screen {
  position: absolute;
  inset: 11px;
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.75),
    inset 0 0 0 2px rgba(17, 17, 17, 0.12);
}

.software-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform-origin: center top;
  transition: opacity 240ms ease, transform 260ms ease;
}

.software-phone-device:hover .software-phone-screen img {
  transform: scale(1.025);
}

.software-mobile-visual.is-switching .software-phone-screen img {
  opacity: 0.2;
  transform: translateY(8px) scale(0.985);
}

.software-phone-screen .software-image-fallback {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.software-mobile-visual .software-zoom-hint {
  right: 18px;
  bottom: 18px;
}

.software-platform-section .software-visual-caption {
  align-items: flex-start;
  margin-top: 16px;
  padding: 16px 18px;
}

.software-platform-section .software-visual-caption span {
  padding-top: 3px;
}

.software-platform-section .software-visual-caption strong {
  font-size: 18px;
}

.software-platform-section .software-visual-caption p {
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .software-mobile-visual {
    min-height: 510px;
  }
}

@media (max-width: 760px) {
  .software-mobile-visual {
    min-height: 430px;
    padding: 20px;
    border-radius: 24px;
  }

  .software-phone-device {
    width: min(226px, 70vw);
    border-radius: 36px;
  }

  .software-phone-screen {
    inset: 10px;
    border-radius: 28px;
  }

  .software-phone-notch {
    top: 15px;
    width: 66px;
    height: 20px;
  }

  .software-phone-reference {
    width: 82%;
    opacity: 0.08;
  }
}

@media (max-width: 430px) {
  .software-mobile-visual {
    min-height: 400px;
  }

  .software-phone-device {
    width: min(210px, 76vw);
  }
}

/* Software platform: lighter phone showcase without the outer card frame */
.software-platform-section .software-platform-layout {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  align-items: center;
}

.software-platform-section .software-visual {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  min-height: clamp(500px, 42vw, 620px);
  max-height: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.software-platform-section .software-visual:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.software-mobile-visual {
  width: min(100%, 440px);
  min-height: clamp(500px, 39vw, 600px);
  padding: 18px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 52% 18%, rgba(240, 90, 40, 0.12), transparent 38%),
    radial-gradient(circle at 50% 72%, rgba(17, 17, 17, 0.07), transparent 34%);
  box-shadow: none;
}

.software-phone-glow {
  width: 300px;
  height: 300px;
  background: rgba(240, 90, 40, 0.11);
  filter: blur(44px);
  transform: translate(40px, -24px);
}

.software-phone-reference {
  right: 2%;
  bottom: 2%;
  width: min(58%, 300px);
  opacity: 0.08;
}

.software-phone-device {
  width: min(260px, 22vw);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -20px 38px rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
  animation: softwarePhoneFloat 5.2s ease-in-out infinite;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.software-phone-device:hover,
.software-phone-device:focus-visible {
  animation: none;
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(240, 90, 40, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

@keyframes softwarePhoneFloat {
  0%,
  100% {
    transform: translateY(-3px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.software-mobile-visual .software-zoom-hint {
  right: clamp(24px, 7vw, 54px);
  bottom: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.software-platform-section .software-visual-caption {
  width: min(100%, 430px);
  margin-top: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.software-platform-section .software-visual-caption span {
  color: #1f2933;
  font-weight: 800;
}

.software-platform-section .software-visual-caption strong {
  color: var(--brand);
  font-weight: 900;
}

.software-platform-section .software-visual-caption p {
  color: #3f4650;
  font-size: 13.5px;
}

@media (max-width: 1180px) {
  .software-platform-section .software-platform-layout {
    grid-template-columns: 1fr;
  }

  .software-platform-section .software-visual {
    min-height: auto;
    max-height: none;
  }

  .software-mobile-visual {
    min-height: 520px;
  }

  .software-phone-device {
    width: min(232px, 38vw);
  }
}

@media (max-width: 760px) {
  .software-platform-section .software-visual {
    min-height: auto;
    padding: 0;
  }

  .software-mobile-visual {
    width: min(100%, 390px);
    min-height: 500px;
    padding: 10px 0 0;
  }

  .software-phone-device {
    width: min(226px, 70vw);
  }

  .software-mobile-visual .software-zoom-hint {
    right: 18px;
    bottom: 20px;
  }

  .software-platform-section .software-visual-caption {
    width: min(100%, 390px);
    margin-top: 18px;
  }
}

@media (max-width: 430px) {
  .software-mobile-visual {
    width: 100%;
    min-height: 460px;
  }

  .software-phone-device {
    width: min(210px, 76vw);
  }

  .software-platform-section .software-visual-caption {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .software-phone-device {
    animation: none;
  }
}

/* Hero trust strip */
.ia-home-page .ia-hero-banner {
  min-height: clamp(620px, 68vh, 720px);
  padding: clamp(58px, 6vw, 86px) 0;
}

.ia-home-page .ia-hero-banner .hero-banner-content {
  transform: translateY(-8px);
}

.ia-home-page .ia-hero-banner .hero-subtitle {
  margin-top: 22px;
}

.ia-home-page .ia-hero-banner .hero-actions {
  margin-top: 28px;
}

.ia-home-page .ia-hero-banner .hero-tags {
  margin-top: 22px;
}

.hero-trust-strip-section {
  padding: 34px 0 66px;
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 90, 40, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.hero-trust-card {
  position: relative;
  display: grid;
  grid-template-rows: 46px auto;
  align-content: center;
  justify-items: start;
  min-height: 118px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 0%, rgba(240, 90, 40, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.045);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.hero-trust-card::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -28px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.07);
  pointer-events: none;
}

.hero-trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.22);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.07);
}

.hero-trust-card strong {
  display: block;
  color: #111111;
  font-size: clamp(32px, 2.5vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-trust-card span {
  display: block;
  margin-top: 10px;
  color: #6b7280;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .hero-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-trust-card {
    min-height: 108px;
  }
}

@media (max-width: 760px) {
  .ia-home-page .ia-hero-banner {
    min-height: clamp(560px, 72vh, 640px);
    padding: 54px 0;
  }

  .ia-home-page .ia-hero-banner .hero-banner-content {
    transform: none;
  }

  .hero-trust-strip-section {
    padding: 30px 0 56px;
  }

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

  .hero-trust-card {
    min-height: 104px;
    padding: 20px;
    border-radius: 20px;
  }

  .hero-trust-card:last-child {
    grid-column: 1 / -1;
  }

  .hero-trust-card strong {
    font-size: clamp(30px, 8vw, 36px);
  }

  .hero-trust-card span {
    margin-top: 8px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .hero-trust-grid {
    gap: 12px;
  }

  .hero-trust-card {
    padding: 18px;
  }
}

/* Hero trust strip and Who We Are build card refinement */
.hero-trust-card {
  border-color: rgba(240, 90, 40, 0.12);
}

.hero-trust-card strong {
  display: flex;
  width: 100%;
  height: 46px;
  max-width: 100%;
  align-items: flex-end;
  background: linear-gradient(135deg, #f05a28 0%, #ff7a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(34px, 2.4vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
  font-variant-numeric: tabular-nums;
}

.hero-trust-card:hover {
  border-color: rgba(240, 90, 40, 0.3);
}

.who-build-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 8%, rgba(240, 90, 40, 0.1), transparent 32%),
    radial-gradient(circle at 6% 92%, rgba(240, 90, 40, 0.05), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 247, 0.9));
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.055);
}

.who-build-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -52px;
  width: 156px;
  height: 156px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.07);
  pointer-events: none;
}

.who-build-eyebrow {
  position: relative;
  z-index: 1;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.who-build-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 16px 0 30px;
  color: #101014;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.who-build-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.who-build-item {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 90, 40, 0.06), transparent 38%),
    #f7f8fa;
  color: #30343b;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.who-build-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 90, 40, 0.32);
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 90, 40, 0.1), transparent 38%),
    #fff7f2;
}

@media (max-width: 1024px) {
  .who-build-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .hero-trust-card {
    grid-template-rows: 34px auto;
  }

  .hero-trust-card strong {
    height: 34px;
    font-size: clamp(26px, 7vw, 30px);
  }

  .hero-trust-card span {
    margin-top: 8px;
  }

  .who-build-card {
    min-height: auto;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .who-build-card h3 {
    margin-bottom: 22px;
    font-size: clamp(30px, 8vw, 40px);
  }

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

  .who-build-item {
    min-height: 58px;
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .hero-trust-card strong {
    font-size: 26px;
  }

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

/* Shared factory banner for top-level inner pages. */
.page-hero.page-hero-banner {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background-image: var(--page-hero-bg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.page-hero.page-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.48);
}

.page-hero.page-hero-banner .page-hero-grid {
  display: none;
}

.page-hero.page-hero-banner .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 0 24px;
  text-align: center;
}

.page-hero.page-hero-banner .kicker {
  justify-content: center;
  margin: 0 0 18px;
  color: #ff6b35;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.page-hero.page-hero-banner .kicker::before {
  background: #ff6b35;
}

.page-hero.page-hero-banner h1 {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.page-hero.page-hero-banner p:not(.kicker) {
  max-width: 820px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1024px) {
  .page-hero.page-hero-banner {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .page-hero.page-hero-banner {
    min-height: 360px;
    background-position: center center;
  }

  .page-hero.page-hero-banner .page-hero-content {
    padding: 0 22px;
  }

  .page-hero.page-hero-banner h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .page-hero.page-hero-banner p:not(.kicker) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Product page: align product series with the homepage product showcase system */
.product-showcase.product-page-series .ia-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-page-series .home-product-card {
  padding: 16px;
}

.product-page-series .home-product-card .ia-product-media {
  height: clamp(245px, 19vw, 285px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-series .home-product-card .ia-product-media img {
  flex: 0 0 auto;
  width: auto;
  height: 96%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.product-page-series .home-product-card .ia-product-copy {
  padding-top: 16px;
}

.product-page-series .home-product-card .mini-label {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.product-page-series .home-product-card .ia-product-copy > p {
  min-height: 0;
  margin-bottom: 16px;
}

.product-page-series .home-product-card .ia-tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 20px;
}

.product-page-series .home-product-card .ia-tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(240, 90, 40, 0.18);
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.07);
  color: #dd4819;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.product-page-series .home-product-card .card-actions {
  gap: 10px;
}

.product-page-series .home-product-card .card-actions .text-link {
  color: var(--brand);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .product-showcase.product-page-series .ia-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-page-series .home-product-card .ia-product-media {
    height: clamp(285px, 34vw, 360px);
  }
}

@media (max-width: 900px) {
  .product-showcase.product-page-series .ia-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-series .home-product-card .ia-product-media {
    height: clamp(290px, 44vw, 380px);
  }
}

@media (max-width: 600px) {
  .product-showcase.product-page-series .ia-product-grid {
    grid-template-columns: 1fr;
  }

  .product-page-series .home-product-card .ia-product-media {
    height: clamp(320px, 86vw, 430px);
  }
}

.comparison-common {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  align-items: stretch;
  gap: 16px;
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid rgba(234, 80, 26, 0.18);
  border-radius: 18px;
  background: #fff8f4;
}

.comparison-common > span {
  display: flex;
  align-items: center;
  color: #d84918;
  font-size: 15px;
  font-weight: 900;
}

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

.comparison-common-grid article {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 12px;
  background: #ffffff;
}

.comparison-common-grid article.is-wide {
  grid-column: 1 / -1;
  justify-items: center;
  text-align: center;
}

.comparison-common-grid small {
  color: #6b7078;
  font-size: 12px;
  font-weight: 800;
}

.comparison-common-grid strong {
  color: #111111;
  font-size: 15px;
  line-height: 1.35;
}

.product-comparison-section .comparison-table {
  min-width: 1120px;
}

@media (max-width: 760px) {
  .comparison-common {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .comparison-common-grid {
    grid-template-columns: 1fr;
  }
}

/* Support page: formal B2B service system */
.support-page .support-section {
  padding: clamp(56px, 6vw, 84px) 0;
}

.support-page .support-soft-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(240, 90, 40, 0.055), transparent 30%),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.support-page .section-title {
  margin-bottom: clamp(32px, 4vw, 44px);
}

.support-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

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

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

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

.support-card,
.support-flow-card,
.support-channel-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 90, 40, 0.07), transparent 34%),
    #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-card:hover,
.support-flow-card:hover,
.support-channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.26);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
}

.support-card {
  min-height: 210px;
  padding: 30px 30px 32px;
}

.support-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.1);
  color: var(--brand, #f05a28);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.support-card h3,
.support-flow-card h3,
.support-channel-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 900;
  line-height: 1.24;
}

.support-card p,
.support-flow-card p,
.support-channel-card p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.72;
}

.support-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.support-flow-card {
  min-height: 230px;
  padding: 30px 28px;
}

.support-flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.support-channel-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
}

.support-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand, #f05a28);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

.support-cta-section {
  padding: clamp(56px, 6vw, 84px) 0 clamp(72px, 7vw, 96px);
}

.support-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 90, 40, 0.2), transparent 32%),
    linear-gradient(135deg, #111 0%, #191919 54%, #2a1710 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
}

.support-cta-card h2 {
  margin: 12px 0 12px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.16;
}

.support-cta-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.support-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  align-items: center;
}

.support-cta-card .btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.support-cta-card .btn-secondary:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
}

@media (max-width: 1180px) {
  .support-grid-4,
  .support-grid-5,
  .support-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .support-page .support-section {
    padding: 52px 0;
  }

  .support-grid-3,
  .support-grid-4,
  .support-grid-5,
  .support-flow-grid {
    grid-template-columns: 1fr;
  }

  .support-card,
  .support-flow-card,
  .support-channel-card {
    min-height: auto;
    padding: 24px;
  }

  .support-flow-number {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 15px;
  }

  .support-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .support-cta-actions .btn {
    flex: 1 1 170px;
    justify-content: center;
  }
}

/* Product detail page refinements */
.product-key-feature-layout {
  display: grid;
  gap: 24px;
}

.product-priority-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-standard-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-key-feature-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 90, 40, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-key-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.26);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.08);
}

.product-key-feature-card.is-priority {
  min-height: 250px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.1), rgba(255, 255, 255, 0.96) 46%),
    #ffffff;
}

.product-key-feature-card .feature-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(240, 90, 40, 0.08);
  color: #f05a28;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.product-key-feature-card .feature-index {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(17, 17, 17, 0.08);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.product-key-feature-card.is-priority .feature-index {
  color: rgba(240, 90, 40, 0.14);
  font-size: 52px;
}

.product-key-feature-card h3 {
  margin: 28px 0 12px;
  color: #111111;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 900;
  line-height: 1.22;
}

.product-key-feature-card.is-priority h3 {
  font-size: clamp(26px, 2.15vw, 36px);
}

.product-key-feature-card p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

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

.product-scenario-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-scenario-card > .detail-placeholder-visual {
  min-height: 150px;
  margin: 16px 16px 0;
  border-radius: 20px;
  padding: 0;
}

.product-scenario-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.product-scenario-content h3 {
  margin: 0 0 10px;
}

.product-scenario-content p {
  min-height: 78px;
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.65;
}

.product-scenario-content .text-link {
  margin-top: auto;
}

.product-software-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 34px;
}

.product-software-visual {
  display: flex;
  min-height: 390px;
}

.product-software-visual .detail-placeholder-visual {
  width: 100%;
  min-height: 390px;
}

.product-software-copy {
  display: flex;
  min-height: 100%;
  align-items: center;
}

.product-software-tags {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-software-tags span {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border-color: rgba(240, 90, 40, 0.18);
  padding: 14px 12px;
  background: rgba(240, 90, 40, 0.07);
  color: #f05a28;
  font-weight: 800;
  text-align: center;
}

.product-faq-section .faq-answer p {
  color: #4b5563;
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .product-standard-feature-grid,
  .product-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-software-grid {
    grid-template-columns: 1fr;
  }

  .product-software-visual,
  .product-software-visual .detail-placeholder-visual {
    min-height: 340px;
  }

  .product-software-tags {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-priority-feature-grid,
  .product-standard-feature-grid,
  .product-scenario-grid {
    grid-template-columns: 1fr;
  }

  .product-key-feature-card,
  .product-key-feature-card.is-priority {
    min-height: auto;
    padding: 24px;
  }

  .product-key-feature-card .feature-index,
  .product-key-feature-card.is-priority .feature-index {
    top: 18px;
    right: 20px;
    font-size: 34px;
  }

  .product-key-feature-card h3,
  .product-key-feature-card.is-priority h3 {
    font-size: 24px;
  }

  .product-scenario-content p {
    min-height: auto;
  }

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

  .product-software-visual,
  .product-software-visual .detail-placeholder-visual {
    min-height: 280px;
  }
}

/* Structured service support page */
.support-structured-page {
  background:
    radial-gradient(circle at 8% 14%, rgba(240, 90, 40, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 48%, #ffffff 100%);
}

.support-structured-page .support-section {
  padding: 78px 0;
}

.support-structured-page .support-soft-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(240, 90, 40, 0.06), transparent 30%),
    #f8f9fb;
}

.support-promise-section .section-header {
  margin-bottom: 38px;
}

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

.support-promise-card {
  min-height: 136px;
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(240, 90, 40, 0.14);
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 90, 40, 0.1), transparent 30%),
    #ffffff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.045);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-promise-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.32);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.075);
}

.support-promise-value {
  color: #f05a28;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.support-promise-card span:not(.support-promise-value) {
  margin-top: 12px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 700;
}

.support-coverage-section .section-header {
  margin-bottom: 42px;
}

.support-coverage-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.support-coverage-step {
  position: relative;
  min-height: 210px;
  padding: 26px 22px;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
  z-index: 1;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-coverage-step:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
}

.support-coverage-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  left: calc(100% - 4px);
  width: 28px;
  height: 1px;
  background: rgba(240, 90, 40, 0.36);
}

.support-coverage-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 37px;
  left: calc(100% + 18px);
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(240, 90, 40, 0.5);
  border-right: 1px solid rgba(240, 90, 40, 0.5);
  transform: rotate(45deg);
}

.support-coverage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.1);
  color: #f05a28;
  font-size: 13px;
  font-weight: 900;
}

.support-coverage-step h3 {
  margin: 18px 0 10px;
  color: #101014;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.support-coverage-step p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.support-capability-heading-section {
  padding: 34px 0 18px !important;
  background: #ffffff;
}

.support-capability-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f05a28;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.support-capability-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #f05a28;
}

.support-capability-section {
  padding: 58px 0;
}

.support-capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 42px;
}

.support-capability-layout.is-reversed {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.support-capability-layout.is-reversed .support-capability-copy {
  order: 2;
}

.support-capability-layout.is-reversed .support-capability-visual {
  order: 1;
}

.support-capability-copy {
  padding: 38px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.045);
}

.support-capability-copy h2 {
  margin: 0 0 14px;
  color: #0b0b0f;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.support-capability-copy > p {
  max-width: 760px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.support-capability-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-capability-point {
  display: flex;
  gap: 12px;
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f8f9fb;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.support-capability-point:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 90, 40, 0.26);
  background: #fffaf7;
}

.support-capability-point > span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f05a28;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.support-capability-point h4 {
  margin: 1px 0 8px;
  color: #111111;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.support-capability-point p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.support-capability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.support-capability-visual {
  min-height: 460px;
}

.support-visual-card {
  height: 100%;
  min-height: 460px;
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 90, 40, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f7f9 56%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 48px rgba(0, 0, 0, 0.045);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.support-visual-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: #7a7f87;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.support-contact-header {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.support-contact-header h2 {
  margin: 0 0 14px;
  color: #0b0b0f;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.support-contact-header p {
  margin: 0 auto;
  max-width: 760px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.support-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

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

.support-channel-card-structured {
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.support-channel-card-structured .support-link {
  margin-top: auto;
}

@media (max-width: 1180px) {
  .support-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-coverage-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-coverage-step::before,
  .support-coverage-step::after {
    display: none;
  }

  .support-capability-layout,
  .support-capability-layout.is-reversed {
    grid-template-columns: 1fr;
  }

  .support-capability-layout.is-reversed .support-capability-copy,
  .support-capability-layout.is-reversed .support-capability-visual {
    order: initial;
  }

  .support-capability-visual,
  .support-visual-card {
    min-height: 360px;
  }

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

@media (max-width: 820px) {
  .support-structured-page .support-section {
    padding: 54px 0;
  }

  .support-promise-grid {
    gap: 14px;
  }

  .support-promise-card {
    min-height: 116px;
    padding: 22px;
  }

  .support-coverage-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-coverage-step {
    min-height: auto;
    padding-left: 56px;
  }

  .support-coverage-step::after {
    display: block;
    top: 58px;
    left: 27px;
    width: 1px;
    height: calc(100% + 14px);
    background: rgba(240, 90, 40, 0.24);
  }

  .support-coverage-step:last-child::after {
    display: none;
  }

  .support-coverage-step:not(:last-child)::before {
    display: block;
    top: calc(100% + 10px);
    left: 23px;
    width: 9px;
    height: 9px;
    border-top: 1px solid rgba(240, 90, 40, 0.48);
    border-right: 1px solid rgba(240, 90, 40, 0.48);
    transform: rotate(135deg);
  }

  .support-coverage-number {
    position: absolute;
    top: 24px;
    left: 18px;
    min-width: 0;
    width: 28px;
    height: 28px;
    padding: 0;
  }

  .support-capability-copy {
    padding: 28px 22px;
  }

  .support-capability-points {
    grid-template-columns: 1fr;
  }

  .support-capability-point {
    min-height: auto;
  }

  .support-capability-visual,
  .support-visual-card {
    min-height: 280px;
  }

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

@media (max-width: 560px) {
  .support-promise-grid,
  .support-channels-grid {
    grid-template-columns: 1fr;
  }

  .support-contact-actions,
  .support-capability-actions,
  .support-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-contact-actions .btn,
  .support-capability-actions .btn,
  .support-cta-actions .btn {
    width: 100%;
  }

  .support-capability-label {
    font-size: 12px;
  }
}

/* Service support page refinement: centered hierarchy without side placeholders */
.support-structured-page .support-promise-section .section-title,
.support-structured-page .support-coverage-section .section-title {
  justify-content: center;
  text-align: center;
}

.support-structured-page .support-promise-section .section-title > div,
.support-structured-page .support-coverage-section .section-title > div {
  max-width: 880px;
  margin: 0 auto;
}

.support-structured-page .support-promise-section .section-title p,
.support-structured-page .support-coverage-section .section-title p {
  margin-right: auto;
  margin-left: auto;
}

.support-structured-page .support-capability-heading-section,
.support-structured-page .support-capability-visual {
  display: none;
}

.support-structured-page .support-capability-layout,
.support-structured-page .support-capability-layout.is-reversed,
.support-structured-page .support-capability-layout.support-capability-layout-centered {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

.support-structured-page .support-capability-layout.is-reversed .support-capability-copy,
.support-structured-page .support-capability-layout.is-reversed .support-capability-visual {
  order: initial;
}

.support-structured-page .support-capability-copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.support-structured-page .support-capability-copy > p {
  margin-right: auto;
  margin-left: auto;
}

.support-structured-page .support-capability-points {
  max-width: 960px;
  margin: 28px auto 0;
  text-align: left;
}

.support-structured-page .support-capability-actions {
  justify-content: center;
}

@media (max-width: 820px) {
  .support-structured-page .support-capability-copy {
    padding: 28px 22px;
  }

}

.support-capability-section-support-channels .support-capability-points {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.support-capability-section-support-channels .support-capability-point {
  grid-column: span 2;
}

.support-capability-section-support-channels .support-capability-point:nth-child(4) {
  grid-column: 2 / span 2;
}

.support-capability-section-support-channels .support-capability-point:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 820px) {
  .support-capability-section-support-channels .support-capability-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-capability-section-support-channels .support-capability-point,
  .support-capability-section-support-channels .support-capability-point:nth-child(4) {
    grid-column: auto;
  }

  .support-capability-section-support-channels .support-capability-point:nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .support-capability-section-support-channels .support-capability-points {
    grid-template-columns: 1fr;
  }

  .support-capability-section-support-channels .support-capability-point:nth-child(5) {
    grid-column: auto;
  }
}

/* Solutions page polish: scenario selector, deployment flow, and SaaS operations */
.solutions-scenario-section,
.solutions-process-section,
.solutions-operations-section {
  overflow: hidden;
}

.solutions-scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 42px auto 0;
}

.solutions-scenario-card {
  position: relative;
  min-height: 154px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 90, 40, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.solutions-scenario-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(240, 90, 40, 0.18));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.solutions-scenario-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.2);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.08);
}

.solutions-scenario-card:hover::before {
  opacity: 1;
}

.solutions-scenario-card h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.solutions-scenario-card p {
  max-width: 22em;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.solutions-process-grid {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.solutions-process-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 7%;
  right: 7%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 90, 40, 0.04), rgba(240, 90, 40, 0.4), rgba(240, 90, 40, 0.04));
}

.solutions-process-card {
  position: relative;
  z-index: 1;
  min-height: 172px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 90, 40, 0.08), transparent 30%),
    #ffffff;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.solutions-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.22);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.08);
}

.solutions-process-card .step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 0 22px;
  border: 1px solid rgba(240, 90, 40, 0.2);
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.solutions-process-card h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.solutions-process-card p {
  margin: 0;
  color: #5f6673;
  font-size: 14px;
  line-height: 1.65;
}

.solutions-operations-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 42px auto 0;
}

.solutions-operation-card {
  position: relative;
  min-height: 154px;
  padding: 24px 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 90, 40, 0.08), transparent 38%),
    #ffffff;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.solutions-operation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.22);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.08);
}

.solutions-operation-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(240, 90, 40, 0.18);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.solutions-operation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(240, 90, 40, 0.18);
  border-radius: 12px;
  color: var(--brand);
  background: rgba(240, 90, 40, 0.08);
}

.solutions-operation-icon svg {
  width: 17px;
  height: 17px;
}

.solutions-operation-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.25;
  font-weight: 900;
}

.solutions-operation-card p {
  margin: 0;
  color: #5f6673;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .solutions-operations-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .solutions-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solutions-process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .solutions-scenario-grid,
  .solutions-process-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .solutions-operations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }

  .solutions-scenario-card,
  .solutions-process-card,
  .solutions-operation-card {
    min-height: auto;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .solutions-operations-grid {
    grid-template-columns: 1fr;
  }
}

/* Solutions case showcase marquee */
.solutions-case-showcase-section {
  overflow: hidden;
}

.case-showcase-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 34px;
  text-align: center;
}

.case-showcase-heading h2 {
  margin: 0;
  color: #07080a;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.case-showcase-marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 8px 0 24px;
  border-radius: 24px;
}

.case-showcase-marquee::before,
.case-showcase-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 3;
  width: min(120px, 10vw);
  height: 100%;
  pointer-events: none;
}

.case-showcase-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 249, 251, 1), rgba(248, 249, 251, 0));
}

.case-showcase-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 249, 251, 1), rgba(248, 249, 251, 0));
}

.case-showcase-track {
  display: flex;
  width: max-content;
  animation: case-showcase-scroll 56s linear infinite;
  will-change: transform;
}

.case-showcase-group {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  padding-right: 22px;
}

.case-showcase-marquee:hover .case-showcase-track {
  animation-play-state: paused;
}

.case-showcase-card {
  flex: 0 0 clamp(320px, 32vw, 520px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  transform: translateZ(0);
}

.case-showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.case-showcase-card:hover img {
  transform: scale(1.035);
}

@keyframes case-showcase-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-showcase-track {
    animation: none;
  }

  .case-showcase-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .case-showcase-marquee::-webkit-scrollbar {
    display: none;
  }
}

.case-showcase-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .case-showcase-heading {
    align-items: center;
    flex-direction: row;
    margin-bottom: 26px;
  }

  .case-showcase-card {
    flex-basis: min(84vw, 390px);
    border-radius: 20px;
  }

  .case-showcase-track {
    animation-duration: 44s;
  }

  .case-showcase-group {
    gap: 16px;
    padding-right: 16px;
  }
}

/* Homepage WHO WE ARE centered copy refinement */
.ia-home-page .ia-who-copy {
  justify-items: center;
  text-align: center;
}

.ia-home-page .ia-who-copy h2,
.ia-home-page .ia-who-copy .home-who-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ia-home-page .ia-who-copy .home-who-subtitle {
  max-width: 860px;
}

.ia-home-page .ia-who-copy .home-who-text {
  width: 100%;
  max-width: 1080px;
  margin: 24px auto 0;
  text-align: left;
}

.ia-home-page .ia-who-copy .home-who-text p {
  max-width: none;
}

.ia-home-page .ia-who-copy .ia-tag-row,
.ia-home-page .ia-who-copy .home-who-actions {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage software and service dual-end device presentation */
.software-platform-section .multi-device-visual,
.service-support-section .multi-device-visual {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  min-height: clamp(470px, 39vw, 570px);
  max-height: none;
  overflow: visible;
}

.multi-device-stage {
  position: relative;
  width: min(100%, 520px);
  height: clamp(390px, 34vw, 470px);
  isolation: isolate;
}

.multi-device-desktop {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  width: 88%;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(145deg, #2d2d31, #0b0b0c 58%, #272321);
  box-shadow:
    0 26px 68px rgba(17, 17, 17, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.multi-device-desktop:focus-visible {
  outline: 3px solid rgba(234, 80, 26, 0.26);
  outline-offset: 5px;
}

.multi-device-desktop-bar {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.78);
}

.multi-device-desktop-bar i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.multi-device-desktop-bar i:first-child {
  background: var(--brand);
}

.multi-device-desktop-bar strong {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
}

.multi-device-desktop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
}

.multi-device-desktop-screen > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  transition: opacity 220ms ease, transform 240ms ease;
}

.multi-device-desktop-stand {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 24%;
  height: 34px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #111214, #292b2f 48%, #101113);
  clip-path: polygon(34% 0, 66% 0, 82% 82%, 18% 82%);
}

.multi-device-desktop-stand::after {
  content: "";
  position: absolute;
  right: -24%;
  bottom: 0;
  left: -24%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #090a0b, #24262a 48%, #090a0b);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.16);
}

.software-platform-section .multi-device-stage .multi-device-phone,
.service-support-section .multi-device-stage .multi-device-phone {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 3;
  width: 31%;
  animation: none;
  transform: none;
  border-radius: 30px;
  box-shadow:
    0 24px 54px rgba(17, 17, 17, 0.2),
    0 0 0 1px rgba(234, 80, 26, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.software-platform-section .multi-device-stage .multi-device-phone:hover,
.service-support-section .multi-device-stage .multi-device-phone:hover {
  animation: none;
  transform: translateY(-3px);
}

.multi-device-phone .software-phone-notch {
  top: 12px;
  width: 54px;
  height: 16px;
}

.multi-device-phone .software-phone-screen {
  inset: 8px;
  border-radius: 23px;
}

.multi-device-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #25282d;
  font-size: 12px;
  font-weight: 800;
}

.multi-device-labels span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.multi-device-labels span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(234, 80, 26, 0.1);
}

.multi-device-stage .software-zoom-hint {
  right: 0;
  bottom: 0;
}

.multi-device-stage.is-switching [data-interactive-image] {
  opacity: 0.22;
  transform: scale(0.985);
}

.software-platform-section .multi-device-visual .software-visual-caption,
.service-support-section .multi-device-visual .service-phone-caption {
  width: min(100%, 520px);
  margin-top: 16px;
}

.service-support-section .service-device-stage .service-desktop-screen > img {
  object-fit: cover;
  object-position: center 35%;
}

.service-support-section .service-device-stage .multi-device-phone {
  width: 30%;
}

.service-support-section .service-device-stage .service-phone-screen img {
  object-position: center;
}

@media (max-width: 1180px) {
  .software-platform-section .multi-device-visual,
  .service-support-section .multi-device-visual {
    min-height: auto;
  }

  .multi-device-stage {
    width: min(100%, 600px);
    height: 480px;
  }
}

@media (max-width: 760px) {
  .multi-device-stage {
    width: min(100%, 520px);
    height: clamp(330px, 86vw, 430px);
  }

  .multi-device-desktop {
    top: 14px;
    width: 91%;
    padding: 6px;
    border-radius: 14px;
  }

  .multi-device-desktop-bar {
    min-height: 25px;
  }

  .multi-device-desktop-screen {
    border-radius: 8px;
  }

  .software-platform-section .multi-device-stage .multi-device-phone,
  .service-support-section .multi-device-stage .multi-device-phone {
    right: 0;
    bottom: 30px;
    width: 32%;
    border-radius: 25px;
  }

  .multi-device-phone .software-phone-screen {
    inset: 7px;
    border-radius: 19px;
  }

  .multi-device-labels {
    gap: 14px;
    font-size: 11px;
  }

  .multi-device-stage .software-zoom-hint {
    display: none;
  }

  .software-platform-section .multi-device-visual .software-visual-caption,
  .service-support-section .multi-device-visual .service-phone-caption {
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 430px) {
  .multi-device-stage {
    height: 320px;
  }

  .multi-device-desktop {
    width: 93%;
  }

  .software-platform-section .multi-device-stage .multi-device-phone,
  .service-support-section .multi-device-stage .multi-device-phone {
    width: 34%;
  }
}

/* Homepage smart vending comparison */
.smart-vending-comparison-section {
  position: relative;
  padding: 92px 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 46%, #fff8f4 100%);
}

.smart-vending-comparison-section + .engines-section {
  padding-top: 84px;
}

.smart-compare-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.smart-compare-heading > p {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.smart-compare-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #111111;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: 0;
}

.smart-compare-heading h2 span {
  display: block;
}

.smart-compare-heading > span {
  display: block;
  max-width: 820px;
  margin-top: 20px;
  color: #555b63;
  font-size: 17px;
  line-height: 1.75;
}

.smart-compare-products {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.smart-compare-product-card {
  display: grid;
  min-width: 0;
  min-height: 300px;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.42fr);
  grid-template-areas:
    "copy media"
    "tags tags";
  gap: 20px 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(17, 17, 17, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.smart-compare-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(17, 17, 17, 0.09);
}

.smart-compare-product-card.is-maychi {
  border-color: rgba(234, 80, 26, 0.28);
  background:
    radial-gradient(circle at 88% 14%, rgba(234, 80, 26, 0.09), transparent 30%),
    linear-gradient(145deg, #fffaf7, #ffffff 64%);
}

.smart-compare-product-card.is-maychi:hover {
  border-color: rgba(234, 80, 26, 0.48);
}

.smart-compare-product-card.is-traditional {
  background: linear-gradient(145deg, #ffffff, #f7f8fa);
}

.smart-compare-product-copy {
  grid-area: copy;
  min-width: 0;
}

.smart-compare-product-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  color: #50545b;
  font-size: 12px;
  font-weight: 800;
}

.is-maychi .smart-compare-product-kicker {
  background: rgba(234, 80, 26, 0.1);
  color: var(--brand);
}

.smart-compare-product-copy h3 {
  margin: 18px 0 10px;
  color: #111111;
  font-size: clamp(24px, 2.3vw, 31px);
  font-weight: 900;
  line-height: 1.18;
}

.smart-compare-product-copy p {
  margin: 0;
  color: #555b63;
  font-size: 14px;
  line-height: 1.7;
}

.smart-compare-product-media {
  position: relative;
  grid-area: media;
  display: grid;
  min-width: 0;
  width: 100%;
  height: 240px;
  place-items: center;
  overflow: hidden;
  margin: 0;
}

.smart-compare-product-media img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.smart-compare-product-card.is-maychi .smart-compare-product-media img {
  width: 84%;
  height: 84%;
}

.smart-compare-product-tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.smart-compare-product-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f2f4;
  color: #4d5259;
  font-size: 12px;
  font-weight: 800;
}

.is-maychi .smart-compare-product-tags span {
  background: rgba(234, 80, 26, 0.09);
  color: var(--brand);
}

.smart-compare-vs {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.18);
}

.smart-compare-list {
  display: grid;
  gap: 12px;
  margin-top: 54px;
}

.smart-compare-list-heading,
.smart-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  align-items: stretch;
}

.smart-compare-list-heading {
  padding: 0 22px 4px;
  color: #6a7078;
  font-size: 13px;
  font-weight: 800;
}

.smart-compare-list-heading span:first-child {
  color: var(--brand);
}

.smart-compare-list-heading strong {
  text-align: center;
}

.smart-compare-list-heading span:last-child {
  text-align: right;
}

.smart-compare-row {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.smart-compare-row:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 80, 26, 0.2);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.055);
}

.smart-compare-cell {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 20px 24px;
}

.smart-compare-cell p {
  margin: 0;
  color: #42474e;
  font-size: 14px;
  line-height: 1.6;
}

.smart-compare-maychi-cell {
  padding-left: 48px;
  background: rgba(255, 247, 243, 0.82);
}

.smart-compare-maychi-cell::before {
  content: "";
  position: absolute;
  left: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(234, 80, 26, 0.1);
}

.smart-compare-traditional-cell {
  background: #f7f8fa;
}

.smart-compare-dimension {
  display: grid;
  min-width: 0;
  place-content: center;
  gap: 4px;
  margin: 0;
  padding: 16px 12px;
  border-right: 1px solid rgba(17, 17, 17, 0.06);
  border-left: 1px solid rgba(17, 17, 17, 0.06);
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.smart-compare-dimension span {
  color: rgba(234, 80, 26, 0.58);
  font-size: 11px;
}

.smart-compare-mobile-label {
  display: none;
}

@media (max-width: 1024px) {
  .smart-compare-products {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 12px;
  }

  .smart-compare-product-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "tags";
    padding: 24px;
  }

  .smart-compare-product-media {
    height: 220px;
  }

  .smart-compare-list-heading,
  .smart-compare-row {
    grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  }

  .smart-compare-cell {
    padding: 18px;
  }

  .smart-compare-maychi-cell {
    padding-left: 42px;
  }

  .smart-compare-maychi-cell::before {
    left: 19px;
  }

}

@media (max-width: 700px) {
  .smart-vending-comparison-section {
    padding-top: 76px;
  }

  .smart-vending-comparison-section + .engines-section {
    padding-top: 76px;
  }

  .smart-compare-heading h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .smart-compare-heading > span {
    font-size: 15px;
  }

  .smart-compare-products {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
  }

  .smart-compare-vs {
    width: 52px;
    height: 52px;
    margin: -8px auto;
  }

  .smart-compare-product-card {
    grid-template-columns: minmax(0, 1fr) 120px;
    grid-template-areas:
      "copy media"
      "tags tags";
    gap: 18px;
  }

  .smart-compare-product-media {
    height: 210px;
  }

  .smart-compare-list {
    margin-top: 42px;
  }

  .smart-compare-list-heading {
    display: none;
  }

  .smart-compare-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "dimension"
      "maychi"
      "traditional";
    overflow: visible;
  }

  .smart-compare-dimension {
    grid-area: dimension;
    grid-template-columns: auto 1fr;
    place-content: initial;
    align-items: center;
    justify-content: start;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
    text-align: left;
  }

  .smart-compare-maychi-cell {
    grid-area: maychi;
    padding: 18px;
  }

  .smart-compare-traditional-cell {
    grid-area: traditional;
    padding: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
  }

  .smart-compare-maychi-cell::before {
    display: none;
  }

  .smart-compare-cell {
    display: grid;
    gap: 7px;
  }

  .smart-compare-mobile-label {
    display: block;
    color: #6b7078;
    font-size: 11px;
    font-weight: 900;
  }

  .smart-compare-maychi-cell .smart-compare-mobile-label {
    color: var(--brand);
  }

}

@media (max-width: 430px) {
  .smart-compare-product-card {
    grid-template-columns: 1fr 104px;
    padding: 21px;
  }

  .smart-compare-product-copy h3 {
    font-size: 23px;
  }

  .smart-compare-product-media {
    height: 182px;
  }

  .smart-compare-product-tags {
    gap: 6px;
  }

  .smart-compare-product-tags span {
    padding: 0 10px;
  }

}

/* Industry insight cards share one grid; expanded articles use the full content width. */
.resource-insight-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.resource-insight-card {
  grid-column: span 2;
  height: 100%;
  border-radius: 14px;
}

.resource-insight-card.is-expanded {
  grid-column: 1 / -1;
  display: block;
}

.resource-insight-card figure,
.resource-insight-card.is-featured figure {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.resource-insight-card figure img {
  object-fit: cover;
}

.resource-insight-copy,
.resource-insight-card.is-featured .resource-insight-copy {
  padding: 26px;
}

.resource-insight-copy h2,
.resource-insight-card.is-featured h2 {
  min-height: 3.9em;
  font-size: 24px;
  line-height: 1.3;
}

.resource-insight-copy > p {
  min-height: 5.25em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.resource-insight-gallery {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.resource-insight-card .resource-insight-gallery figure,
.resource-insight-card.is-expanded .resource-insight-gallery figure {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 10px;
  background: #f1f3f5;
}

.resource-insight-card .resource-insight-gallery img,
.resource-insight-card.is-expanded .resource-insight-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resource-insight-source {
  display: inline-flex;
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.resource-insight-card.is-expanded .resource-insight-gallery {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
}

.resource-insight-card.is-expanded .resource-insight-source {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1040px) {
  .resource-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-insight-card {
    grid-column: auto;
  }

  .resource-insight-card.is-expanded {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .resource-insight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-insight-card,
  .resource-insight-card.is-expanded {
    grid-column: auto;
  }

  .resource-insight-card.is-expanded {
    display: block;
  }

  .resource-insight-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .resource-insight-gallery {
    grid-template-columns: 1fr;
  }
}

/* Primary navigation refinement */
.site-header {
  isolation: isolate;
  border-bottom-color: rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.025);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 18%, rgba(234, 80, 26, 0.34) 50%, transparent 82%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.brand {
  position: relative;
  padding: 8px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.nav-links {
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(17, 17, 17, 0.065);
  border-radius: 18px;
  background: rgba(248, 249, 251, 0.84);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.055);
  backdrop-filter: blur(18px);
}

.nav-links > a:not(.nav-cta),
.nav-resource-row > a {
  position: relative;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 13px;
  color: #2b2e33;
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  transition: color 190ms ease, background 190ms ease, box-shadow 190ms ease, transform 190ms ease;
}

.nav-links > a:not(.nav-cta)::after,
.nav-resource-row > a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.35);
  transition: opacity 190ms ease, transform 190ms ease;
}

.nav-links > a:not(.nav-cta):hover,
.nav-resource-row > a:hover,
.nav-links > a:not(.nav-cta).is-active,
.nav-resource-row > a.is-active {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.065);
  transform: translateY(-1px);
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-resource-row > a:hover::after,
.nav-links > a:not(.nav-cta).is-active::after,
.nav-resource-row > a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:focus-visible,
.resource-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(234, 80, 26, 0.72);
  outline-offset: 3px;
}

.nav-resource-row {
  gap: 0;
}

.resource-toggle {
  width: 32px;
  height: 36px;
  margin-right: 3px;
  color: #5d626a;
  transition: color 190ms ease, background 190ms ease, transform 220ms ease;
}

.nav-resource:hover .resource-toggle,
.nav-resource:focus-within .resource-toggle,
.nav-resource.is-open .resource-toggle {
  color: var(--brand);
  background: rgba(234, 80, 26, 0.09);
  transform: rotate(180deg);
}

.resource-dropdown {
  top: calc(100% + 12px);
  display: grid;
  width: min(560px, calc(100vw - 32px));
  gap: 8px;
  margin-top: 0;
  padding: 12px;
  visibility: hidden;
  border: 1px solid rgba(17, 17, 17, 0.085);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px) scale(0.985);
  transform-origin: top center;
  backdrop-filter: blur(22px);
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.resource-dropdown::before {
  top: -14px;
  height: 14px;
}

.nav-resource:hover .resource-dropdown,
.nav-resource:focus-within .resource-dropdown,
.nav-resource.is-open .resource-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.resource-dropdown a {
  position: relative;
  min-height: 86px;
  padding: 15px 16px 15px 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.065);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.035);
  transition: color 190ms ease, border-color 190ms ease, box-shadow 190ms ease, transform 190ms ease;
}

.resource-dropdown a::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--brand);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 190ms ease, transform 190ms ease;
}

.resource-dropdown a:hover,
.resource-dropdown a:focus-visible {
  color: #111111;
  border-color: rgba(234, 80, 26, 0.22);
  background: #fffaf7;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.075);
  transform: translateY(-2px);
}

.resource-dropdown a:hover::before,
.resource-dropdown a:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.resource-dropdown strong {
  margin-bottom: 5px;
  color: #17191d;
  font-size: 14px;
  line-height: 1.35;
}

.resource-dropdown span {
  color: #6b7078;
  font-size: 12px;
  line-height: 1.5;
}

.nav-links > .nav-cta {
  position: relative;
  min-height: 46px;
  margin-left: 4px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #111111, #242424);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.18);
}

.nav-links > .nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.16) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.nav-links > .nav-cta:hover,
.nav-links > .nav-cta.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #111111, #2b2b2b);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.24), 0 0 0 1px rgba(234, 80, 26, 0.22);
  transform: translateY(-2px);
}

.nav-links > .nav-cta:hover::before {
  transform: translateX(120%);
}

.menu-toggle {
  border-color: rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
  transition: border-color 190ms ease, box-shadow 190ms ease, transform 190ms ease;
}

.menu-toggle:hover,
.menu-toggle.is-open {
  border-color: rgba(234, 80, 26, 0.32);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav-links {
    top: calc(var(--header-height) + var(--top-contact-height) + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    visibility: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 70px rgba(17, 17, 17, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    backdrop-filter: blur(22px);
    transition: opacity 190ms ease, transform 220ms ease, visibility 190ms ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links > a:not(.nav-cta),
  .nav-resource-row > a {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 12px;
  }

  .nav-links > a:not(.nav-cta)::after,
  .nav-resource-row > a::after {
    right: auto;
    bottom: 7px;
    left: 14px;
    width: 20px;
    transform: scaleX(0.35);
    transform-origin: left center;
  }

  .nav-links > a:not(.nav-cta):hover::after,
  .nav-resource-row > a:hover::after,
  .nav-links > a:not(.nav-cta).is-active::after,
  .nav-resource-row > a.is-active::after {
    transform: scaleX(1);
  }

  .nav-links > .nav-cta {
    width: 100%;
    min-height: 50px;
    margin: 6px 0 0;
    border-radius: 12px;
  }

  .nav-item,
  .nav-resource-row {
    width: 100%;
  }

  .nav-resource-row {
    display: flex;
  }

  .resource-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 2px 0 0 4px;
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 12px;
    background: #ffffff;
  }

  .resource-dropdown,
  .nav-resource:hover .resource-dropdown,
  .nav-resource:focus-within .resource-dropdown {
    position: static;
    display: grid;
    width: 100%;
    max-height: 0;
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    border: 0;
    border-radius: 14px;
    background: #f5f6f8;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 300ms ease, opacity 190ms ease, margin 190ms ease, padding 190ms ease, visibility 190ms ease;
  }

  .nav-resource.is-open .resource-dropdown {
    max-height: 680px;
    margin-top: 6px;
    padding: 8px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .resource-dropdown::before {
    display: none;
  }

  .resource-dropdown a {
    min-height: 0;
    padding: 13px 14px 13px 16px;
    border-radius: 10px;
    box-shadow: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    --top-contact-height: 76px;
    --header-height: 72px;
  }

  .top-contact-inner {
    min-height: var(--top-contact-height);
    padding: 6px 0;
  }

  .top-contact-links {
    gap: 2px 6px;
  }

  .nav-links {
    right: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after,
  .brand,
  .nav-links,
  .nav-links a,
  .resource-toggle,
  .resource-dropdown,
  .resource-dropdown a,
  .menu-toggle {
    transition: none;
  }
}

@media (min-width: 901px) {
  .nav-links {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-links .resource-dropdown {
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
    transition: none;
  }

  .nav-links .nav-resource:hover .resource-dropdown,
  .nav-links .nav-resource:focus-within .resource-dropdown,
  .nav-links .nav-resource.is-open .resource-dropdown {
    display: grid;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) !important;
  }
}

.resource-toggle,
.nav-resource:hover .resource-toggle,
.nav-resource:focus-within .resource-toggle,
.nav-resource.is-open .resource-toggle {
  transform: none !important;
}

.resource-chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: color 190ms ease, transform 220ms ease;
}

.nav-resource:hover .resource-chevron,
.nav-resource:focus-within .resource-chevron,
.nav-resource.is-open .resource-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

@media (prefers-reduced-motion: reduce) {
  .resource-chevron {
    transition: none;
  }
}

/* Language selector shared by desktop navigation and the mobile menu. */
.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #2b2e33;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: color 190ms ease, background 190ms ease, border-color 190ms ease;
}

.language-toggle:hover,
.language-switcher:focus-within .language-toggle,
.language-switcher.is-open .language-toggle {
  color: var(--brand);
  border-color: rgba(234, 80, 26, 0.18);
  background: rgba(234, 80, 26, 0.06);
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 190ms ease;
}

.language-switcher.is-open .language-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 132px;
  gap: 4px;
  padding: 6px;
  visibility: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 170ms ease, transform 190ms ease, visibility 170ms ease;
}

.language-switcher.is-open .language-menu,
.language-switcher:focus-within .language-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  color: #4f555d;
  font-size: 13px;
  font-weight: 700;
  transition: color 170ms ease, background 170ms ease;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a.is-active {
  color: var(--brand);
  background: rgba(234, 80, 26, 0.08);
}

.language-toggle:focus-visible,
.language-menu a:focus-visible {
  outline: 2px solid rgba(234, 80, 26, 0.72);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .language-switcher {
    width: 100%;
    padding: 4px 0 2px;
  }

  .language-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 12px;
  }

  .language-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 5px;
    padding: 5px;
    border: 0;
    border-radius: 10px;
    background: #f5f6f8;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .language-switcher.is-open .language-menu,
  .language-switcher:focus-within .language-menu {
    display: grid;
  }

  .language-menu a {
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-toggle,
  .language-chevron,
  .language-menu,
  .language-menu a {
    transition: none;
  }
}

/* Launch-ready legal pages and inquiry disclosure. */
.form-privacy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-privacy-link {
  margin: 0 4px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 48px clamp(24px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.legal-updated {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-section + .legal-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

@media (max-width: 640px) {
  .legal-content {
    padding: 30px 20px;
  }

  .legal-section + .legal-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }
}

/* Google Analytics / Ads consent controls. */
.footer-cookie-button {
  display: block;
  margin: 11px 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  font: inherit;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: #ffffff;
}

.footer-cookie-button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.tracking-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 125;
  display: grid;
  width: min(820px, calc(100vw - 36px));
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-top: 3px solid var(--brand);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.2);
  transform: translateX(-50%);
}

.tracking-consent-copy {
  min-width: 0;
}

.tracking-consent-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tracking-consent h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.tracking-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.tracking-consent a {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tracking-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.tracking-consent-actions .btn {
  min-width: 128px;
  min-height: 44px;
  padding: 10px 16px;
  white-space: nowrap;
}

body.has-tracking-consent .maychi-chat-root,
body.has-tracking-consent .back-to-top {
  visibility: hidden;
}

@media (max-width: 700px) {
  .tracking-consent {
    bottom: 10px;
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .tracking-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tracking-consent-actions .btn {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .tracking-consent-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tracking-consent {
    scroll-behavior: auto;
  }
}
