.sg-logos__track {
  display: flex;
  gap: 42px;
  align-items: center;
  width: max-content;
  animation: 42s linear infinite sg-logos-marq;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
@keyframes sg-logos-marq {
  to {
    transform: translateX(-50%);
  }
}
.sg-logos__item {
  height: 56px;
  min-width: 150px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sg-logos__item:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
}
.sg-logos {
  min-height: 108px;
  contain: layout style;
}
.sg-logos__item img {
  width: 118px;
  height: 34px;
  max-width: 118px;
  max-height: 34px;
  object-fit: contain;
  display: block;
  aspect-ratio: 118/34;
}
/* ==========================================================================
   SISGAIN — Robotic Process Automation Services in UAE
   Scoped, section-based CSS. Colors: Black / Blue / White only.
   No global selectors. No font-family declarations.
   ========================================================================== */

/* ---------- Page shell (scoped wrapper, shared reveal animation) ---------- */
.rpaUaePageShell {
  display: block;
  overflow-x: hidden;
  background: #000000;
}
.rpaUaePageShell [data-rpa-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.rpaUaePageShell [data-rpa-reveal="left"] { transform: translateX(-36px); }
.rpaUaePageShell [data-rpa-reveal="right"] { transform: translateX(36px); }
.rpaUaePageShell [data-rpa-reveal].rpaRevealVisible {
  opacity: 1;
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .rpaUaePageShell [data-rpa-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   1. HERO  (dark)
   ========================================================================== */
.rpaHeroSection {
  position: relative;
  padding: 30px 0;
  background:
    radial-gradient(1100px 620px at 82% 8%, rgba(10, 102, 255, 0.28), rgba(0, 0, 0, 0) 60%),
    radial-gradient(700px 500px at 8% 92%, rgba(10, 102, 255, 0.16), rgba(0, 0, 0, 0) 55%),
    #000000;
  color: #ffffff;
  overflow: hidden;
}
.rpaHeroGridLines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 102, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 255, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(closest-side at 50% 40%, #000000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 40%, #000000 40%, transparent 100%);
  pointer-events: none;
}
.rpaHeroGlowOrb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 102, 255, 0.35), rgba(10, 102, 255, 0) 70%);
  animation: rpaHeroOrbPulse 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rpaHeroOrbPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}
.rpaHeroInner {
  margin: 100px auto!important;
  position: relative;
  max-width: 1200px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.rpaHeroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(10, 102, 255, 0.5);
  border-radius: 999px;
  color: #6ea8ff;
  background: rgba(10, 102, 255, 0.1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}
.rpaHeroHeading {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #ffffff 30%, #4d94ff 75%, #0a66ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
}
.rpaHeroLead {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}
.rpaHeroCtaButton {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0a66ff, #003bb3);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 0 1px rgba(109, 168, 255, 0.35), 0 14px 40px rgba(10, 102, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaHeroCtaButton:hover,
.rpaHeroCtaButton:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(109, 168, 255, 0.6), 0 22px 55px rgba(10, 102, 255, 0.55);
}
.rpaHeroCtaButton:focus-visible { outline: 2px solid #6ea8ff; outline-offset: 3px; }
.rpaHeroVisualCol { position: relative; }
.rpaHeroImageFrame {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 102, 255, 0.45);
  box-shadow: 0 30px 80px rgba(10, 102, 255, 0.28);
}
.rpaHeroImageFrame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.rpaHeroImageScanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 30%;
  background: linear-gradient(180deg, rgba(10, 102, 255, 0), rgba(109, 168, 255, 0.35), rgba(10, 102, 255, 0));
  animation: rpaHeroScan 4.5s linear infinite;
  pointer-events: none;
}
@keyframes rpaHeroScan {
  0% { top: -30%; }
  100% { top: 120%; }
}
.rpaHeroFloatChip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(10, 102, 255, 0.55);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.rpaHeroFloatChip svg { color: #4d94ff; flex-shrink: 0; }
.rpaHeroFloatChipTop { top: 26px; left: -26px; animation: rpaHeroChipFloatA 5s ease-in-out infinite; }
.rpaHeroFloatChipBottom { bottom: 30px; right: -18px; animation: rpaHeroChipFloatB 6s ease-in-out infinite; }
@keyframes rpaHeroChipFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes rpaHeroChipFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) {
  .rpaHeroGlowOrb, .rpaHeroImageScanline, .rpaHeroFloatChipTop, .rpaHeroFloatChipBottom { animation: none; }
}
@media (max-width: 991px) {
  .rpaHeroInner { grid-template-columns: 1fr; gap: 36px; }
  .rpaHeroFloatChipTop { left: 10px; }
  .rpaHeroFloatChipBottom { right: 10px; }
}
@media (max-width: 575px) {
  .rpaHeroLead { font-size: 0.95rem; }
  .rpaHeroCtaButton { width: 100%; justify-content: center; }
}

/* ==========================================================================
   2. TRUSTED BY  (white)
   ========================================================================== */
.rpaTrustedSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
}
.rpaTrustedInner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.rpaTrustedHeading {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.01em;
}
.rpaTrustedText {
  margin: 0 auto 28px;
  max-width: 76ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.rpaTrustedPlaceholderRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rpaTrustedPlaceholderSlot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 16px;
  border: 1.5px dashed rgba(10, 102, 255, 0.45);
  border-radius: 14px;
  color: #0a66ff;
  background: rgba(10, 102, 255, 0.04);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.rpaTrustedPlaceholderSlot:hover {
  transform: translateY(-4px);
  background: rgba(10, 102, 255, 0.08);
  box-shadow: 0 14px 32px rgba(10, 102, 255, 0.14);
}
@media (max-width: 767px) {
  .rpaTrustedPlaceholderRow { grid-template-columns: 1fr; }
}

/* ==========================================================================
   3. BUSINESS CHALLENGES  (dark)
   ========================================================================== */
.rpaChallengesSection {
  padding: 30px 0;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(10, 102, 255, 0.18), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
}
.rpaChallengesInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaChallengesIntro { max-width: 860px; margin: 0 auto 34px; text-align: center; }
.rpaChallengesHeading {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaChallengesSubheading {
  margin: 0 0 16px;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #4d94ff;
  letter-spacing: 0.02em;
}
.rpaChallengesLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.rpaChallengesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rpaChallengeCard {
  text-align: center;
  position: relative;
  padding: 26px 22px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(10, 102, 255, 0.1), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(10, 102, 255, 0.3);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.rpaChallengeCard::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #0a66ff, #6ea8ff);
  transition: width 0.4s ease;
}
.rpaChallengeCard:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 168, 255, 0.7);
  box-shadow: 0 18px 45px rgba(10, 102, 255, 0.3);
}
.rpaChallengeCard:hover::after { width: 100%; }
.rpaChallengeIconRing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #6ea8ff;
  background: rgba(10, 102, 255, 0.14);
  border: 1px solid rgba(10, 102, 255, 0.45);
  margin-bottom: 16px;
}
.rpaChallengeCardTitle {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaChallengeCardText {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 1100px) { .rpaChallengesGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .rpaChallengesGrid { grid-template-columns: 1fr; } }

/* ==========================================================================
   4. WHAT IS RPA  (white)
   ========================================================================== */
.rpaDefineSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
}
.rpaDefineInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaDefineTopSplit {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 40px;
}
.rpaDefineHeading {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaDefineText {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
}
.rpaDefineImageFrame {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 102, 255, 0.3);
  box-shadow: 0 24px 60px rgba(10, 102, 255, 0.18);
  position: relative;
}
.rpaDefineImageFrame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 102, 255, 0.22), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}
.rpaDefineImageFrame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rpaDefineImageFrame:hover img { transform: scale(1.04); }
.rpaDefineTableHeading {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: #001433;
  text-align: center;
}
.rpaDefineTableScroller {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(10, 102, 255, 0.28);
  box-shadow: 0 16px 44px rgba(10, 102, 255, 0.12);
  -webkit-overflow-scrolling: touch;
}
.rpaDefineTableScroller:focus-visible { outline: 2px solid #0a66ff; outline-offset: 2px; }
.rpaDefineCompareTable {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #ffffff;
}
.rpaDefineCompareTable th {
  background: linear-gradient(135deg, #001433, #0a2a66);
  color: #ffffff;
  text-align: left;
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.rpaDefineCompareTable td {
  padding: 15px 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.72);
  border-top: 1px solid rgba(10, 102, 255, 0.15);
  vertical-align: top;
}
.rpaDefineCompareTable tbody tr:nth-child(even) { background: rgba(10, 102, 255, 0.045); }
.rpaDefineCompareTable tbody tr { transition: background 0.25s ease; }
.rpaDefineCompareTable tbody tr:hover { background: rgba(10, 102, 255, 0.1); }
.rpaDefineCompareTable td:first-child { font-weight: 700; color: #001433; white-space: nowrap; }
.rpaDefineTableNote { margin-top: 20px; }
.rpaDefineFactsHeading {
  margin: 34px 0 18px;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: #001433;
}
.rpaDefineFactsList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rpaDefineFactItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(10, 102, 255, 0.05);
  border: 1px solid rgba(10, 102, 255, 0.22);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.rpaDefineFactItem:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 255, 0.55);
  box-shadow: 0 12px 30px rgba(10, 102, 255, 0.15);
}
.rpaDefineFactItem svg { color: #0a66ff; flex-shrink: 0; margin-top: 2px; }
.rpaDefineFactItem strong { color: #001433; }
@media (max-width: 991px) {
  .rpaDefineTopSplit { grid-template-columns: 1fr; gap: 28px; }
  .rpaDefineFactsList { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .rpaDefineFactsList { grid-template-columns: 1fr; }
}

/* ==========================================================================
   5. HOW RPA WORKS  (dark)
   ========================================================================== */
.rpaWorksSection {
  padding: 30px 0;
  background:
    radial-gradient(800px 460px at 88% 10%, rgba(10, 102, 255, 0.2), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
}
.rpaWorksInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaWorksIntro { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.rpaWorksHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaWorksLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.rpaWorksDiagramBoard {
  max-width: 1000px;
  margin: 0 auto 34px;
  padding: 22px 18px 12px;
  border: 1px solid rgba(10, 102, 255, 0.4);
  border-radius: 18px;
  background: linear-gradient(170deg, rgba(10, 102, 255, 0.09), rgba(0, 0, 0, 0.45));
  box-shadow: 0 18px 48px rgba(10, 102, 255, 0.18);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rpaWorksDiagramBoard::-webkit-scrollbar { display: none; }
.rpaWorksDiagramTitle {
  display: block;
  text-align: center;
  color: #6ea8ff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rpaWorksDiagramSvg {
  display: block;
  width: 100%;
  min-width: 760px;
  height: auto;
}
.rpaWorksFlowTrack {
  stroke: rgba(10, 102, 255, 0.3);
  stroke-width: 3;
  fill: none;
}
.rpaWorksFlowLine {
  stroke: #0a66ff;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 12 10;
  animation: rpaWorksDashMove 1.1s linear infinite;
}
@keyframes rpaWorksDashMove {
  to { stroke-dashoffset: -22; }
}
.rpaWorksFlowPulse {
  fill: #6ea8ff;
  filter: drop-shadow(0 0 6px rgba(110, 168, 255, 0.9));
}
.rpaWorksFlowNodeCircle {
  fill: #001433;
  stroke: #0a66ff;
  stroke-width: 2;
  animation: rpaWorksNodeGlow 2.8s ease-in-out infinite;
}
.rpaWorksFlowNode:nth-of-type(2) .rpaWorksFlowNodeCircle { animation-delay: 0.35s; }
.rpaWorksFlowNode:nth-of-type(3) .rpaWorksFlowNodeCircle { animation-delay: 0.7s; }
.rpaWorksFlowNode:nth-of-type(4) .rpaWorksFlowNodeCircle { animation-delay: 1.05s; }
.rpaWorksFlowNode:nth-of-type(5) .rpaWorksFlowNodeCircle { animation-delay: 1.4s; }
.rpaWorksFlowNode:nth-of-type(6) .rpaWorksFlowNodeCircle { animation-delay: 1.75s; }
.rpaWorksFlowNode:nth-of-type(7) .rpaWorksFlowNodeCircle { animation-delay: 2.1s; }
.rpaWorksFlowNode:nth-of-type(8) .rpaWorksFlowNodeCircle { animation-delay: 2.45s; }
@keyframes rpaWorksNodeGlow {
  0%, 100% { stroke: #0a66ff; filter: none; }
  50% { stroke: #6ea8ff; filter: drop-shadow(0 0 8px rgba(110, 168, 255, 0.85)); }
}
.rpaWorksFlowNodeNum {
  fill: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-anchor: middle;
}
.rpaWorksFlowNodeLabel {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-anchor: middle;
}
@media (prefers-reduced-motion: reduce) {
  .rpaWorksFlowLine, .rpaWorksFlowNodeCircle { animation: none; }
  .rpaWorksFlowPulse { display: none; }
}
.rpaWorksStepsFlow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: rpaworksstep;
}
.rpaWorksStepNode {
  text-align: center;
  position: relative;
  padding: 24px 20px;
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(10, 102, 255, 0.12), rgba(0, 0, 0, 0.35));
  border: 1px solid rgba(10, 102, 255, 0.3);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.rpaWorksStepNode:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(109, 168, 255, 0.75);
  box-shadow: 0 16px 42px rgba(10, 102, 255, 0.32);
}
.rpaWorksStepIndex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a66ff, #003bb3);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 0 4px rgba(10, 102, 255, 0.2), 0 8px 22px rgba(10, 102, 255, 0.4);
  margin-bottom: 14px;
}
.rpaWorksStepTitle {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaWorksStepText {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.66);
}
@media (max-width: 1100px) { .rpaWorksStepsFlow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .rpaWorksStepsFlow { grid-template-columns: 1fr; } }

/* ==========================================================================
   6. OUR RPA SERVICES  (white / slider)
   ========================================================================== */
.rpaServicesSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
  overflow: hidden;
}
.rpaServicesInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaServicesIntro { max-width: 840px; margin: 0 auto 22px; text-align: center; }
.rpaServicesHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaServicesLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.rpaServicesSliderControls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.rpaServicesArrowBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 102, 255, 0.5);
  background: #ffffff;
  color: #0a66ff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaServicesArrowBtn:hover,
.rpaServicesArrowBtn:focus-visible {
  background: #0a66ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 102, 255, 0.35);
}
.rpaServicesArrowBtn:focus-visible { outline: 2px solid #001433; outline-offset: 2px; }
.rpaServicesTrackViewport {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scroll-snap-type: x proximity;
}
.rpaServicesTrackViewport::-webkit-scrollbar { display: none; }
.rpaServicesTrackViewport.rpaSliderGrabbing { cursor: grabbing; scroll-snap-type: none; }
.rpaServicesTrackViewport.rpaSliderGrabbing .rpaServiceSlideCard { pointer-events: none; }
.rpaServicesTrack {
  display: flex;
  gap: 18px;
  width: max-content;
}
.rpaServiceSlideCard {
  text-align: center;
  flex: 0 0 330px;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(10, 102, 255, 0.06), #ffffff 55%);
  border: 1px solid rgba(10, 102, 255, 0.25);
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  user-select: none;
}
.rpaServiceSlideCard:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 102, 255, 0.6);
  box-shadow: 0 20px 48px rgba(10, 102, 255, 0.2);
}
.rpaServiceIconBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0a66ff, #003bb3);
  color: #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 10px 26px rgba(10, 102, 255, 0.35);
}
.rpaServiceSlideTitle {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #001433;
}
.rpaServiceSlideText {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.66);
}
.rpaServicesDragHint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0, 20, 51, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .rpaServiceSlideCard { flex-basis: 82vw; }
  .rpaServicesSliderControls { justify-content: center; }
}

/* ==========================================================================
   7. BUSINESS PROCESSES WE AUTOMATE  (dark / tabs)
   ========================================================================== */
.rpaProcessesSection {
  padding: 30px 0;
  background:
    radial-gradient(900px 520px at 6% 100%, rgba(10, 102, 255, 0.17), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
}
.rpaProcessesInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaProcessesIntro { max-width: 780px; margin: 0 auto 26px; text-align: center; }
.rpaProcessesHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaProcessesLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.rpaProcessesTabsBar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.rpaProcessesTabBtn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(10, 102, 255, 0.45);
  background: rgba(10, 102, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaProcessesTabBtn:hover { border-color: rgba(109, 168, 255, 0.85); transform: translateY(-2px); }
.rpaProcessesTabBtn:focus-visible { outline: 2px solid #6ea8ff; outline-offset: 2px; }
.rpaProcessesTabBtnActive {
  background: linear-gradient(135deg, #0a66ff, #003bb3);
  border-color: rgba(109, 168, 255, 0.9);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 102, 255, 0.4);
}
.rpaProcessesPanel { display: none; }
.rpaProcessesPanelActive { display: block; animation: rpaProcessesPanelIn 0.45s ease; }
@keyframes rpaProcessesPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .rpaProcessesPanelActive { animation: none; }
}
.rpaProcessesPanelGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.rpaProcessEntry {
  flex: 0 0 calc((100% - 32px) / 3);
  text-align: center;
  padding: 22px 20px;
  border-radius: 14px;
  border: 1px solid rgba(10, 102, 255, 0.3);
  background: linear-gradient(165deg, rgba(10, 102, 255, 0.1), rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.rpaProcessEntry:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 168, 255, 0.75);
  box-shadow: 0 14px 38px rgba(10, 102, 255, 0.3);
}
.rpaProcessEntryTitle {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #6ea8ff;
}
.rpaProcessEntryText {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 991px) { .rpaProcessEntry { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 575px) { .rpaProcessEntry { flex-basis: 100%; } }

/* ==========================================================================
   8. INDUSTRIES WE SERVE  (white / slider)
   ========================================================================== */
.rpaIndustriesSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
  overflow: hidden;
}
.rpaIndustriesInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaIndustriesIntro { max-width: 800px; margin: 0 auto 22px; text-align: center; }
.rpaIndustriesHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaIndustriesLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.rpaIndustriesSliderControls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.rpaIndustriesArrowBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 102, 255, 0.5);
  background: #ffffff;
  color: #0a66ff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaIndustriesArrowBtn:hover,
.rpaIndustriesArrowBtn:focus-visible {
  background: #0a66ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 102, 255, 0.35);
}
.rpaIndustriesArrowBtn:focus-visible { outline: 2px solid #001433; outline-offset: 2px; }
.rpaIndustriesTrackViewport {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scroll-snap-type: x proximity;
}
.rpaIndustriesTrackViewport::-webkit-scrollbar { display: none; }
.rpaIndustriesTrackViewport.rpaSliderGrabbing { cursor: grabbing; scroll-snap-type: none; }
.rpaIndustriesTrackViewport.rpaSliderGrabbing .rpaIndustrySlideCard { pointer-events: none; }
.rpaIndustriesTrack {
  display: flex;
  gap: 18px;
  width: max-content;
}
.rpaIndustrySlideCard {
  text-align: center;
  flex: 0 0 350px;
  padding: 28px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 102, 255, 0.28);
  box-shadow: 0 8px 26px rgba(0, 20, 51, 0.06);
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  user-select: none;
}
.rpaIndustrySlideCard:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 102, 255, 0.6);
  box-shadow: 0 22px 50px rgba(10, 102, 255, 0.2);
}
.rpaIndustryIconHex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  color: #0a66ff;
  background: rgba(10, 102, 255, 0.1);
  border: 1px solid rgba(10, 102, 255, 0.4);
  margin-bottom: 16px;
}
.rpaIndustrySlideTitle {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #001433;
}
.rpaIndustrySlideText {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.66);
}
.rpaIndustrySlideText strong { color: #0a66ff; font-weight: 700; }
.rpaIndustriesDragHint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0, 20, 51, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .rpaIndustrySlideCard { flex-basis: 84vw; }
  .rpaIndustriesSliderControls { justify-content: center; }
}

/* ==========================================================================
   9. AI-POWERED INTELLIGENT AUTOMATION  (dark)
   ========================================================================== */
.rpaIntelligentSection {
  padding: 30px 0;
  background:
    radial-gradient(1000px 560px at 92% 20%, rgba(10, 102, 255, 0.22), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
}
.rpaIntelligentInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaIntelligentIntro { text-align: center; margin-bottom: 30px; }
.rpaIntelligentHeading {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaIntelligentLayout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.rpaIntelligentTopicsCol { display: grid; gap: 14px; }
.rpaIntelligentTopicRow {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(10, 102, 255, 0.3);
  background: linear-gradient(160deg, rgba(10, 102, 255, 0.1), rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.rpaIntelligentTopicRow:hover {
  transform: translateX(8px);
  border-color: rgba(109, 168, 255, 0.75);
  box-shadow: 0 14px 38px rgba(10, 102, 255, 0.28);
}
.rpaIntelligentTopicIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #6ea8ff;
  background: rgba(10, 102, 255, 0.14);
  border: 1px solid rgba(10, 102, 255, 0.45);
}
.rpaIntelligentTopicTitle {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaIntelligentTopicText {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.68);
}
.rpaIntelligentVisualCol {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 20px;
}
.rpaIntelligentArchBoard {
  padding: 20px 16px 12px;
  border: 1px solid rgba(10, 102, 255, 0.42);
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(10, 102, 255, 0.09), rgba(0, 0, 0, 0.45));
  box-shadow: 0 16px 44px rgba(10, 102, 255, 0.2);
}
.rpaIntelligentArchTitle {
  display: block;
  text-align: center;
  color: #6ea8ff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rpaIntelligentArchSvg {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  height: auto;
}
.rpaIntelligentArchTrack {
  stroke: rgba(10, 102, 255, 0.3);
  stroke-width: 2.5;
  fill: none;
}
.rpaIntelligentArchFlow {
  stroke: #0a66ff;
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 8 7;
  animation: rpaIntelligentArchDash 1s linear infinite;
}
@keyframes rpaIntelligentArchDash {
  to { stroke-dashoffset: -15; }
}
.rpaIntelligentArchPulse {
  fill: #6ea8ff;
  filter: drop-shadow(0 0 5px rgba(110, 168, 255, 0.9));
}
.rpaIntelligentArchNodeBox {
  fill: rgba(10, 102, 255, 0.12);
  stroke: rgba(10, 102, 255, 0.65);
  stroke-width: 1.6;
}
.rpaIntelligentArchNodeCore {
  fill: rgba(10, 102, 255, 0.3);
  stroke: #6ea8ff;
  animation: rpaIntelligentArchCoreGlow 2.6s ease-in-out infinite;
}
@keyframes rpaIntelligentArchCoreGlow {
  0%, 100% { filter: none; }
  50% { filter: drop-shadow(0 0 9px rgba(110, 168, 255, 0.7)); }
}
.rpaIntelligentArchNodeLabel {
  fill: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-anchor: middle;
}
@media (prefers-reduced-motion: reduce) {
  .rpaIntelligentArchFlow, .rpaIntelligentArchNodeCore { animation: none; }
  .rpaIntelligentArchPulse { display: none; }
}
.rpaIntelligentImageFrame {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 102, 255, 0.45);
  box-shadow: 0 26px 66px rgba(10, 102, 255, 0.3);
}
.rpaIntelligentImageFrame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rpaIntelligentImageFrame:hover img { transform: scale(1.05); }
.rpaIntelligentClosing {
  margin: 30px auto 0;
  max-width: 900px;
  padding: 22px 26px;
  border-radius: 15px;
  border: 1px solid rgba(10, 102, 255, 0.4);
  border-left: 4px solid #0a66ff;
  background: rgba(10, 102, 255, 0.08);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
  .rpaIntelligentLayout { grid-template-columns: 1fr; }
  .rpaIntelligentVisualCol { position: static; }
}

/* ==========================================================================
   10. PLATFORMS & TECHNOLOGIES  (white / slider)
   ========================================================================== */
.rpaPlatformsSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
  overflow: hidden;
}
.rpaPlatformsInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaPlatformsIntro { max-width: 820px; margin: 0 auto 22px; text-align: center; }
.rpaPlatformsHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaPlatformsLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.rpaPlatformsSliderControls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.rpaPlatformsArrowBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 102, 255, 0.5);
  background: #ffffff;
  color: #0a66ff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaPlatformsArrowBtn:hover,
.rpaPlatformsArrowBtn:focus-visible {
  background: #0a66ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 102, 255, 0.35);
}
.rpaPlatformsArrowBtn:focus-visible { outline: 2px solid #001433; outline-offset: 2px; }
.rpaPlatformsTrackViewport {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scroll-snap-type: x proximity;
}
.rpaPlatformsTrackViewport::-webkit-scrollbar { display: none; }
.rpaPlatformsTrackViewport.rpaSliderGrabbing { cursor: grabbing; scroll-snap-type: none; }
.rpaPlatformsTrackViewport.rpaSliderGrabbing .rpaPlatformSlideCard { pointer-events: none; }
.rpaPlatformsTrack {
  display: flex;
  gap: 16px;
  width: max-content;
}
.rpaPlatformSlideCard {
  text-align: center;
  flex: 0 0 280px;
  padding: 24px 22px;
  border-radius: 16px;
  background: linear-gradient(170deg, #001433, #000d24);
  border: 1px solid rgba(10, 102, 255, 0.45);
  color: #ffffff;
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  user-select: none;
}
.rpaPlatformSlideCard:hover {
  transform: translateY(-7px);
  border-color: rgba(109, 168, 255, 0.9);
  box-shadow: 0 20px 48px rgba(10, 102, 255, 0.35);
}
.rpaPlatformIconDot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #6ea8ff;
  background: rgba(10, 102, 255, 0.16);
  border: 1px solid rgba(10, 102, 255, 0.5);
  margin-bottom: 14px;
}
.rpaPlatformSlideTitle {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaPlatformSlideText {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.7);
}
.rpaPlatformsDragHint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0, 20, 51, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .rpaPlatformSlideCard { flex-basis: 78vw; }
  .rpaPlatformsSliderControls { justify-content: center; }
}

/* ==========================================================================
   11. IMPLEMENTATION METHODOLOGY  (dark / slider timeline)
   ========================================================================== */
.rpaMethodSection {
  padding: 30px 0;
  background:
    radial-gradient(860px 480px at 10% 10%, rgba(10, 102, 255, 0.18), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
  overflow: hidden;
}
.rpaMethodInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaMethodIntro { text-align: center; margin-bottom: 22px; }
.rpaMethodHeading {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaMethodSliderControls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.rpaMethodArrowBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(109, 168, 255, 0.6);
  background: rgba(10, 102, 255, 0.1);
  color: #6ea8ff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaMethodArrowBtn:hover,
.rpaMethodArrowBtn:focus-visible {
  background: #0a66ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 102, 255, 0.45);
}
.rpaMethodArrowBtn:focus-visible { outline: 2px solid #ffffff; outline-offset: 2px; }
.rpaMethodTrackViewport {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scroll-snap-type: x proximity;
}
.rpaMethodTrackViewport::-webkit-scrollbar { display: none; }
.rpaMethodTrackViewport.rpaSliderGrabbing { cursor: grabbing; scroll-snap-type: none; }
.rpaMethodTrackViewport.rpaSliderGrabbing .rpaMethodStageCard { pointer-events: none; }
.rpaMethodTrack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  width: max-content;
  position: relative;
}
.rpaMethodStageCard {
  text-align: center;
  position: relative;
  flex: 0 0 300px;
  padding: 26px 22px 24px;
  border-radius: 17px;
  border: 1px solid rgba(10, 102, 255, 0.35);
  background: linear-gradient(170deg, rgba(10, 102, 255, 0.12), rgba(0, 0, 0, 0.4));
  scroll-snap-align: start;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  user-select: none;
}
.rpaMethodStageCard:hover {
  transform: translateY(-7px);
  border-color: rgba(109, 168, 255, 0.85);
  box-shadow: 0 18px 46px rgba(10, 102, 255, 0.34);
}
.rpaMethodStageNum {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #6ea8ff, #0a66ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0a66ff;
  margin-bottom: 10px;
}
.rpaMethodStageTitle {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaMethodStageText {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.68);
}
.rpaMethodTimelineBoard {
  max-width: 1000px;
  margin: 10px auto 0;
  padding: 20px 18px 10px;
  border: 1px solid rgba(10, 102, 255, 0.4);
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(10, 102, 255, 0.09), rgba(0, 0, 0, 0.45));
  box-shadow: 0 16px 44px rgba(10, 102, 255, 0.18);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rpaMethodTimelineBoard::-webkit-scrollbar { display: none; }
.rpaMethodTimelineTitle {
  display: block;
  text-align: center;
  color: #6ea8ff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rpaMethodTimelineSvg {
  display: block;
  width: 100%;
  min-width: 700px;
  height: auto;
}
.rpaMethodTimelineTrack {
  stroke: rgba(10, 102, 255, 0.3);
  stroke-width: 4;
  fill: none;
}
.rpaMethodTimelineProgress {
  stroke: #0a66ff;
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 840;
  stroke-dashoffset: 840;
  animation: rpaMethodProgressDraw 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rpaMethodProgressDraw {
  0% { stroke-dashoffset: 840; }
  75% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
.rpaMethodTimelinePulse {
  fill: #6ea8ff;
  filter: drop-shadow(0 0 6px rgba(110, 168, 255, 0.9));
}
.rpaMethodTimelineDot {
  fill: #001433;
  stroke: #0a66ff;
  stroke-width: 2;
  animation: rpaMethodDotGlow 3s ease-in-out infinite;
}
.rpaMethodTimelineNode:nth-of-type(2) .rpaMethodTimelineDot { animation-delay: 0.33s; }
.rpaMethodTimelineNode:nth-of-type(3) .rpaMethodTimelineDot { animation-delay: 0.66s; }
.rpaMethodTimelineNode:nth-of-type(4) .rpaMethodTimelineDot { animation-delay: 0.99s; }
.rpaMethodTimelineNode:nth-of-type(5) .rpaMethodTimelineDot { animation-delay: 1.32s; }
.rpaMethodTimelineNode:nth-of-type(6) .rpaMethodTimelineDot { animation-delay: 1.65s; }
.rpaMethodTimelineNode:nth-of-type(7) .rpaMethodTimelineDot { animation-delay: 1.98s; }
.rpaMethodTimelineNode:nth-of-type(8) .rpaMethodTimelineDot { animation-delay: 2.31s; }
.rpaMethodTimelineNode:nth-of-type(9) .rpaMethodTimelineDot { animation-delay: 2.64s; }
@keyframes rpaMethodDotGlow {
  0%, 100% { stroke: #0a66ff; filter: none; }
  50% { stroke: #6ea8ff; filter: drop-shadow(0 0 7px rgba(110, 168, 255, 0.85)); }
}
.rpaMethodTimelineNum {
  fill: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-anchor: middle;
}
@media (prefers-reduced-motion: reduce) {
  .rpaMethodTimelineProgress, .rpaMethodTimelineDot { animation: none; }
  .rpaMethodTimelineProgress { stroke-dashoffset: 0; }
  .rpaMethodTimelinePulse { display: none; }
}
@media (max-width: 575px) {
  .rpaMethodStageCard { flex-basis: 80vw; }
  .rpaMethodSliderControls { justify-content: center; }
}

/* ==========================================================================
   12. READINESS  (white)
   ========================================================================== */
.rpaReadySection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
}
.rpaReadyInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaReadyIntro { max-width: 720px; margin: 0 auto 28px; text-align: center; }
.rpaReadyHeading {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaReadyLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.rpaReadyChecklistGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}
.rpaReadyCheckItem {
  flex: 0 0 calc((100% - 14px) / 2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(10, 102, 255, 0.25);
  background: rgba(10, 102, 255, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.rpaReadyCheckItem:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 255, 0.6);
  box-shadow: 0 14px 34px rgba(10, 102, 255, 0.15);
}
.rpaReadyCheckItem svg { color: #0a66ff; flex-shrink: 0; margin-top: 2px; }
.rpaReadyCheckTitle {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #001433;
}
.rpaReadyCheckText {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.66;
  color: rgba(0, 0, 0, 0.66);
}
.rpaReadyOutcomesHeading {
  margin: 0 0 18px;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: #001433;
  text-align: center;
}
.rpaReadyOutcomesRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rpaReadyOutcomeCard {
  padding: 26px 22px;
  border-radius: 16px;
  background: linear-gradient(170deg, #001433, #000d24);
  border: 1px solid rgba(10, 102, 255, 0.45);
  color: #ffffff;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.rpaReadyOutcomeCard:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(109, 168, 255, 0.9);
  box-shadow: 0 20px 50px rgba(10, 102, 255, 0.35);
}
.rpaReadyOutcomeIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #6ea8ff;
  background: rgba(10, 102, 255, 0.16);
  border: 1px solid rgba(10, 102, 255, 0.55);
  margin-bottom: 14px;
}
.rpaReadyOutcomeTitle {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaReadyOutcomeText {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 991px) { .rpaReadyOutcomesRow { grid-template-columns: 1fr; } }
@media (max-width: 767px) { .rpaReadyCheckItem { flex-basis: 100%; } }

/* ==========================================================================
   13. RPA VS OTHER TECHNOLOGIES  (dark / table)
   ========================================================================== */
.rpaCompareSection {
  padding: 30px 0;
  background:
    radial-gradient(880px 500px at 90% 90%, rgba(10, 102, 255, 0.18), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
}
.rpaCompareInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaCompareIntro { text-align: center; margin-bottom: 24px; }
.rpaCompareHeading {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaCompareTableScroller {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(10, 102, 255, 0.4);
  box-shadow: 0 18px 50px rgba(10, 102, 255, 0.2);
  -webkit-overflow-scrolling: touch;
}
.rpaCompareTableScroller:focus-visible { outline: 2px solid #6ea8ff; outline-offset: 2px; }
.rpaCompareTechTable {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: rgba(0, 13, 36, 0.85);
}
.rpaCompareTechTable th {
  background: linear-gradient(135deg, #0a66ff, #003bb3);
  color: #ffffff;
  text-align: left;
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.rpaCompareTechTable td {
  padding: 15px 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(10, 102, 255, 0.25);
  vertical-align: top;
}
.rpaCompareTechTable tbody tr { transition: background 0.25s ease; }
.rpaCompareTechTable tbody tr:hover { background: rgba(10, 102, 255, 0.14); }
.rpaCompareTechTable td:first-child { font-weight: 700; color: #6ea8ff; white-space: nowrap; }
.rpaCompareClosing {
  margin: 24px auto 0;
  max-width: 960px;
  font-size: 0.95rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

/* ==========================================================================
   14. BENEFITS  (white / slider)
   ========================================================================== */
.rpaBenefitsSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
  overflow: hidden;
}
.rpaBenefitsInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaBenefitsIntro { max-width: 860px; margin: 0 auto 22px; text-align: center; }
.rpaBenefitsHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaBenefitsLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.rpaBenefitsSliderControls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.rpaBenefitsArrowBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 102, 255, 0.5);
  background: #ffffff;
  color: #0a66ff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaBenefitsArrowBtn:hover,
.rpaBenefitsArrowBtn:focus-visible {
  background: #0a66ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 102, 255, 0.35);
}
.rpaBenefitsArrowBtn:focus-visible { outline: 2px solid #001433; outline-offset: 2px; }
.rpaBenefitsTrackViewport {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scroll-snap-type: x proximity;
}
.rpaBenefitsTrackViewport::-webkit-scrollbar { display: none; }
.rpaBenefitsTrackViewport.rpaSliderGrabbing { cursor: grabbing; scroll-snap-type: none; }
.rpaBenefitsTrackViewport.rpaSliderGrabbing .rpaBenefitSlideCard { pointer-events: none; }
.rpaBenefitsTrack {
  display: flex;
  gap: 16px;
  width: max-content;
}
.rpaBenefitSlideCard {
  text-align: center;
  flex: 0 0 300px;
  padding: 26px 22px;
  border-radius: 17px;
  background: linear-gradient(165deg, rgba(10, 102, 255, 0.07), #ffffff 55%);
  border: 1px solid rgba(10, 102, 255, 0.25);
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  user-select: none;
}
.rpaBenefitSlideCard:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 102, 255, 0.6);
  box-shadow: 0 20px 46px rgba(10, 102, 255, 0.2);
}
.rpaBenefitIconMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a66ff, #003bb3);
  color: #ffffff;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(10, 102, 255, 0.35);
}
.rpaBenefitSlideTitle {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #001433;
}
.rpaBenefitSlideText {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.68;
  color: rgba(0, 0, 0, 0.66);
}
.rpaBenefitsDragHint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0, 20, 51, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .rpaBenefitSlideCard { flex-basis: 80vw; }
  .rpaBenefitsSliderControls { justify-content: center; }
}

/* ==========================================================================
   15. WHY CHOOSE SISGAIN  (dark)
   ========================================================================== */
.rpaWhySection {
  padding: 30px 0;
  background:
    radial-gradient(900px 520px at 4% 30%, rgba(10, 102, 255, 0.2), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
}
.rpaWhyInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaWhyIntro { text-align: center; margin-bottom: 30px; }
.rpaWhyHeading {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaWhyLayout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
  align-items: stretch;
}
.rpaWhyImageFrame {
  position: relative;
  margin: 0;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 102, 255, 0.5);
  box-shadow: 0 28px 70px rgba(10, 102, 255, 0.3);
}
.rpaWhyImageFrame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rpaWhyImageGlow {
  position: absolute;
  inset: 0;
  background: linear-gradient(15deg, rgba(10, 102, 255, 0.35), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}
.rpaWhyPointsScroller {
  max-height: 680px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #0a66ff rgba(10, 102, 255, 0.12);
}
.rpaWhyPointsScroller::-webkit-scrollbar { width: 8px; }
.rpaWhyPointsScroller::-webkit-scrollbar-track {
  background: rgba(10, 102, 255, 0.12);
  border-radius: 8px;
}
.rpaWhyPointsScroller::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0a66ff, #003bb3);
  border-radius: 8px;
}
.rpaWhyPointsScroller::-webkit-scrollbar-thumb:hover {
  background: #6ea8ff;
}
.rpaWhyPointsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.rpaWhyPointCard {
  padding: 22px 20px;
  border-radius: 15px;
  border: 1px solid rgba(10, 102, 255, 0.3);
  background: linear-gradient(165deg, rgba(10, 102, 255, 0.1), rgba(0, 0, 0, 0.35));
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.rpaWhyPointCard:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 168, 255, 0.8);
  box-shadow: 0 16px 40px rgba(10, 102, 255, 0.3);
}
.rpaWhyPointIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #6ea8ff;
  background: rgba(10, 102, 255, 0.14);
  border: 1px solid rgba(10, 102, 255, 0.45);
  margin-bottom: 12px;
}
.rpaWhyPointTitle {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaWhyPointText {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.66);
}
@media (max-width: 991px) {
  .rpaWhyLayout { grid-template-columns: 1fr; }
  .rpaWhyImageFrame { min-height: 320px; max-width: 520px; margin: 0 auto; width: 100%; }
  .rpaWhyPointsScroller { max-height: none; overflow-y: visible; padding-right: 0; }
}
@media (max-width: 575px) {
  .rpaWhyPointsGrid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   16. CASE STUDIES  (white)
   ========================================================================== */
.rpaCasesSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
}
.rpaCasesInner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaCasesIntro { text-align: center; margin-bottom: 30px; }
.rpaCasesHeading {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaCasesStoryStack { display: grid; gap: 26px; }
.rpaCaseStoryCard {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 102, 255, 0.28);
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(0, 20, 51, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.rpaCaseStoryCard:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 102, 255, 0.6);
  box-shadow: 0 26px 64px rgba(10, 102, 255, 0.2);
}
.rpaCaseStoryCard:nth-child(even) { grid-template-columns: 1.15fr 0.85fr; }
.rpaCaseStoryCard:nth-child(even) .rpaCaseStoryImage { order: 2; }
.rpaCaseStoryImage {
  margin: 0;
  position: relative;
  min-height: 260px;
  overflow: hidden;
}
.rpaCaseStoryImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 20, 51, 0.35), rgba(10, 102, 255, 0.15));
  pointer-events: none;
}
.rpaCaseStoryImage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rpaCaseStoryCard:hover .rpaCaseStoryImage img { transform: scale(1.06); }
.rpaCaseStoryBody { padding: 30px 30px 28px; }
.rpaCaseStoryTitle {
  margin: 0 0 16px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #001433;
  line-height: 1.4;
}
.rpaCaseStoryPara {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.68);
  padding-left: 14px;
  border-left: 3px solid rgba(10, 102, 255, 0.35);
}
.rpaCaseStoryPara em {
  color: #0a66ff;
  font-weight: 700;
}
@media (max-width: 850px) {
  .rpaCaseStoryCard,
  .rpaCaseStoryCard:nth-child(even) { grid-template-columns: 1fr; }
  .rpaCaseStoryCard:nth-child(even) .rpaCaseStoryImage { order: 0; }
  .rpaCaseStoryImage { min-height: 220px; }
}

/* ==========================================================================
   17. SECURITY & COMPLIANCE  (dark)
   ========================================================================== */
.rpaSecuritySection {
  padding: 30px 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(10, 102, 255, 0.2), rgba(0, 0, 0, 0) 62%),
    #000000;
  color: #ffffff;
}
.rpaSecurityInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaSecurityIntro { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.rpaSecurityHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaSecurityLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.rpaSecurityShieldGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rpaSecurityShieldCard {
  text-align: center;
  position: relative;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(10, 102, 255, 0.32);
  background: linear-gradient(170deg, rgba(10, 102, 255, 0.11), rgba(0, 0, 0, 0.4));
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.rpaSecurityShieldCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(109, 168, 255, 0.12), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.rpaSecurityShieldCard:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 168, 255, 0.8);
  box-shadow: 0 16px 42px rgba(10, 102, 255, 0.32);
}
.rpaSecurityShieldCard:hover::before { left: 130%; }
.rpaSecurityShieldIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #6ea8ff;
  background: rgba(10, 102, 255, 0.15);
  border: 1px solid rgba(10, 102, 255, 0.5);
  margin-bottom: 14px;
}
.rpaSecurityShieldTitle {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}
.rpaSecurityShieldText {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.66);
}
@media (max-width: 1100px) { .rpaSecurityShieldGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .rpaSecurityShieldGrid { grid-template-columns: 1fr; } }

/* ==========================================================================
   18. FREQUENTLY INTEGRATED SYSTEMS  (white / slider)
   ========================================================================== */
.rpaIntegrationsSection {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
  overflow: hidden;
}
.rpaIntegrationsInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaIntegrationsIntro { max-width: 840px; margin: 0 auto 22px; text-align: center; }
.rpaIntegrationsHeading {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #000000;
}
.rpaIntegrationsLead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.rpaIntegrationsSliderControls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.rpaIntegrationsArrowBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 102, 255, 0.5);
  background: #ffffff;
  color: #0a66ff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rpaIntegrationsArrowBtn:hover,
.rpaIntegrationsArrowBtn:focus-visible {
  background: #0a66ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 102, 255, 0.35);
}
.rpaIntegrationsArrowBtn:focus-visible { outline: 2px solid #001433; outline-offset: 2px; }
.rpaIntegrationsTrackViewport {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scroll-snap-type: x proximity;
}
.rpaIntegrationsTrackViewport::-webkit-scrollbar { display: none; }
.rpaIntegrationsTrackViewport.rpaSliderGrabbing { cursor: grabbing; scroll-snap-type: none; }
.rpaIntegrationsTrackViewport.rpaSliderGrabbing .rpaIntegrationSystemCard { pointer-events: none; }
.rpaIntegrationsTrack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  width: max-content;
}
.rpaIntegrationSystemCard {
  text-align: center;
  flex: 0 0 250px;
  padding: 22px 20px;
  border-radius: 15px;
  border: 1px solid rgba(10, 102, 255, 0.28);
  background: rgba(10, 102, 255, 0.045);
  scroll-snap-align: start;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  user-select: none;
}
.rpaIntegrationSystemCard:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(10, 102, 255, 0.62);
  box-shadow: 0 16px 40px rgba(10, 102, 255, 0.18);
}
.rpaIntegrationSystemIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: #0a66ff;
  background: rgba(10, 102, 255, 0.1);
  border: 1px solid rgba(10, 102, 255, 0.4);
  margin-bottom: 12px;
}
.rpaIntegrationSystemName {
  margin: 0 0 6px;
  font-size: 0.97rem;
  font-weight: 700;
  color: #001433;
}
.rpaIntegrationSystemText {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.62);
}
.rpaIntegrationsDragHint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0, 20, 51, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .rpaIntegrationSystemCard { flex-basis: 72vw; }
  .rpaIntegrationsSliderControls { justify-content: center; }
}

/* ==========================================================================
   19. FAQ  (dark / accordion)
   ========================================================================== */
.rpaFaqSection {
  padding: 30px 0;
  background:
    radial-gradient(940px 520px at 14% 100%, rgba(10, 102, 255, 0.18), rgba(0, 0, 0, 0) 60%),
    #000000;
  color: #ffffff;
}
.rpaFaqInner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.rpaFaqIntro { text-align: center; margin-bottom: 26px; }
.rpaFaqHeading {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.rpaFaqAccordionList { display: grid; gap: 12px; }
.rpaFaqAccordionItem {
  border: 1px solid rgba(10, 102, 255, 0.32);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(10, 102, 255, 0.09), rgba(0, 0, 0, 0.35));
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.rpaFaqAccordionItem:hover { border-color: rgba(109, 168, 255, 0.6); }
.rpaFaqAccordionItemOpen {
  border-color: rgba(109, 168, 255, 0.85);
  box-shadow: 0 14px 40px rgba(10, 102, 255, 0.28);
}
.rpaFaqQuestionTitle { margin: 0; }
.rpaFaqQuestionToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.rpaFaqQuestionToggle:hover { color: #6ea8ff; }
.rpaFaqQuestionToggle:focus-visible { outline: 2px solid #6ea8ff; outline-offset: -2px; border-radius: 14px; }
.rpaFaqChevron {
  flex-shrink: 0;
  color: #6ea8ff;
  transition: transform 0.35s ease;
}
.rpaFaqAccordionItemOpen .rpaFaqChevron { transform: rotate(180deg); }
.rpaFaqAnswerWrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.rpaFaqAccordionItemOpen .rpaFaqAnswerWrap { max-height: 600px; }
.rpaFaqAnswerText {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
@media (prefers-reduced-motion: reduce) {
  .rpaFaqAnswerWrap, .rpaFaqChevron { transition: none; }
}