:root {
  --ink: #12161d;
  --ink-soft: #2d3440;
  --navy: #123b78;
  --blue: #1976d2;
  --aqua: #20b8c7;
  --green: #13a758;
  --red: #d82732;
  --orange: #f28c28;
  --yellow: #ffd23f;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --line: rgba(18, 22, 29, 0.1);
  --shadow: 0 22px 60px rgba(18, 22, 29, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    "Noto Sans TC",
    "Microsoft JhengHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(18, 22, 29, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  color: inherit;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.brand span {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
  opacity: 0.94;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-line {
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0d8e4a);
  box-shadow: 0 10px 22px rgba(19, 167, 88, 0.28);
}

.site-nav .nav-line::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  background: var(--surface-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 70px) clamp(20px, 5vw, 72px) 110px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 22, 0.9), rgba(7, 13, 22, 0.62) 48%, rgba(7, 13, 22, 0.22)),
    linear-gradient(180deg, rgba(7, 13, 22, 0.28), rgba(7, 13, 22, 0.62));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-weight: 950;
}

h1 {
  max-width: 11.5em;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.3vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
  isolation: isolate;
}

.btn > span {
  display: block;
  line-height: 1.35;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: -1;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0c8d45 55%, #086d38);
  box-shadow: 0 18px 42px rgba(19, 167, 88, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 54px rgba(19, 167, 88, 0.42);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 42px;
  left: clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  padding: 20px;
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.hero-wave {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 84px;
  fill: var(--surface);
}

.section {
  padding: clamp(76px, 10vw, 138px) clamp(20px, 5vw, 72px);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-head {
  width: min(920px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.intro {
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 184, 199, 0.12), transparent 30%),
    linear-gradient(180deg, #fff, var(--surface-soft));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.value-card,
.process-step,
.point {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(18, 22, 29, 0.08);
}

.value-card {
  padding: 28px;
}

.icon-badge {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: var(--red);
  background: linear-gradient(135deg, rgba(216, 39, 50, 0.1), rgba(32, 184, 199, 0.12));
}

.icon-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.draw {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: drawLine 4.8s ease-in-out infinite;
}

.value-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  background: #fff;
}

.split-copy {
  max-width: 660px;
}

.split-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px var(--green);
}

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

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.machine-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 32px clamp(20px, 4vw, 36px) 38px;
  border: 1px solid rgba(18, 59, 120, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #f9fbfd, #eaf2f8 55%, #edf5fa);
}

.machine-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 6px;
  border: 1px solid rgba(18, 59, 120, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 68% 30%, rgba(32, 184, 199, 0.16), transparent 30%),
    radial-gradient(circle at 26% 72%, rgba(18, 59, 120, 0.08), transparent 24%);
}

.machine-glow {
  position: absolute;
  z-index: 0;
  top: 14%;
  right: 12%;
  width: min(52%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.2), rgba(32, 184, 199, 0.05) 58%, transparent 72%);
  filter: blur(10px);
  animation: glowPulse 5.8s ease-in-out infinite;
}

.machine-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.42) 50%, transparent 62%);
  transform: translateX(-130%) skewX(-12deg);
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: shinePass 6.5s ease-in-out infinite;
}

.machine-chip {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 59, 120, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 32px rgba(18, 22, 29, 0.12);
  backdrop-filter: blur(10px);
}

.machine-chip strong {
  display: block;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.15;
}

.machine-chip span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.chip-one {
  top: 38px;
  left: 34px;
  animation: chipFloat 5.4s ease-in-out infinite;
}

.chip-two {
  top: 74px;
  right: 32px;
  animation: chipFloat 6.1s ease-in-out infinite reverse;
}

.chip-three {
  left: 28%;
  bottom: 34px;
  animation: chipFloat 5.8s ease-in-out infinite;
}

.machine-front {
  position: absolute;
  z-index: 2;
  right: 10%;
  bottom: 34px;
  width: min(54%, 420px);
  filter: drop-shadow(0 24px 36px rgba(18, 22, 29, 0.22));
  animation: machineBob 5.5s ease-in-out infinite;
}

.machine-side {
  position: absolute;
  z-index: 2;
  left: 10%;
  bottom: 54px;
  width: min(34%, 250px);
  opacity: 0.96;
  filter: drop-shadow(0 20px 30px rgba(18, 22, 29, 0.18));
  animation: machineSway 6.8s ease-in-out infinite;
}

.service-band {
  background:
    linear-gradient(180deg, #0f1824, #163766 58%, #0f1824);
  color: #fff;
}

.service-band .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1220px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  gap: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.service-media {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 6px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 450ms ease;
}

.service-body {
  position: relative;
  z-index: 1;
  padding: 22px 12px 14px;
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #111;
  background: var(--yellow);
  font-weight: 950;
}

.service-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: translateY(-4px) scale(1.02);
}

.detail-section {
  background: #fff;
}

.ai-detail {
  background:
    linear-gradient(180deg, #edf7ff, #ffffff 70%);
}

.finance-detail {
  background:
    linear-gradient(180deg, #f5f9ff, #ffffff 72%);
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  width: min(1220px, 100%);
  margin: 0 auto;
}

.detail-shell-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.detail-shell-reverse .detail-media {
  order: 2;
}

.detail-shell-reverse .detail-copy {
  order: 1;
}

.detail-media {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-media-single {
  justify-items: stretch;
}

.detail-focus {
  width: min(100%, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.96));
  box-shadow: var(--shadow);
}

.detail-focus img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
}

.detail-focus-portrait {
  aspect-ratio: 4 / 5.05;
  padding: 0;
}

.detail-focus-portrait img {
  object-fit: cover;
  object-position: center 38%;
}

.detail-focus-landscape {
  width: min(100%, 660px);
  aspect-ratio: 1.24 / 1;
  padding: 0;
}

.detail-focus-landscape img {
  object-fit: cover;
  object-position: center;
}

.ai-detail .detail-media,
.finance-detail .detail-media {
  align-content: center;
}

.ai-detail .detail-focus {
  width: min(100%, 620px);
}

.finance-detail .detail-focus {
  width: min(100%, 760px);
}

.detail-shell-reverse .detail-media-single {
  justify-items: end;
}

.detail-copy {
  max-width: 620px;
}

.detail-copy p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.detail-copy strong {
  color: var(--ink);
}

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

.detail-grid-compact .detail-card p {
  font-size: 0.98rem;
}

.detail-card {
  padding: 20px;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(18, 22, 29, 0.08);
}

.detail-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-card h3 {
  font-size: 1.18rem;
}

.detail-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.detail-copy .btn {
  min-width: min(100%, 320px);
}

.finance-detail .detail-copy {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.finance-detail .detail-grid {
  margin-bottom: 22px;
}

.finance-detail .detail-copy .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding-inline: 26px;
}

.finance-detail .detail-media-single {
  justify-items: stretch;
  align-content: stretch;
  height: 100%;
}

.finance-detail .detail-media {
  align-content: stretch;
  height: 100%;
}

.finance-detail .detail-shell {
  align-items: stretch;
}

.finance-detail .detail-focus {
  height: 100%;
}

.finance-detail .detail-focus-landscape {
  width: 100%;
  max-width: 760px;
  min-height: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.finance-detail .detail-focus-landscape img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.support-cards-section {
  background:
    linear-gradient(180deg, #eef7ff, #dff0fb 55%, #eef7ff);
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.support-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 120, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(18, 22, 29, 0.08);
}

.support-card-media {
  margin: 0;
  padding: 12px 12px 0;
}

.support-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.support-card-body {
  padding: 20px 20px 22px;
}

.support-card-body h3 {
  font-size: 1.42rem;
}

.support-card-body p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.support-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 800;
}

.support-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--aqua));
}

.support-list-4col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.support-card .text-link {
  margin-top: 18px;
}

.iot-section {
  background:
    linear-gradient(180deg, #fff, #f5fbff);
}

.iot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  width: min(1200px, 100%);
  margin: 0 auto;
}

.iot-visual {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.iot-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iot-points {
  display: grid;
  gap: 14px;
}

.point {
  padding: 20px;
}

.point strong {
  display: block;
  color: var(--navy);
  font-size: 1.16rem;
}

.point span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
}

.gallery-section {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #111;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-weight: 900;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 30%, #eef6ff 100%);
}

.process {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 12px 64px 214px;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-height: 362px;
  padding: 28px 28px 34px;
  overflow: visible;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 95%, var(--accent) 100%);
  box-shadow:
    0 26px 54px rgba(18, 22, 29, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  text-align: center;
  isolation: isolate;
}

.process-stage {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 10px 0 84px;
}

.process-stage::before,
.process-stage::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.process-stage::before {
  left: -13%;
  top: 82px;
  width: min(34vw, 520px);
  height: min(24vw, 340px);
  border-radius: 0 0 80% 0;
  background:
    radial-gradient(circle at 48% 52%, rgba(83, 147, 255, 0.1), transparent 58%),
    linear-gradient(135deg, rgba(84, 132, 255, 0.14), rgba(84, 132, 255, 0.02));
  filter: blur(1px);
}

.process-stage::after {
  right: -10%;
  bottom: 74px;
  width: min(28vw, 420px);
  height: min(18vw, 260px);
  border-radius: 65% 0 0 0;
  background:
    radial-gradient(circle at 35% 42%, rgba(103, 180, 255, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(96, 160, 255, 0.12), rgba(96, 160, 255, 0.02));
}

.process-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
}

.process-glow-left {
  top: 86px;
  left: 15%;
  width: 210px;
  height: 210px;
  background: rgba(251, 146, 60, 0.18);
}

.process-glow-right {
  top: 96px;
  right: 17%;
  width: 260px;
  height: 260px;
  background: rgba(59, 130, 246, 0.16);
}

.process-spark {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-radius: 4px;
  pointer-events: none;
}

.process-spark-left {
  left: 28%;
  top: 188px;
  background: linear-gradient(135deg, #f59e0b, #fb923c);
}

.process-spark-right {
  right: 22%;
  top: 124px;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.process-dots {
  position: absolute;
  top: 112px;
  right: 8%;
  width: 170px;
  height: 134px;
  background-image: radial-gradient(rgba(37, 99, 235, 0.2) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  opacity: 0.5;
  pointer-events: none;
}

.process-head {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.process-head h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.06;
}

.process-card-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 232px));
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

.process-step::before,
.process-step::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-step::before {
  top: 48%;
  right: -72px;
  width: 88px;
  height: 56px;
  border: 2px dashed rgba(59, 130, 246, 0.5);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 48px 0 0;
}

.process-step::after {
  top: calc(48% - 18px);
  right: -30px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.22);
}

.process-step:last-child::before,
.process-step:last-child::after {
  display: none;
}

.process-number {
  display: inline-flex;
  color: var(--accent);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96));
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow:
    0 16px 28px var(--accent-shadow),
    0 0 0 8px rgba(255, 255, 255, 0.62);
}

.process-icon-line {
  font-size: 1.7rem;
  font-weight: 950;
  letter-spacing: 0;
}

.process-icon-svg svg,
.process-highlight-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.34rem, 1.9vw, 1.72rem);
  line-height: 1.2;
}

.process-accent-line {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 8px 18px var(--accent-shadow);
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.process-step-line {
  --accent: #2563eb;
  --accent-shadow: rgba(37, 99, 235, 0.18);
  transform: translateY(88px);
}

.process-step-line::after {
  content: "›";
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.process-step-ai {
  --accent: #10b981;
  --accent-shadow: rgba(16, 185, 129, 0.18);
  transform: translateY(0);
}

.process-step-ai::before {
  border-color: rgba(251, 146, 60, 0.5);
}

.process-step-ai::after {
  content: "›";
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.process-step-finance {
  --accent: #f97316;
  --accent-shadow: rgba(249, 115, 22, 0.18);
  transform: translateY(48px);
}

.process-step-finance::before {
  border-color: rgba(37, 99, 235, 0.45);
}

.process-step-finance::after {
  content: "›";
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.process-step-launch {
  --accent: #2563eb;
  --accent-shadow: rgba(37, 99, 235, 0.18);
  transform: translateY(34px);
}

.process-step-line .process-icon-line {
  color: #2563eb;
}

.process-character,
.process-mascot,
.process-machine {
  position: absolute;
  margin: 0;
  pointer-events: none;
}

.process-character img,
.process-mascot img,
.process-machine img {
  display: block;
  width: 100%;
  height: auto;
}

.process-character-left {
  left: 10px;
  bottom: 92px;
  width: min(14vw, 196px);
  z-index: 1;
}

.process-character-right {
  right: 8px;
  bottom: 88px;
  width: min(15vw, 208px);
  z-index: 1;
}

.process-mascot {
  right: 246px;
  bottom: 48px;
  width: min(8.2vw, 118px);
  z-index: 1;
}

.process-machine {
  right: 108px;
  bottom: 42px;
  width: min(10.4vw, 156px);
  z-index: 1;
}

.process-highlights {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1160px, calc(100% - 48px));
  margin: 18px auto 0;
  padding: 18px 28px;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(18, 22, 29, 0.08);
}

.process-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
}

.process-highlight + .process-highlight {
  border-left: 1px solid rgba(18, 59, 120, 0.12);
}

.process-highlight-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #2a5fb9;
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
}

.process-highlight-icon svg {
  width: 28px;
  height: 28px;
}

.process-highlight strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.process-highlight span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.report-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(32, 184, 199, 0.16), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(19, 167, 88, 0.13), transparent 28%),
    linear-gradient(180deg, #eef7fd 0%, #ffffff 56%, #eef7fd 100%);
}

.report-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(18, 59, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 120, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 68% 48%, #000 0 28%, transparent 58%);
}

.report-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4.8vw, 58px);
  border: 1px solid rgba(18, 59, 120, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(32, 184, 199, 0.1), rgba(25, 118, 210, 0.1));
  box-shadow: 0 30px 80px rgba(18, 59, 120, 0.14);
}

.report-copy {
  position: relative;
  min-width: 0;
}

.report-copy h2 {
  max-width: 11em;
  text-wrap: balance;
}

.report-copy h2 span {
  display: block;
}

.report-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.report-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(24px, 3.2vw, 38px);
}

.report-value-item {
  min-width: 0;
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(18, 59, 120, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 34px rgba(18, 59, 120, 0.08);
}

.report-value-item span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  font-weight: 950;
  letter-spacing: 0;
}

.report-value-item strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.report-value-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.report-cta-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: clamp(24px, 3.4vw, 36px);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(32, 184, 199, 0.5), transparent 28%),
    linear-gradient(135deg, #061426 0%, #123b78 56%, #0c8d51 138%);
  box-shadow: 0 26px 60px rgba(6, 20, 38, 0.24);
}

.report-cta-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.report-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-card-head span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #081426;
  background: var(--yellow);
  font-size: 0.88rem;
  font-weight: 950;
  white-space: nowrap;
}

.report-card-head strong {
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 950;
  line-height: 1.25;
  text-align: right;
}

.report-document {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(18, 59, 120, 0.1),
    0 20px 40px rgba(6, 20, 38, 0.2);
}

.report-doc-top {
  display: flex;
  gap: 8px;
}

.report-doc-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(18, 59, 120, 0.2);
}

.report-doc-top span:nth-child(2) {
  background: rgba(32, 184, 199, 0.52);
}

.report-doc-top span:nth-child(3) {
  background: rgba(19, 167, 88, 0.52);
}

.report-doc-title small {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.report-doc-title strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 950;
}

.report-doc-score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(32, 184, 199, 0.12), rgba(25, 118, 210, 0.1));
}

.report-doc-score > span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
  font-weight: 950;
}

.report-doc-score strong,
.report-doc-score small {
  display: block;
}

.report-doc-score small {
  color: var(--ink-soft);
}

.report-doc-bars {
  display: grid;
  gap: 9px;
}

.report-doc-bars span {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(18, 59, 120, 0.1);
}

.report-doc-bars span::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--green));
}

.report-doc-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.report-doc-checks span {
  padding: 9px 6px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(18, 59, 120, 0.08);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.report-cta-copy {
  position: relative;
  z-index: 1;
}

.report-cta-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(1.2rem, 1.6vw, 1.48rem);
  font-weight: 950;
  line-height: 1.25;
}

.report-cta-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.report-cta-card .btn {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
}

.closing-cta {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(rgba(7, 13, 22, 0.78), rgba(7, 13, 22, 0.78)),
    url("./assets/store-machines.jpg") center / cover;
}

.closing-inner {
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.closing-inner .eyebrow {
  color: var(--yellow);
}

.closing-inner p:not(.eyebrow) {
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.sticky-line {
  position: fixed;
  z-index: 1100;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 28px);
  min-height: 56px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0b7e40);
  box-shadow: 0 18px 46px rgba(19, 167, 88, 0.44);
  font-weight: 950;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  animation: pulseLine 2.4s ease-in-out infinite;
}

.sticky-line svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-line:hover,
.sticky-line:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(19, 167, 88, 0.52);
}

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

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

@keyframes drawLine {
  0%,
  15% {
    stroke-dashoffset: 160;
  }
  45%,
  80% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -160;
  }
}

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

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

@keyframes pulseLine {
  0%,
  100% {
    box-shadow: 0 18px 46px rgba(19, 167, 88, 0.42);
  }
  50% {
    box-shadow: 0 18px 46px rgba(19, 167, 88, 0.42), 0 0 0 12px rgba(19, 167, 88, 0.12);
  }
}

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

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

@keyframes shinePass {
  0%,
  14% {
    transform: translateX(-130%) skewX(-12deg);
  }
  34%,
  100% {
    transform: translateX(130%) skewX(-12deg);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 13px;
    font-size: 0.88rem;
  }

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

  .split-section,
  .detail-shell,
  .detail-shell-reverse,
  .iot-layout,
  .report-section {
    grid-template-columns: 1fr;
  }

  .detail-shell-reverse .detail-media,
  .detail-shell-reverse .detail-copy {
    order: initial;
  }

  .report-copy {
    position: static;
  }

  .report-shell {
    grid-template-columns: 1fr;
  }

  .report-value-grid {
    grid-template-columns: 1fr;
  }

  .machine-stage {
    min-height: 560px;
  }

  .chip-three {
    left: 22%;
  }

  .detail-secondary {
    width: min(48%, 280px);
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
    white-space: normal;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-line {
    justify-content: center;
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 112px 20px 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 13, 22, 0.82), rgba(7, 13, 22, 0.56) 46%, rgba(7, 13, 22, 0.86)),
      rgba(7, 13, 22, 0.26);
  }

  .hero-content {
    max-width: none;
    padding-top: 0;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
  }

  .hero-proof {
    position: relative;
    grid-template-columns: 1fr;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    margin-top: 18px;
  }

  .hero-proof div {
    padding: 14px 16px;
  }

  .hero-wave {
    display: none;
  }

  .machine-stage {
    min-height: 520px;
  }

  .machine-chip {
    max-width: 200px;
  }

  .service-media {
    min-height: 230px;
  }

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

  .detail-focus {
    width: min(100%, 520px);
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 66px 18px;
  }

  .report-shell {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .report-copy h2 {
    max-width: none;
    font-size: clamp(1.85rem, 9vw, 2.25rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: auto;
    word-break: break-word;
  }

  .report-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-card-head strong {
    text-align: left;
  }

  .report-doc-title strong {
    font-size: 1.28rem;
  }

  .report-doc-checks {
    grid-template-columns: 1fr;
  }

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

  .value-card,
  .process-step {
    padding: 22px;
  }

  .service-card {
    min-height: 0;
  }

  .machine-stage {
    min-height: 500px;
    padding: 22px 16px 26px;
  }

  .machine-front {
    right: 5%;
    bottom: 22px;
    width: min(58%, 260px);
  }

  .machine-side {
    left: 4%;
    bottom: 36px;
    width: min(38%, 165px);
  }

  .machine-chip {
    max-width: 160px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .machine-chip strong {
    font-size: 0.82rem;
  }

  .machine-chip span {
    font-size: 0.74rem;
  }

  .chip-one {
    top: 24px;
    left: 18px;
  }

  .chip-two {
    top: 82px;
    right: 18px;
  }

  .chip-three {
    left: 16px;
    bottom: 16px;
  }

  .service-media {
    min-height: 210px;
  }

  .detail-copy p {
    font-size: 1rem;
  }

  .detail-card {
    padding: 18px;
  }

  .detail-focus-portrait {
    aspect-ratio: 4 / 4.95;
  }

  .detail-focus-landscape {
    aspect-ratio: 1.1 / 1;
  }

  .support-card-body {
    padding: 18px 18px 20px;
  }

  .support-card-body h3 {
    font-size: 1.28rem;
  }

  .support-list-4col {
    grid-template-columns: 1fr;
  }

  .sticky-line {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .btn-secondary {
    font-size: 0.96rem;
  }

  .hero-actions .btn-secondary {
    min-height: 60px;
    padding: 16px 20px;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-actions .btn-secondary > span {
    width: 100%;
    line-height: 1.45;
  }
}

.flagship-machine-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #0b1421 46%, #0c1727 100%);
}

.flagship-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  width: min(1220px, 100%);
  margin: 0 auto;
}

.flagship-copy {
  max-width: 620px;
}

.flagship-kicker {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.58rem);
  font-weight: 950;
  line-height: 1.24;
}

.flagship-copy p:not(.eyebrow):not(.flagship-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.flagship-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 70% 24%, rgba(62, 166, 255, 0.16), transparent 24%),
    radial-gradient(circle at 30% 78%, rgba(34, 197, 94, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff, #eef5fb 58%, #e3edf7);
  box-shadow: var(--shadow);
}

.flagship-stage::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(18, 59, 120, 0.08);
  border-radius: calc(var(--radius) - 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28));
}

.flagship-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 59, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 120, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.34;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 14%, rgba(0, 0, 0, 0.88) 86%, transparent);
}

.flagship-aura {
  position: absolute;
  inset: auto;
  top: 12%;
  right: 14%;
  width: min(58%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(59, 130, 246, 0.06) 54%, transparent 74%);
  filter: blur(10px);
  animation: flagshipPulse 7s ease-in-out infinite;
}

.flagship-beam {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(18, 59, 120, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.beam-one {
  top: 40px;
  right: 34px;
  width: 240px;
  height: 240px;
  animation: flagshipOrbit 8s ease-in-out infinite;
}

.beam-two {
  left: 52px;
  bottom: 90px;
  width: 180px;
  height: 180px;
  opacity: 0.6;
  animation: flagshipOrbit 9s ease-in-out infinite reverse;
}

.flagship-floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 16px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 59, 120, 0.2), rgba(18, 59, 120, 0.05) 48%, transparent 72%);
  filter: blur(10px);
}

.flagship-machine-front,
.flagship-machine-side {
  position: absolute;
  width: auto;
  object-fit: contain;
}

.flagship-machine-front {
  z-index: 3;
  right: 10%;
  bottom: 40px;
  height: 84%;
  max-width: 56%;
  filter: drop-shadow(0 26px 40px rgba(18, 22, 29, 0.2));
  animation: machineBob 6.5s ease-in-out infinite;
}

.flagship-machine-side {
  z-index: 2;
  left: 7%;
  bottom: 56px;
  height: 58%;
  max-width: 38%;
  filter: drop-shadow(0 22px 34px rgba(18, 22, 29, 0.16));
  animation: machineSway 7.8s ease-in-out infinite;
}

.flagship-feature-board {
  position: relative;
  width: min(1220px, 100%);
  margin: 54px auto 0;
  padding: 48px clamp(22px, 4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(7, 18, 36, 0.94), rgba(18, 47, 88, 0.94));
  box-shadow: 0 28px 54px rgba(6, 10, 18, 0.32);
}

.flagship-feature-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7, 18, 36, 0.76), rgba(7, 18, 36, 0.82)),
    url("./assets/store-machines.jpg") center / cover;
  opacity: 0.38;
}

.flagship-feature-board::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -28%;
  width: min(38vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 72%);
  filter: blur(18px);
}

.flagship-heading,
.flagship-grid-list {
  position: relative;
  z-index: 1;
}

.flagship-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #fff;
  text-align: center;
}

.flagship-heading h3 {
  font-size: clamp(1.88rem, 3vw, 2.56rem);
}

.flagship-heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.flagship-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 146px;
  padding: 22px 24px 24px 88px;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.98));
  box-shadow: 0 20px 36px rgba(12, 18, 29, 0.16);
  text-align: left;
}

.flagship-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green), #7dd3fc);
}

.flagship-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.16), transparent 70%);
  pointer-events: none;
}

.feature-icon {
  position: absolute;
  top: 20px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  font-size: 0;
  line-height: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue) 68%, var(--green));
  box-shadow: 0 16px 24px rgba(18, 59, 120, 0.22);
}

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

.flagship-card h4 {
  margin: 0;
  font-size: clamp(1.08rem, 1.4vw, 1.38rem);
}

.flagship-card p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.showcase-stack {
  background: linear-gradient(180deg, #eef7ff, #ffffff 18%, #eef7ff 100%);
}

.showcase-stack .section-head {
  width: min(1160px, 100%);
  margin: 0 auto 24px;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  width: min(1220px, 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(18, 22, 29, 0.08);
}

.showcase-panel-support,
.showcase-panel-consult,
.showcase-panel-iot {
  position: relative;
}

.showcase-panel + .showcase-panel {
  margin-top: 30px;
}

.showcase-panel-reverse {
  grid-template-columns: 1fr;
}

.showcase-panel-media {
  min-height: clamp(420px, 46vw, 620px);
  overflow: hidden;
  background: linear-gradient(180deg, #dff1ff, #f7fbff);
}

.showcase-panel-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.showcase-panel:nth-of-type(1) .showcase-panel-media img {
  object-position: center;
}

.showcase-panel:nth-of-type(2) .showcase-panel-media img {
  object-position: center;
}

.showcase-panel:nth-of-type(3) .showcase-panel-media img {
  object-position: center 34%;
}

.showcase-panel-body {
  padding: 34px;
}

.showcase-panel-reverse .showcase-panel-body {
  padding: 34px;
}

.showcase-panel-body h3 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.05;
}

.showcase-panel-body p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.showcase-panel-body .btn {
  margin-top: 28px;
  min-width: min(100%, 320px);
}

.showcase-mini-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.showcase-mini-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.showcase-mini-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, #f5fbff, #ffffff);
  box-shadow: 0 12px 28px rgba(18, 22, 29, 0.06);
}

.showcase-mini-card strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.showcase-mini-card span {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.iot-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.showcase-panel-iot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.98));
}

.showcase-panel-iot::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: min(34vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.showcase-panel-iot .showcase-panel-body {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(235, 245, 255, 0.98));
}

.showcase-panel-iot .showcase-panel-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  pointer-events: none;
}

.showcase-panel-iot .showcase-panel-body::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: min(26vw, 220px);
  aspect-ratio: 1;
  background: url("./assets/iot-diagram.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.showcase-panel-iot .showcase-panel-body > * {
  position: relative;
  z-index: 1;
}

.iot-feature-grid .showcase-mini-card {
  position: relative;
  gap: 12px;
  min-height: 168px;
  padding: 22px 20px 20px 80px;
  overflow: hidden;
  border: 1px solid rgba(29, 78, 216, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 255, 0.98));
  box-shadow: 0 16px 28px rgba(18, 22, 29, 0.08);
}

.iot-feature-grid .showcase-mini-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.iot-feature-grid .showcase-mini-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 68%);
  pointer-events: none;
}

.mini-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--navy);
  font-size: 0;
  line-height: 0;
  border: 1px solid rgba(29, 78, 216, 0.14);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(34, 197, 94, 0.16));
  box-shadow: 0 12px 24px rgba(18, 59, 120, 0.12);
}

.mini-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iot-feature-grid .showcase-mini-card strong {
  font-size: 1.12rem;
}

.iot-feature-grid .showcase-mini-card > span:last-child {
  margin: 0;
  font-size: 0.98rem;
}

@keyframes flagshipPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.52;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes flagshipOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(12px, -10px, 0) scale(1.08);
    opacity: 0.78;
  }
}

@media (max-width: 1100px) {
  .flagship-shell,
  .showcase-panel,
  .showcase-panel-reverse {
    grid-template-columns: 1fr;
  }

  .flagship-stage {
    min-height: 600px;
  }

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

@media (max-width: 860px) {
  .flagship-machine-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #0b1421 42%, #0c1727 100%);
  }

  .flagship-stage {
    min-height: 520px;
  }

  .flagship-machine-front {
    right: 8%;
    height: 78%;
    max-width: 58%;
  }

  .flagship-machine-side {
    left: 4%;
    height: 52%;
    max-width: 40%;
  }

  .flagship-grid-list,
  .showcase-mini-grid-3,
  .iot-feature-grid {
    grid-template-columns: 1fr;
  }

  .showcase-panel-media {
    min-height: 340px;
  }

  .showcase-panel-body,
  .showcase-panel-reverse .showcase-panel-body {
    padding: 26px;
  }

  .finance-detail .detail-copy .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .flagship-shell {
    gap: 24px;
  }

  .flagship-stage {
    min-height: 430px;
  }

  .flagship-machine-front {
    right: 4%;
    bottom: 28px;
    height: 72%;
    max-width: 62%;
  }

  .flagship-machine-side {
    left: 3%;
    bottom: 36px;
    height: 45%;
    max-width: 42%;
  }

  .beam-one {
    top: 24px;
    right: 20px;
    width: 170px;
    height: 170px;
  }

  .beam-two {
    left: 18px;
    bottom: 74px;
    width: 128px;
    height: 128px;
  }

  .flagship-feature-board {
    margin-top: 34px;
    padding: 34px 18px 24px;
  }

  .flagship-card {
    min-height: 0;
    padding: 18px 18px 18px 72px;
  }

  .feature-icon,
  .mini-icon {
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .feature-icon svg,
  .mini-icon svg {
    width: 18px;
    height: 18px;
  }

  .showcase-panel-media {
    min-height: 240px;
  }

  .showcase-panel-body,
  .showcase-panel-reverse .showcase-panel-body {
    padding: 20px 16px 18px;
  }

  .showcase-mini-grid-4 {
    grid-template-columns: 1fr;
  }

  .showcase-mini-card {
    min-height: 0;
    padding: 18px;
  }

  .iot-feature-grid .showcase-mini-card {
    padding: 18px 18px 18px 70px;
  }

  .showcase-panel-iot .showcase-panel-body::after {
    width: 138px;
    opacity: 0.06;
  }

  .finance-detail .detail-focus-landscape {
    min-height: 280px;
    aspect-ratio: 1.1 / 1;
  }
}

@media (max-width: 1180px) {
  .process {
    padding-inline: 24px;
    padding-bottom: 116px;
  }

  .process-card-grid {
    width: min(100%, 980px);
    gap: 20px;
  }

  .process-step::before {
    right: -56px;
    width: 68px;
  }

  .process-step::after {
    right: -24px;
  }

  .process-character-left {
    left: -12px;
    width: 190px;
  }

  .process-character-right {
    right: -8px;
    width: 210px;
  }

  .process-mascot {
    right: 168px;
    width: 150px;
  }

  .process-machine {
    right: 48px;
    width: 188px;
  }
}

@media (max-width: 980px) {
  .process-stage {
    padding-bottom: 44px;
  }

  .process {
    padding: 0;
  }

  .process-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
    gap: 22px;
  }

  .process-card-grid .process-step {
    min-height: 0;
    padding: 24px 22px 28px;
    transform: none !important;
  }

  .process-step::before,
  .process-step::after,
  .process-character,
  .process-mascot,
  .process-machine,
  .process-dots {
    display: none;
  }

  .process-highlights {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .process-highlight {
    padding: 14px 8px;
  }

  .process-highlight + .process-highlight {
    border-top: 1px solid rgba(18, 59, 120, 0.12);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .process-head {
    margin-bottom: 22px;
  }

  .process-head h2 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .process-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card-grid .process-step {
    gap: 14px;
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .process-icon {
    width: 74px;
    height: 74px;
  }

  .process-icon-line {
    font-size: 1.4rem;
  }

  .process-icon-svg svg {
    width: 34px;
    height: 34px;
  }

  .process-number {
    font-size: 2.1rem;
  }

  .process-highlights {
    width: calc(100% - 10px);
    margin-top: 18px;
  }

  .process-spark-left {
    left: 14px;
    top: 132px;
  }

  .process-spark-right {
    right: 18px;
    top: 96px;
  }
}

/* Process section final override */
.process-section .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.process-stage {
  width: min(1660px, 100%);
  padding: 94px 0 28px;
}

.process-stage::before {
  left: -18%;
  top: 118px;
  width: min(48vw, 860px);
  height: min(29vw, 446px);
  border-radius: 0 300px 250px 0;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.82) 0 18%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(90deg, rgba(221, 232, 255, 0.96) 0%, rgba(236, 243, 255, 0.88) 62%, rgba(248, 251, 255, 0) 100%);
}

.process-stage::after {
  right: -8%;
  bottom: -24px;
  width: min(33vw, 520px);
  height: min(24vw, 360px);
  border-radius: 260px 0 0 0;
  background: radial-gradient(circle at top left, rgba(160, 205, 255, 0.58) 0%, rgba(224, 239, 255, 0.84) 44%, rgba(248, 251, 255, 0) 78%);
}

.process-glow-left {
  left: 50%;
  top: 150px;
  width: 330px;
  height: 330px;
  transform: translateX(-48%);
  background: rgba(255, 177, 84, 0.12);
}

.process-glow-right {
  left: 50%;
  top: 162px;
  right: auto;
  width: 860px;
  height: 348px;
  transform: translateX(-50%);
  background: rgba(127, 176, 255, 0.105);
}

.process-spark-left {
  left: 25%;
  top: 248px;
  box-shadow: 0 12px 24px rgba(251, 146, 60, 0.22);
}

.process-spark-right {
  right: 19%;
  top: 150px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.process-dots {
  top: 176px;
  right: 7%;
  width: 176px;
  height: 132px;
  background-image: radial-gradient(rgba(89, 145, 255, 0.24) 1.2px, transparent 1.2px);
  opacity: 0.7;
}

.process-head {
  z-index: 4;
  width: min(1040px, 100%);
  margin: 0 auto 18px;
}

.process-head h2 {
  margin: 12px auto 0;
  max-width: 980px;
  font-size: clamp(2.18rem, 4vw, 4.12rem);
  line-height: 1.01;
  letter-spacing: -0.06em;
  color: #101828;
}

.process {
  width: min(1520px, 100%);
  padding: 0 22px 176px;
}

.process-flow {
  position: relative;
  width: min(980px, calc(100% - 560px));
  margin: 0 auto;
  padding-top: 34px;
}

.process-card-grid {
  grid-template-columns: repeat(4, minmax(0, 228px));
  gap: 16px;
  width: 100%;
}

.process-step {
  min-height: 398px;
  padding: 24px 22px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0 96.5%, var(--accent) 100%);
  box-shadow: 0 22px 48px rgba(46, 76, 128, 0.11), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.process-step::before {
  display: none;
}

.process-step::after {
  display: none;
}

.process-number {
  font-size: clamp(2.7rem, 3vw, 3.42rem);
  letter-spacing: -0.05em;
}

.process-icon {
  width: 92px;
  height: 92px;
  box-shadow: 0 18px 36px var(--accent-shadow), 0 0 0 8px rgba(255, 255, 255, 0.62);
}

.process-step h3 {
  font-size: clamp(1.42rem, 1.48vw, 1.62rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.process-step p {
  font-size: 0.88rem;
  line-height: 1.76;
}

.process-step-line {
  --accent: #2f66f3;
  --accent-shadow: rgba(47, 102, 243, 0.16);
  transform: translateY(104px) rotate(-0.82deg);
}

.process-step-line::after {
  background: linear-gradient(135deg, #24c363, #18a34c);
}

.process-step-ai {
  --accent: #19bc86;
  --accent-shadow: rgba(25, 188, 134, 0.16);
  transform: translateY(6px) rotate(-0.42deg);
}

.process-step-ai::before {
  border-color: rgba(251, 146, 60, 0.7);
}

.process-step-ai::after {
  background: linear-gradient(135deg, #ffb040, #ff7a1a);
}

.process-step-finance {
  --accent: #ff7a1a;
  --accent-shadow: rgba(255, 122, 26, 0.16);
  transform: translateY(52px) rotate(-0.36deg);
}

.process-step-finance::before {
  border-color: rgba(92, 143, 255, 0.72);
}

.process-step-finance::after {
  background: linear-gradient(135deg, #2f66f3, #1f56d6);
}

.process-step-launch {
  --accent: #2f66f3;
  --accent-shadow: rgba(47, 102, 243, 0.16);
  transform: translateY(40px) rotate(0.54deg);
}

.process-connectors {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.process-connector {
  position: absolute;
  width: 180px;
  height: 120px;
}

.process-connector svg {
  display: block;
  width: 100%;
  height: 100%;
}

.process-connector path {
  fill: none;
  stroke: rgba(113, 166, 255, 0.68);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 2.4 8.8;
}

.process-connector-one {
  left: 180px;
  top: 224px;
}

.process-connector-two {
  left: 426px;
  top: 214px;
}

.process-connector-three {
  left: 670px;
  top: 204px;
}

.process-connector-two path {
  stroke: rgba(255, 167, 91, 0.86);
}

.process-connector-node {
  position: absolute;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.2);
}

.process-connector-node-green {
  top: 38px;
  background: linear-gradient(135deg, #24c363, #18a34c);
}

.process-connector-node-orange {
  top: 40px;
  background: linear-gradient(135deg, #ffb040, #ff7a1a);
}

.process-connector-node-blue {
  top: 38px;
  background: linear-gradient(135deg, #2f66f3, #1f56d6);
}

.process-character-left {
  left: -196px;
  bottom: 54px;
  width: min(20vw, 324px);
}

.process-character-right {
  right: -182px;
  bottom: 44px;
  width: min(19.8vw, 318px);
}

.process-mascot {
  right: 252px;
  bottom: 68px;
  width: min(10.2vw, 166px);
  z-index: 4;
}

.process-machine {
  right: 96px;
  bottom: 46px;
  width: min(13.6vw, 226px);
  z-index: 3;
}

.process-highlights {
  width: min(1320px, calc(100% - 120px));
  margin: -2px auto 0;
  padding: 18px 34px;
  box-shadow: 0 22px 48px rgba(18, 22, 29, 0.08);
}

.process-highlight {
  gap: 18px;
  padding: 10px 24px;
}

@media (max-width: 1180px) {
  .process {
    padding-inline: 18px;
    padding-bottom: 132px;
  }

  .process-card-grid {
    width: 100%;
    gap: 18px;
  }

  .process-flow {
    width: min(980px, calc(100% - 240px));
  }

  .process-connector-one {
    left: 198px;
  }

  .process-connector-two {
    left: 444px;
  }

  .process-connector-three {
    left: 690px;
  }

  .process-character-left {
    left: -6px;
    bottom: 124px;
    width: 188px;
  }

  .process-character-right {
    right: 6px;
    bottom: 128px;
    width: 198px;
  }

  .process-mascot {
    right: 186px;
    bottom: 64px;
    width: 104px;
  }

  .process-machine {
    right: 76px;
    bottom: 52px;
    width: 146px;
  }

  .process-highlights {
    width: calc(100% - 52px);
  }
}

@media (max-width: 980px) {
  .process-stage {
    padding-bottom: 44px;
  }

  .process {
    padding: 0;
  }

  .process-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 22px;
  }

  .process-flow {
    width: min(100%, 760px);
  }

  .process-card-grid .process-step {
    min-height: 0;
    padding: 24px 22px 28px;
    transform: none !important;
  }

  .process-connectors,
  .process-character,
  .process-mascot,
  .process-machine,
  .process-dots {
    display: none;
  }

  .process-highlights {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .process-highlight {
    padding: 14px 8px;
  }

  .process-highlight + .process-highlight {
    border-top: 1px solid rgba(18, 59, 120, 0.12);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .process-head {
    margin-bottom: 22px;
  }

  .process-head h2 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .process-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card-grid .process-step {
    gap: 14px;
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .process-icon {
    width: 74px;
    height: 74px;
  }

  .process-icon-line {
    font-size: 1.4rem;
  }

  .process-icon-svg svg {
    width: 34px;
    height: 34px;
  }

  .process-number {
    font-size: 2.1rem;
  }

  .process-highlights {
    width: calc(100% - 10px);
    margin-top: 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 981px) {
  .process {
    z-index: 1;
    overflow: visible;
  }

  .process-flow {
    z-index: 5;
  }

  .process::before,
  .process::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 4;
  }

  .process::before {
    left: -164px;
    bottom: 56px;
    width: min(29vw, 470px);
    height: min(18vw, 280px);
    clip-path: ellipse(72% 100% at 18% 100%);
    background:
      radial-gradient(circle at 76% 22%, rgba(207, 228, 255, 0.52) 0%, rgba(239, 246, 255, 0.94) 34%, rgba(249, 252, 255, 1) 66%),
      linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(248, 251, 255, 1) 52%);
  }

  .process::after {
    right: -172px;
    bottom: 44px;
    width: min(34vw, 560px);
    height: min(20vw, 320px);
    clip-path: ellipse(76% 100% at 100% 100%);
    background:
      radial-gradient(circle at 24% 16%, rgba(191, 222, 255, 0.6) 0%, rgba(235, 244, 255, 0.94) 34%, rgba(249, 252, 255, 1) 66%),
      linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(248, 251, 255, 1) 54%);
  }

  .process-character-left {
    left: -128px;
    bottom: -22px;
    width: min(20vw, 320px);
    z-index: 2;
  }

  .process-character-right {
    right: -124px;
    bottom: -28px;
    width: min(19.4vw, 304px);
    z-index: 2;
  }

  .process-mascot {
    right: 242px;
    bottom: 84px;
    width: min(8.2vw, 132px);
    z-index: 8;
  }

  .process-machine {
    right: 96px;
    bottom: 70px;
    width: min(11.2vw, 184px);
    z-index: 7;
  }

  .process-highlights {
    z-index: 6;
    position: relative;
    overflow: visible;
    isolation: isolate;
  }

  .process-highlights::before,
  .process-highlights::after {
    content: none;
  }

  .process-highlight {
    position: relative;
    z-index: 2;
  }
}

/* Process showcase rebuild */
.process-section.process-showcase {
  overflow: hidden;
  padding: clamp(44px, 6vw, 84px) clamp(16px, 3.6vw, 54px);
  background:
    radial-gradient(circle at 13% 16%, rgba(219, 234, 254, 0.9) 0 14%, rgba(239, 247, 255, 0) 36%),
    radial-gradient(circle at 87% 88%, rgba(191, 223, 255, 0.72) 0 18%, rgba(239, 247, 255, 0) 42%),
    linear-gradient(180deg, #f7fbff 0%, #edf7ff 100%);
}

.process-showcase-card {
  position: relative;
  isolation: isolate;
  width: min(1540px, 100%);
  min-height: 850px;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(50px, 5vw, 76px) clamp(48px, 6vw, 110px) clamp(34px, 3.6vw, 56px);
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: clamp(26px, 3.6vw, 54px);
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 254, 255, 0.9) 50%, rgba(232, 244, 255, 0.84) 100%);
  box-shadow:
    0 28px 70px rgba(24, 71, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.process-showcase-card::before,
.process-showcase-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.process-showcase-card::before {
  left: -14%;
  bottom: -16%;
  width: 56%;
  height: 52%;
  border-radius: 0 100% 0 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.72) 0 24%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(32deg, rgba(209, 228, 255, 0.82), rgba(233, 244, 255, 0.08));
}

.process-showcase-card::after {
  right: -15%;
  top: -10%;
  width: 54%;
  height: 56%;
  border-radius: 0 0 0 100%;
  background:
    radial-gradient(circle at 30% 74%, rgba(255, 255, 255, 0.88) 0 18%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(215deg, rgba(205, 226, 255, 0.86), rgba(236, 246, 255, 0.16));
}

.process-showcase-dots {
  position: absolute;
  left: clamp(30px, 4vw, 60px);
  top: clamp(28px, 4vw, 56px);
  width: 260px;
  height: 112px;
  opacity: 0.66;
  background-image: radial-gradient(rgba(54, 119, 211, 0.14) 3px, transparent 3.2px);
  background-size: 22px 22px;
}

.process-showcase-curve {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.process-showcase-curve-left {
  left: -8%;
  bottom: 42px;
  width: 58%;
  height: 170px;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 100% 0 0 0;
  transform: rotate(8deg);
}

.process-showcase-curve-right {
  right: -10%;
  bottom: 56px;
  width: 50%;
  height: 160px;
  border-top: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 0 100% 0 0;
  transform: rotate(-7deg);
}

.process-showcase-copy {
  position: relative;
  z-index: 4;
  width: min(980px, 68%);
}

.process-showcase-copy .eyebrow {
  color: #0e9ba8;
  font-size: clamp(0.84rem, 1vw, 1.08rem);
  letter-spacing: 0.13em;
}

.process-showcase-copy h2 {
  margin: 22px 0 0;
  color: #081a34;
  font-size: clamp(2.72rem, 3.35vw, 3.95rem);
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.process-showcase-title-line {
  display: block;
  width: 82px;
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5a8, #18b884);
}

.process-showcase-visual {
  position: absolute;
  display: none;
  right: clamp(38px, 5.6vw, 96px);
  top: clamp(30px, 3.7vw, 62px);
  z-index: 2;
  width: min(590px, 38vw);
  height: 380px;
  margin: 0;
  pointer-events: none;
  overflow: hidden;
}

.process-showcase-visual img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
}

.process-showcase-machine {
  right: 0;
  top: 0;
  width: min(318px, 20.5vw);
  opacity: 0.94;
  filter: drop-shadow(0 28px 38px rgba(10, 50, 98, 0.16));
}

.process-showcase-boy {
  right: min(172px, 11.3vw);
  top: 18px;
  width: min(318px, 20.4vw);
  filter: drop-shadow(0 30px 42px rgba(10, 50, 98, 0.18));
}

.process-showcase-track {
  position: absolute;
  left: clamp(68px, 7vw, 126px);
  right: clamp(88px, 7vw, 156px);
  top: 418px;
  z-index: 2;
  height: 3px;
  background:
    linear-gradient(90deg, rgba(9, 134, 150, 0) 0%, rgba(9, 134, 150, 0.9) 12%, rgba(9, 134, 150, 0.9) 72%, rgba(37, 99, 235, 0.8) 88%, rgba(37, 99, 235, 0) 100%);
}

.process-showcase-track::before,
.process-showcase-track::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 74px;
  border-top: 4px dotted rgba(15, 118, 158, 0.8);
  transform: translateY(-50%);
}

.process-showcase-track::before {
  left: -68px;
}

.process-showcase-track::after {
  right: -68px;
}

.process-showcase-track-dot {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #2d9ad3, #1161b7);
  border: 11px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(31, 95, 176, 0.22);
  transform: translate(-50%, -50%);
}

.process-showcase-track-dot svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-showcase-track-dot-one {
  left: 9%;
}

.process-showcase-track-dot-two {
  left: 39%;
}

.process-showcase-track-dot-three {
  left: 63%;
}

.process-showcase-track-dot-four {
  left: 82%;
}

.process-showcase-steps {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(118px, 8vw, 146px);
  padding: 0 clamp(10px, 3vw, 52px);
}

.process-showcase-step {
  position: relative;
  min-height: 218px;
  padding: clamp(22px, 2.2vw, 28px) clamp(18px, 1.8vw, 24px) 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(202, 219, 239, 0.72);
  box-shadow: 0 18px 46px rgba(39, 76, 126, 0.12);
}

.process-showcase-number {
  display: block;
  color: #7eb8f7;
  font-size: clamp(1.48rem, 2vw, 2.05rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.process-showcase-step h3 {
  margin: 18px 0 12px;
  color: #07172f;
  font-size: clamp(1.18rem, 1.35vw, 1.44rem);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
}

.process-showcase-step p {
  margin: 0;
  color: #344055;
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  line-height: 1.72;
}

.process-showcase-accent {
  position: absolute;
  left: clamp(20px, 2vw, 28px);
  bottom: 20px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b9fad, #10b981);
}

.process-showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 0.8;
  background: linear-gradient(135deg, #7bb9ff, #2b6eea);
  border: 6px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  transform: translate(-50%, -50%);
}

.process-showcase-arrow-one {
  left: calc(25% + 14px);
}

.process-showcase-arrow-two {
  left: calc(50% + 14px);
}

.process-showcase-arrow-three {
  left: calc(75% + 14px);
}

.process-showcase-bottom {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1200px, 88%);
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 48px rgba(39, 76, 126, 0.12);
}

.process-showcase-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 18px clamp(18px, 2vw, 30px);
}

.process-showcase-benefit + .process-showcase-benefit {
  border-left: 1px solid rgba(45, 90, 145, 0.18);
}

.process-showcase-benefit > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #0f8fa5;
  background: linear-gradient(180deg, #f3f8ff, #eaf3ff);
  box-shadow: inset 0 0 0 1px rgba(190, 211, 235, 0.55);
}

.process-showcase-benefit svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-showcase-benefit strong {
  display: block;
  color: #112033;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.25;
}

.process-showcase-benefit p {
  margin: 5px 0 0;
  color: #637083;
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .process-showcase-card {
    min-height: auto;
    padding: 58px 32px 48px;
  }

  .process-showcase-copy {
    width: min(640px, 62%);
  }

  .process-showcase-visual {
    width: 420px;
    right: 10px;
  }

  .process-showcase-machine {
    width: 220px;
  }

  .process-showcase-boy {
    width: 250px;
    right: 120px;
  }

  .process-showcase-track {
    display: none;
  }

  .process-showcase-steps {
    margin-top: 170px;
    padding-inline: 0;
  }

  .process-showcase-bottom {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .process-section.process-showcase {
    padding-inline: 14px;
    overflow-x: hidden;
  }

  .process-showcase-card {
    width: 100%;
    max-width: 100%;
    padding: 42px 18px 30px;
    border-width: 6px;
    border-radius: 30px;
  }

  .process-showcase-copy {
    width: 100%;
    text-align: center;
  }

  .process-showcase-copy h2 {
    max-width: 680px;
    margin-inline: auto;
    font-size: clamp(2rem, 8.5vw, 3.05rem);
    line-height: 1.16;
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  .process-showcase-title-line {
    margin-inline: auto;
  }

  .process-showcase-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(520px, 100%);
    height: 270px;
    margin: 22px auto 0;
  }

  .process-showcase-machine {
    right: 14%;
    top: 0;
    width: 174px;
  }

  .process-showcase-boy {
    right: 36%;
    top: 16px;
    width: 190px;
  }

  .process-showcase-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .process-showcase-step {
    min-width: 0;
  }

  .process-showcase-step h3,
  .process-showcase-step p,
  .process-showcase-benefit strong,
  .process-showcase-benefit p {
    overflow-wrap: anywhere;
  }

  .process-showcase-arrow {
    display: none;
  }

  .process-showcase-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 28px;
  }

  .process-showcase-benefit:nth-child(odd) {
    border-left: 0;
  }

  .process-showcase-benefit:nth-child(n + 3) {
    border-top: 1px solid rgba(45, 90, 145, 0.18);
  }
}

@media (max-width: 560px) {
  .process-section.process-showcase {
    padding: 34px 10px;
  }

  .process-showcase-card {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 32px 14px 26px;
    border-width: 5px;
    border-radius: 28px;
  }

  .process-showcase-card * {
    min-width: 0;
  }

  .process-showcase-copy h2 {
    max-width: min(310px, calc(100vw - 56px));
    font-size: clamp(1.45rem, 6.8vw, 1.88rem);
    overflow-wrap: break-word;
  }

  .process-showcase-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  .process-showcase-boy {
    right: 40%;
    width: 150px;
  }

  .process-showcase-machine {
    right: -4px;
    width: 145px;
  }

  .process-showcase-steps,
  .process-showcase-bottom {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .process-showcase-benefit + .process-showcase-benefit {
    border-left: 0;
    border-top: 1px solid rgba(45, 90, 145, 0.18);
  }

  .process-showcase-step,
  .process-showcase-benefit {
    width: 100%;
    max-width: 100%;
  }

  .process-showcase-step p {
    max-width: 100%;
    font-size: 0.9rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

/* Process roadmap redesign */
.process-section.process-roadmap {
  overflow: hidden;
  padding: clamp(70px, 8vw, 118px) clamp(18px, 4vw, 70px);
  background:
    radial-gradient(circle at 15% 10%, rgba(32, 184, 199, 0.13), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(25, 118, 210, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #eef7ff 100%);
}

.process-roadmap-inner {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(18, 59, 120, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.86));
  box-shadow:
    0 28px 72px rgba(18, 59, 120, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
}

.process-roadmap-inner::before,
.process-roadmap-inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  display: none;
}

.process-roadmap-inner::before {
  top: -80px;
  right: -92px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(25, 118, 210, 0.08);
}

.process-roadmap-inner::after {
  left: -70px;
  bottom: -110px;
  width: 420px;
  height: 260px;
  border-radius: 50%;
  background: rgba(32, 184, 199, 0.08);
  transform: rotate(-12deg);
}

.process-roadmap-head {
  display: block;
  max-width: 980px;
  margin-bottom: clamp(34px, 4.8vw, 62px);
}

.process-roadmap-head .eyebrow {
  color: #0e9ba8;
  letter-spacing: 0.14em;
}

.process-roadmap-head h2 {
  max-width: 900px;
  margin: 12px 0 0;
  color: #07172f;
  font-size: clamp(2.2rem, 4.2vw, 4.65rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
}

.process-roadmap-head p:not(.eyebrow) {
  max-width: 850px;
  margin: 20px 0 0;
  color: #415166;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.9;
}

.process-roadmap-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.roadmap-card {
  position: relative;
  min-height: 290px;
  padding: 26px clamp(20px, 2vw, 28px) 30px;
  overflow: hidden;
  border: 1px solid rgba(197, 216, 238, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 59, 120, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 184, 199, 0.42);
  box-shadow: 0 28px 64px rgba(18, 59, 120, 0.16);
}

.roadmap-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--roadmap-accent);
}

.roadmap-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -25px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 7px solid #f7fbff;
  border-radius: 999px;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  background: var(--roadmap-accent);
  box-shadow: 0 16px 32px rgba(18, 59, 120, 0.18);
  transform: translateY(-50%);
  display: none;
}

.roadmap-card-blue {
  --roadmap-accent: linear-gradient(135deg, #1976d2, #2f6df2);
}

.roadmap-card-green {
  --roadmap-accent: linear-gradient(135deg, #0e9ba8, #13a758);
}

.roadmap-card-orange {
  --roadmap-accent: linear-gradient(135deg, #f28c28, #ff6b1a);
}

.roadmap-card-navy {
  --roadmap-accent: linear-gradient(135deg, #123b78, #1976d2);
}

.roadmap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.roadmap-number {
  color: #83baf7;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.roadmap-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  color: #1976d2;
  background: linear-gradient(180deg, #f7fbff, #eaf4ff);
  box-shadow: inset 0 0 0 1px rgba(190, 213, 240, 0.82);
}

.roadmap-card-green .roadmap-icon {
  color: #0e9ba8;
}

.roadmap-card-orange .roadmap-icon {
  color: #f97316;
}

.roadmap-card-navy .roadmap-icon {
  color: #123b78;
}

.roadmap-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-card h3 {
  margin: 28px 0 12px;
  color: #07172f;
  font-size: clamp(1.3rem, 1.6vw, 1.7rem);
  font-weight: 950;
  line-height: 1.24;
  letter-spacing: 0;
}

.roadmap-card p {
  margin: 0;
  color: #435269;
  font-size: 1rem;
  line-height: 1.75;
}

.process-roadmap-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(197, 216, 238, 0.84);
  border-radius: 24px;
  background: rgba(197, 216, 238, 0.84);
  box-shadow: 0 18px 45px rgba(18, 59, 120, 0.1);
}

.process-roadmap-support article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 22px clamp(18px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.92);
}

.process-roadmap-support span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #0e9ba8;
  background: #edf8ff;
}

.process-roadmap-support svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-roadmap-support strong {
  display: block;
  color: #07172f;
  font-size: 1.08rem;
  font-weight: 950;
}

.process-roadmap-support p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.45;
}

@media (max-width: 1060px) {
  .process-roadmap-head {
    grid-template-columns: 1fr;
  }

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

  .roadmap-card:nth-child(2)::after {
    display: none;
  }

  .process-roadmap-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .process-section.process-roadmap {
    padding: 52px 14px;
  }

  .process-roadmap-inner {
    padding: 28px 16px;
    border-radius: 24px;
  }

  .process-roadmap-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .process-roadmap-head h2 {
    font-size: clamp(1.86rem, 9vw, 2.72rem);
    line-height: 1.13;
  }

  .process-roadmap-head p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .process-roadmap-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .roadmap-card {
    min-height: auto;
    padding: 22px 20px 24px;
  }

  .roadmap-card:not(:last-child)::after {
    top: auto;
    right: 22px;
    bottom: -26px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    transform: rotate(90deg);
  }

  .roadmap-card h3 {
    margin-top: 22px;
  }

  .process-roadmap-support article {
    min-height: auto;
    align-items: flex-start;
    padding: 20px;
  }
}
