/* ---------- SECTION TITLE PATTERN ---------- */
.section-head {
  margin-bottom: 64px;
  max-width: 780px;
}
h2.section-title {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--fm-text);
  text-wrap: balance;
}
.section-subtitle {
  font-size: 17px;
  color: var(--fm-text-soft);
  line-height: 1.6;
  max-width: 560px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  contain: paint;
}
.hero-content {
  max-width: 1100px;
  will-change: transform, opacity;
  transform: translateZ(0);
}
h1.hero-title {
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--fm-text);
  text-wrap: balance;
}
.nowrap-word { white-space: nowrap; }
.hero-subtitle {
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 400;
  color: var(--fm-text-soft);
  margin-bottom: 48px;
  max-width: 620px;
  line-height: 1.6;
}
.ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  position: relative;
  padding: 120px 0;
  contain: paint;
  overflow: hidden;
}
.stats-cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    520px circle at var(--mx, 50%) var(--my, -200px),
    rgba(25, 148, 164, 0.10),
    rgba(94, 181, 101, 0.05) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.stats-section:hover .stats-cursor-glow {
  opacity: 1;
}
.stats-section .container {
  position: relative;
  z-index: 1;
}
.stats-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
}
.stat-cell {
  position: relative;
  background: var(--fm-dark);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: background 0.4s ease;
}
.stat-cell:hover {
  background: rgba(255, 255, 255, 0.022);
}
.stat-cell--hero {
  grid-row: 1 / 3;
  padding: 56px 48px;
  justify-content: space-between;
  gap: 28px;
}
.stat-cell--hero::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, #1794A3 0%, #58BA64 60%, #87D545 100%);
  opacity: 0.55;
  border-radius: 2px;
}
.stat-cell-case {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fm-text-mute);
}
.stat-cell-num {
  font-size: clamp(72px, 8.5vw, 128px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  background: var(--fm-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}
.stat-cell-num--md {
  font-size: clamp(56px, 6vw, 84px);
}
.stat-cell-suf {
  font-size: 0.3em;
  font-weight: 500;
  background: none;
  -webkit-text-fill-color: var(--fm-text-soft);
  color: var(--fm-text-soft);
  letter-spacing: -0.01em;
}
.stat-cell-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--fm-text-soft);
}
.stat-cell-desc {
  font-size: 14px;
  color: var(--fm-text-mute);
  line-height: 1.6;
  max-width: 420px;
}
/* Clip-path reveal — only applies when motion is allowed AND grid is not yet in view.
   Content stays visible if JS fails or never fires. */
@media (prefers-reduced-motion: no-preference) {
  .stats-grid:not(.in-view) .stat-cell-num {
    clip-path: inset(0 0 105% 0);
  }
  .stat-cell-num {
    transition: clip-path 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: clip-path;
  }
  .stats-grid.in-view .stat-cell:nth-child(2) .stat-cell-num {
    transition-delay: 0.15s;
  }
  .stats-grid.in-view .stat-cell:nth-child(3) .stat-cell-num {
    transition-delay: 0.3s;
  }
}

/* ---------- PROCESS SECTION (vertical timeline) ---------- */
.process-section {
  position: relative;
  padding: 120px 0;
  contain: paint;
}
.process-timeline {
  position: relative;
  margin-top: 64px;
  padding-left: 72px;
  max-width: 900px;
}
.process-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.process-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #0A398C 0%, #1794A3 30%, #58BA64 65%, #87D545 100%);
  /* Gradient stays at full timeline height — fill only reveals more of it. */
  background-size: 100% var(--process-line-h, 100%);
  background-repeat: no-repeat;
  border-radius: 2px;
  /* No CSS transition — JS already updates per scroll frame via rAF. */
  transition: none;
  box-shadow: 0 0 14px rgba(25, 148, 164, 0.45);
}
.process-step {
  position: relative;
  /* margin (not padding) so the dot's top:50% aligns with the card's flex center */
  margin-bottom: 32px;
  min-height: 120px;
  display: flex;
  align-items: center;
}
.process-step:last-child {
  margin-bottom: 0;
}
/* Dot center aligns exactly with the line center (both at x=19 within timeline).
   Timeline padding-left = 72px → step left edge at x=72.
   Dot 18px wide, want center at x=19 → dot left = 10 → relative to step = -62px. */
.process-step-dot {
  position: absolute;
  top: 50%;
  left: -62px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fm-dark);
  border: 2px solid rgba(255, 255, 255, 0.32);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(10, 9, 21, 1);
  transform: translateY(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.process-step.active .process-step-dot {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow:
    0 0 0 4px rgba(10, 9, 21, 1),
    0 0 0 7px rgba(94, 181, 101, 0.18),
    0 0 22px rgba(25, 148, 164, 0.65);
  transform: translateY(-50%) scale(1.15);
}

/* Card with horizontal connector arm reaching back to the dot */
.process-step-content {
  position: relative;
  padding: 26px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  transition: background .35s ease, border-color .35s ease;
}
.process-step.active .process-step-content {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
}
.process-step-content::before {
  /* Arm reaches from card's left edge back to the dot's visible right edge.
     Card left = x=72, dot visible right edge = x=32 (dot + moat) → arm width = 40px. */
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
  transition: background .35s ease;
}
.process-step.active .process-step-content::before {
  background: linear-gradient(90deg, rgba(25, 148, 164, 0.7), rgba(94, 181, 101, 0.7));
}

.process-step-num {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fm-text-mute);
  margin-bottom: 10px;
}
.process-step-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--fm-text);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.process-step-desc {
  font-size: 15px;
  color: var(--fm-text-soft);
  line-height: 1.65;
  max-width: 620px;
}

/* ---------- SERVICES SECTION ---------- */
/* ---------- SERVICES FLOW (animated pipeline) ---------- */
.services-flow-section {
  position: relative;
  padding: 120px 0;
  contain: paint;
}

.services-flow {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-station {
  position: relative;
  padding: 24px 28px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .4s cubic-bezier(.25, .8, .25, 1), background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.service-station:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 60px -28px rgba(25, 148, 164, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* Visualisation container */
.service-viz {
  position: relative;
  width: 100%;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(25, 148, 164, 0.07), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(94, 181, 101, 0.07), transparent 60%),
    rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.service-viz svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Number + content */
.service-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--fm-text-mute);
}
.service-station::after {
  /* Subtle gradient accent on the number line */
  content: '';
}
.service-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--fm-text);
  letter-spacing: -0.015em;
  margin-top: -8px;
}
.service-desc {
  font-size: 14px;
  color: var(--fm-text-soft);
  line-height: 1.6;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.service-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--fm-text-mute);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- VIZ 1: SCAN (Consultancy) ---------- */
.viz-scanner {
  animation: vizScanSweep 3.6s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes vizScanSweep {
  from { transform: translateX(-2px); }
  to   { transform: translateX(320px); }
}
.viz-find {
  transform-origin: center;
  transform-box: fill-box;
  animation: vizPulse 2.2s ease-in-out infinite;
}
.viz-find-1 { animation-delay: 0s; }
.viz-find-2 { animation-delay: .7s; }
.viz-find-3 { animation-delay: 1.4s; }
@keyframes vizPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.25); filter: drop-shadow(0 0 6px currentColor); }
}

/* ---------- VIZ 2: FUNNEL (Procesoptimalisatie) ---------- */
.viz-flow-path {
  stroke-dasharray: 3 4;
  animation: vizFlowDash 1.8s linear infinite;
}
.viz-flow-path-2 { animation-duration: 2.2s; }
.viz-flow-path-3 { animation-duration: 2.6s; animation-direction: reverse; }
@keyframes vizFlowDash {
  to { stroke-dashoffset: -14; }
}
.viz-funnel-exit {
  transform-origin: center;
  transform-box: fill-box;
  animation: vizExitPulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(94, 181, 101, 0.7));
}
@keyframes vizExitPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.85; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* ---------- VIZ 3: WORKFLOW CHAIN (Automatiseringen) ---------- */
/* Nodes light up in sequence as the particle passes through them.
   Particle takes 4s for the whole chain (4 segments = 1s each).
   Each node "fires" briefly when the particle arrives. */
.viz-node {
  transform-origin: center;
  transform-box: fill-box;
  animation: vizNodeFire 4s ease-in-out infinite;
}
.viz-node-1 { animation-delay: 0s;     fill: #1794A3; }
.viz-node-2 { animation-delay: 1s;     fill: #2BA5B6; }
.viz-node-3 { animation-delay: 2s;     fill: #58BA64; }
.viz-node-4 { animation-delay: 3s;     fill: #87D545; }
.viz-node-5 { animation-delay: 3.95s;  fill: #ffffff; }
@keyframes vizNodeFire {
  0%, 100% { opacity: 0.5; transform: scale(1);   filter: drop-shadow(0 0 0 transparent); }
  3%       { opacity: 1;   transform: scale(1.35); filter: drop-shadow(0 0 6px currentColor); }
  15%      { opacity: 0.5; transform: scale(1);   filter: drop-shadow(0 0 0 transparent); }
}

/* ---------- CASES SECTION ---------- */
.cases-section {
  position: relative;
  padding: 120px 0 160px;
  contain: paint;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .35s ease, background .35s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.case-num {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fm-text-mute);
}
.case-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.case-tag {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--fm-text-soft);
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.case-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--fm-text);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.case-desc {
  font-size: 14.5px;
  color: var(--fm-text-soft);
  line-height: 1.6;
  flex: 1;
}
.case-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.case-result {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-result-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--fm-text);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.case-result-num .case-suffix {
  font-size: 0.6em;
  color: var(--fm-text-soft);
  font-weight: 500;
}
.case-result-label {
  font-size: 12px;
  color: var(--fm-text-mute);
  line-height: 1.4;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  position: relative;
  padding: 120px 0;
  contain: paint;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 10%;
  background: var(--fm-gradient);
  opacity: 0.18;
  filter: blur(60px);
  z-index: 0;
  border-radius: 50%;
}
.about-initial {
  font-size: clamp(140px, 16vw, 220px);
  font-weight: 600;
  letter-spacing: -0.04em;
  background: var(--fm-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-content p {
  font-size: 16px;
  color: var(--fm-text-soft);
  line-height: 1.7;
}
.about-content p strong {
  color: var(--fm-text);
  font-weight: 500;
}
.about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.about-tool {
  font-size: 12px;
  font-weight: 500;
  color: var(--fm-text-soft);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.about-cta {
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 0;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding: 100px 0 120px;
  contain: paint;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 90%);
  height: 70%;
  background: var(--fm-gradient);
  opacity: 0.22;
  filter: blur(110px);
  pointer-events: none;
  border-radius: 50%;
}
.cta-card {
  padding: 80px 48px;
  border-radius: 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--fm-text);
  text-wrap: balance;
}
.cta-subtitle {
  font-size: 17px;
  color: var(--fm-text-soft);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 80px 0 40px;
  border-top: 1px solid var(--fm-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 24px;
  display: block;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fm-text-soft);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fm-text-mute);
  margin-bottom: 18px;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  font-size: 14px;
  color: var(--fm-text-soft);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-list a:hover {
  color: var(--fm-text);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--fm-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-text {
  font-size: 12px;
  color: var(--fm-text-mute);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .services-flow { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 900px) {
  :root { --container-pad: 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right { padding: 4px 4px 4px 4px; }
  .hero { padding: 140px 0 80px; }
  .stats-section,
  .services-flow-section,
  .cases-section,
  .about-section,
  .process-section { padding: 80px 0; }
  .stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1px;
  }
  .stat-cell { padding: 36px 28px; gap: 12px; }
  .stat-cell--hero {
    grid-row: auto;
    padding: 40px 28px;
    gap: 18px;
  }
  .stat-cell--hero::before {
    top: 16px;
    bottom: 16px;
  }
  .stat-cell-num { font-size: clamp(64px, 16vw, 96px); }
  .stat-cell-num--md { font-size: clamp(48px, 12vw, 72px); }
  /* Mobile process timeline: line on the left, narrower padding, smaller arms */
  .process-timeline { padding-left: 44px; margin-top: 40px; }
  .process-line { left: 12px; }
  /* Mobile: padding=44, line center at x=13. Dot 18px → left = 4 → relative to step = -40 */
  .process-step-dot { left: -40px; }
  .process-step-content { padding: 20px 22px; }
  .process-step-content::before {
    /* Card left at x=44, dot visible right edge at x=22+4=26 → arm = 18px */
    left: -18px;
    width: 18px;
  }
  .process-step { padding-bottom: 28px; min-height: 0; }
  .process-step-title { font-size: 18px; }
  .process-step-desc { font-size: 14.5px; line-height: 1.6; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait { max-width: 280px; }
  .cta-section { padding: 80px 0 100px; }
  .cta-card { padding: 56px 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer { padding: 60px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { padding: 32px 28px; }
  .service-station { padding: 20px 22px 24px; }
  .service-viz { height: 64px; }
  .ctas { flex-direction: column; align-items: flex-start; width: 100%; }
  h1.hero-title br { display: none; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .blob { animation: none !important; }
  .blur-word { filter: none; opacity: 1; transform: none; }
  .fade-up   { opacity: 1; transform: none; }
  .stat-cell-num { clip-path: none !important; }
  .stats-cursor-glow { opacity: 0 !important; }
  .process-line-fill { height: 100% !important; }
  /* Disable looping SVG animations */
  .viz-scanner, .viz-find, .viz-flow-path, .viz-funnel-exit, .viz-node {
    animation: none !important;
  }
  .process-step .process-step-dot {
    background: #ffffff;
    border-color: #ffffff;
  }
  .process-step .process-step-content::before {
    background: linear-gradient(90deg, rgba(25, 148, 164, 0.7), rgba(94, 181, 101, 0.7));
  }
}
