.hero-premium {
  position: relative;
  background: #020b18;
  padding: 120px 60px;
  overflow: hidden;
}

/* 🌌 PREMIUM DEPTH BACKGROUND */
.hero-premium::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(0,150,255,0.18), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,122,48,0.15), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(120,100,255,0.15), transparent 40%);

  filter: blur(90px);
  animation: heroFloat 14s ease-in-out infinite alternate;
}

/* ✨ MOVING LIGHT SWEEP */
.hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.05) 40%,
    transparent 60%
  );

  transform: translateX(-100%);
  animation: heroSweep 8s linear infinite;
}

/* LAYOUT */
.hero-wrap {
  position: relative;
  z-index: 2;

  max-width: 1380px;
  margin: auto;

  display: grid;
  grid-template-columns: minmax(520px, 1fr) 700px;
  gap: 72px;
  align-items: center;
}

/* TEXT SIDE */
.hero-left h1 {
  font-size: 72px;
  line-height: 1.05;
  color: #dbe7ff;
  margin-bottom: 25px;

  /* subtle glow */
  text-shadow: 0 0 30px rgba(120,160,255,0.08);
}

.hero-left p {
  color: #8fa3c3;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* BUTTON */
.btn-primary {
  background: #ff7a30;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.3), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,122,47,0.4);
}

/* IMAGE (STRICT — NO EFFECTS) */
.hero-image-wrap {
  width: 100%;
  aspect-ratio: 698 / 607;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);

  /* ONLY subtle lift */
  transition: transform 0.4s ease;
}

.hero-image-wrap:hover {
  transform: translateY(-6px);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 🔥 ANIMATIONS */
@keyframes heroFloat {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px,20px) scale(1.05); }
  100% { transform: translate(30px,-20px) scale(1.08); }
}

@keyframes heroSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 42px;
  }
}

.hero-left h1 {
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 25px;

  /* 🔥 GRADIENT TEXT */
  background: linear-gradient(180deg, #eaf2ff 0%, #8fb3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* fallback for safety */
  color: #dbe7ff;
}

.hero-tag {
  display: inline-block;

  background: rgba(255,122,48,0.12);
  color: #ff7a30;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 12px;
  letter-spacing: 1.5px;

  margin-bottom: 25px;

  /* 🔥 MAKE IT POP */
  border: 1px solid rgba(255,122,48,0.3);
  backdrop-filter: blur(6px);

  /* FIX visibility issue */
  position: relative;
  z-index: 5;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 3;
}

.hero-left h1 {
  text-shadow: 0 0 40px rgba(120,160,255,0.12);
}

/* stats  */

.stats-bar {
  background: #0b2742;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;

  border-bottom: 2px solid #ffffff;
}

/* ITEM */
.stat-item {
  text-align: center;
  min-width: 200px;
  transition: 0.3s ease;
}

/* NUMBER */
.stat-item h2 {
  font-size: 56px;
  font-weight: 700;
  color: #a9c2ff;
  margin-bottom: 10px;
  letter-spacing: 1px;

  transition: 0.3s ease;
}

/* LABEL */
.stat-item p {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8fa3c3;
}

/* DIVIDER */
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* 🔥 HIGHLIGHT (middle one) */
.stat-item.highlight h2 {
  color: #ff7a2f;
}

/* ✨ HOVER EFFECT (clean, not flashy) */
.stat-item:hover h2 {
  transform: translateY(-4px);
  color: #ffffff;
}

.stat-item.highlight:hover h2 {
  color: #ff7a2f;
  text-shadow: 0 0 12px rgba(255,122,47,0.4);
}

/* subtle glow */
.stat-item:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-bar {
    flex-direction: column;
    gap: 40px;
  }

  .stat-divider {
    display: none;
  }
}

/* card style  */

.rpa-section {
  padding: 120px 20px;
  background: #f3f5f7;
}

.rpa-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER */
.rpa-head {
  margin-bottom: 60px;
}

.rpa-head h2 {
  font-size: 44px;
  color: #0b1220;
  margin-bottom: 10px;
}

.rpa-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #ff7a2f;
  border-radius: 4px;
}

/* GRID */
.rpa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.rpa-card {
  background: #2b3f5c;
  padding: 36px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
}

/* ICON */
.rpa-card .icon {
  font-size: 22px;
  color: #9fb7d8;
  margin-bottom: 20px;
  transition: 0.3s;
}

/* TITLE */
.rpa-card h3 {
  color: #e6edf7;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.rpa-card p {
  color: #9fb0c6;
  font-size: 15px;
  line-height: 1.6;
}

/* 🔥 HOVER EFFECT (clean premium) */
.rpa-card:hover {
  transform: translateY(-8px);
  background: #314a6a;
}

/* glow overlay */
.rpa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--x,50%) var(--y,50%),
    rgba(255,255,255,0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.rpa-card:hover::before {
  opacity: 1;
}

/* border shine */
.rpa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.3s;
}

.rpa-card:hover::after {
  opacity: 1;
}

/* icon highlight */
.rpa-card:hover .icon {
  color: #ff7a2f;
  transform: scale(1.1);
}

/* responsive */
@media (max-width: 1000px) {
  .rpa-grid {
    grid-template-columns: 1fr;
  }
}

.rpa-card {
  background: #2b3f5c;
  padding: 36px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.38s cubic-bezier(.2,.8,.2,1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* stronger premium mouse-follow glow */
.rpa-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      220px circle at var(--x, 50%) var(--y, 50%),
      rgba(102, 163, 255, 0.22),
      transparent 42%
    ),
    radial-gradient(
      140px circle at calc(var(--x, 50%) + 30px) calc(var(--y, 50%) - 10px),
      rgba(255, 122, 47, 0.12),
      transparent 38%
    );
  opacity: 0;
  transition: opacity 0.28s ease;
}

/* edge shine */
.rpa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.02) 30%,
    rgba(106,163,255,0.18) 60%,
    rgba(255,122,47,0.14) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rpa-card:hover {
  transform: translateY(-10px);
  background: #314a6a;
  box-shadow:
    0 18px 40px rgba(16, 32, 58, 0.18),
    0 10px 24px rgba(16, 32, 58, 0.14);
}

.rpa-card:hover::before,
.rpa-card:hover::after {
  opacity: 1;
}

/* keep content above glow */
.rpa-card > * {
  position: relative;
  z-index: 1;
}

.rpa-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
  color: #a9c2ff;
  background: rgba(10, 36, 72, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  transition:
    transform 0.38s cubic-bezier(.2,.8,.2,1),
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

/* pulse ring */
.rpa-card .icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid rgba(255,122,47,0.0);
  transform: scale(0.92);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    border-color 0.35s ease;
}

.rpa-card:hover .icon {
  color: #ff7a2f;
  background: rgba(255,122,47,0.10);
  transform: translateY(-4px) scale(1.08) rotate(-6deg);
  box-shadow:
    0 10px 22px rgba(255,122,47,0.18),
    0 0 0 1px rgba(255,122,47,0.18) inset;
}

.rpa-card:hover .icon::after {
  opacity: 1;
  transform: scale(1.06);
  border-color: rgba(255,122,47,0.28);
}

/* card  */

.rpa-services {
  background: #04162d;
  padding: 28px 0 135px;
  font-family: Inter, sans-serif;
}

.rpa-services__container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.rpa-services__head {
  text-align: center;
  margin-bottom: 42px;
}

.rpa-services__head h2 {
  margin: 0;
  color: #d8e5ff;
  font-size: 35px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rpa-services__head p {
  max-width: 630px;
  margin: 16px auto 0;
  color: #c0cbdd;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

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

.rpa-service-card {
  background: #10284a;
  border: 1px solid rgba(126, 158, 214, 0.16);
  border-radius: 14px;
  padding: 28px 27px 22px;
  box-sizing: border-box;
}

.rpa-service-card__image {
  width: 100%;
  aspect-ratio: 1 / 0.93;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #0a1931;
}

.rpa-service-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rpa-service-card__body h3 {
  margin: 0 0 12px;
  color: #dbe8ff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rpa-service-card__body p {
  margin: 0;
  color: #c0cbdd;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .rpa-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .rpa-services {
    padding: 56px 0 80px;
  }

  .rpa-services__container {
    width: min(100% - 28px, 560px);
  }

  .rpa-services__head {
    margin-bottom: 28px;
  }

  .rpa-services__head h2 {
    font-size: 28px;
  }

  .rpa-services__head p {
    font-size: 14px;
    max-width: 100%;
  }

  .rpa-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rpa-service-card {
    padding: 18px 18px 16px;
    border-radius: 12px;
  }

  .rpa-service-card__image {
    margin-bottom: 16px;
  }

  .rpa-service-card__body h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .rpa-service-card__body p {
    font-size: 14px;
  }
}

.rpa-service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  transition:
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.4s ease,
    background 0.3s ease;

  animation: cardFloat 6s ease-in-out infinite alternate;
}

/* subtle idle breathing */
@keyframes cardFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-4px); }
}

.rpa-service-card::before {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;

  background:
    radial-gradient(
      250px circle at var(--x,50%) var(--y,50%),
      rgba(120,170,255,0.22),
      transparent 45%
    ),
    radial-gradient(
      180px circle at calc(var(--x,50%) + 40px) calc(var(--y,50%) - 20px),
      rgba(255,122,47,0.16),
      transparent 45%
    );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.rpa-service-card:hover::before {
  opacity: 1;
}


.rpa-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent,
    rgba(120,170,255,0.25),
    transparent
  );

  background-size: 200% 200%;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: borderMove 6s linear infinite;

  opacity: 0.4;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.rpa-service-card__image img {
  transition:
    transform 0.7s cubic-bezier(.2,.8,.2,1),
    filter 0.4s ease;
}

/* zoom + clarity */
.rpa-service-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.05);
}

/* light sweep */
.rpa-service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.15),
    transparent 70%
  );

  transform: translateX(-100%);
  transition: 0.6s;
}

.rpa-service-card:hover .rpa-service-card__image::after {
  transform: translateX(120%);
}

.rpa-service-card h3 {
  transition: all 0.3s ease;
}

.rpa-service-card:hover h3 {
  color: #ffffff;
  transform: translateY(-2px);
}

.rpa-service-card p {
  transition: 0.3s ease;
}

.rpa-service-card:hover p {
  color: #d4e2ff;
}

.rpa-service-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.4),
    0 10px 25px rgba(0,0,0,0.25);
}

/* arch  */

.arch-section {
  padding: 120px 20px;
  background: #f3f5f7;
}

.arch-wrap {
  max-width: 1280px;
  margin: auto;

  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= IMAGE ================= */
.arch-img {
  width: 100%;
  aspect-ratio: 700 / 520;
  border-radius: 20px;
  overflow: hidden;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

  /* 🔥 subtle floating animation (always active) */
  animation: imgFloat 6s ease-in-out infinite alternate;
}

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

/* NO hover on image */

/* ================= TEXT ================= */
.arch-right h2 {
  font-size: 46px;
  color: #0b1220;
  margin-bottom: 20px;
  font-weight: 700;
}

.arch-desc {
  color: #6b7a90;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

/* ================= LIST ================= */
.arch-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.arch-list li {
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 16px;
  color: #0b1220;

  position: relative;
  transition: all 0.3s ease;
}

/* icon */
.arch-list .icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;

  background: rgba(255,122,47,0.12);
  color: #ff7a2f;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;

  transition: all 0.3s ease;
}

/* ================= STATIC MICRO ANIMATION ================= */

/* subtle text breathing */
.arch-list li {
  animation: textFloat 5s ease-in-out infinite alternate;
}

.arch-list li:nth-child(2) {
  animation-delay: 0.5s;
}

.arch-list li:nth-child(3) {
  animation-delay: 1s;
}

/* ================= HOVER ================= */

.arch-list li:hover {
  transform: translateX(8px);
  color: #000;
}

.arch-list li:hover .icon {
  background: #ff7a2f;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,122,47,0.4);
  transform: scale(1.15);
}

/* underline slide effect */
.arch-list li::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ff7a2f;
  transition: 0.3s;
}

.arch-list li:hover::after {
  width: 60%;
}

/* ================= ANIMATIONS ================= */

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

@keyframes textFloat {
  0% { transform: translateX(0px); }
  100% { transform: translateX(2px); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .arch-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .arch-right h2 {
    font-size: 34px;
  }
}

/* lifecycle  */



/* =========================
   DEPLOYMENT LIFECYCLE
========================= */

.lifecycle {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(73, 120, 255, 0.08), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 47, 0.08), transparent 24%),
    linear-gradient(180deg, #081b34 0%, #0b2742 100%);
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.lifecycle-panel {
  min-height: 100vh;
  padding: 88px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifecycle-head {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 34px;
  text-align: center;
}

.lifecycle-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #9bb6e4;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.lifecycle .title {
  margin: 0 0 12px;
  color: #dbe8ff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.lifecycle-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #93a9cc;
  font-size: 15px;
  line-height: 1.7;
}

.lifecycle-progress {
  position: relative;
  width: min(1040px, calc(100% - 96px));
  height: 4px;
  margin: 0 auto 34px;
}

.lifecycle-progress__line,
.lifecycle-progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  border-radius: 999px;
}

.lifecycle-progress__line {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.lifecycle-progress__fill {
  width: 0%;
  background: linear-gradient(90deg, #7ea7ff 0%, #ff7a2f 100%);
  box-shadow: 0 0 18px rgba(126, 167, 255, 0.26);
}

.lifecycle-viewport {
  width: 100%;
  overflow: hidden;
}

.lifecycle .track {
  display: flex;
  align-items: stretch;
  gap: 26px;
  padding: 14px 0;
  will-change: transform;
}

.lifecycle .card {
  position: relative;
  flex: 0 0 300px;
  min-width: 300px;
  min-height: 220px;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(28, 53, 83, 0.94), rgba(18, 40, 66, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-origin: center center;
  transition:
    transform 0.38s cubic-bezier(.2,.8,.2,1),
    opacity 0.34s ease,
    filter 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    background 0.34s ease;
  overflow: hidden;
}

.lifecycle .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(255,255,255,0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(126,167,255,0.08), transparent 26%);
  opacity: 0.9;
  pointer-events: none;
}

.lifecycle .card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(126,167,255,0), rgba(126,167,255,0.85), rgba(255,122,47,0.92));
  opacity: 0;
  transition: opacity 0.34s ease;
}

.lifecycle .card-step {
  display: inline-block;
  margin-bottom: 18px;
  color: #ff8a45;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 14px rgba(255, 122, 47, 0.12);
}

.lifecycle .card h4 {
  margin: 0 0 10px;
  color: #e6efff;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lifecycle .card p {
  margin: 0;
  color: #9eb3d2;
  font-size: 14px;
  line-height: 1.7;
}

.lifecycle .card.is-before,
.lifecycle .card.is-after {
  opacity: 0.48;
  filter: blur(1.2px);
  transform: scale(0.9) translateY(14px);
}

.lifecycle .card.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateY(0);
  border-color: rgba(126, 167, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(35, 63, 98, 0.98), rgba(21, 45, 72, 1));
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(126,167,255,0.1) inset,
    0 0 34px rgba(126,167,255,0.12);
}

.lifecycle .card.active::after {
  opacity: 1;
}

.lifecycle .card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
}

.lifecycle .card.active:hover {
  transform: translateY(-6px) scale(1.01);
}

@media (max-width: 991px) {
  .lifecycle-panel {
    padding: 72px 0 60px;
  }

  .lifecycle-progress {
    width: calc(100% - 40px);
    margin-bottom: 24px;
  }

  .lifecycle .track {
    gap: 18px;
    padding: 10px 20px;
  }

  .lifecycle .card {
    flex-basis: 260px;
    min-width: 260px;
    min-height: 200px;
    border-radius: 20px;
    padding: 22px 20px 20px;
  }

  .lifecycle .card h4 {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .lifecycle-panel {
    min-height: auto;
    padding: 64px 0;
  }

  .lifecycle-head {
    width: calc(100% - 28px);
    margin-bottom: 24px;
  }

  .lifecycle-progress {
    display: none;
  }

  .lifecycle-viewport {
    overflow: visible;
  }

  .lifecycle .track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 14px;
    transform: none !important;
  }

  .lifecycle .card,
  .lifecycle .card.is-before,
  .lifecycle .card.is-after,
  .lifecycle .card.active {
    min-width: 100%;
    flex-basis: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* ✅ PERFECT CENTERING (first & last card) */
.lifecycle .track::before,
.lifecycle .track::after {
  content: "";
  flex: 0 0 calc(50vw - 150px);
}

/* industries  */

/* SECTION */
.industries {
  background: #f3f5f7;
  padding: 80px 0;
}

.industries-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0d1b2a;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.industry-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #2c3f5e, #24344f);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;

  /* subtle floating */
  animation: floatCard 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* ICON + TEXT */
.industry-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.industry-icon {
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
}

/* TEXT */
.industry-card h3 {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.industry-card p {
  color: #b0c4de;
  font-size: 13px;
}

/* IMAGE */
.industry-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* 🔥 IMAGE OVERLAY */
.industry-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* 🔥 HOVER EFFECT */
.industry-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* IMAGE ZOOM */
.industry-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY ON HOVER */
.industry-card:hover .industry-img::after {
  opacity: 1;
}

/* ✨ BORDER GLOW */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #4facfe, transparent);
  opacity: 0;
  transition: 0.4s;
}

.industry-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}





.industry-icon {
  position: relative;

  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.4s cubic-bezier(.2,.8,.2,1),
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

/* 🔥 ICON HOVER */
.industry-card:hover .industry-icon {
  background: #ff7a2f;
  color: #fff;

  transform: translateY(-4px) scale(1.15) rotate(-6deg);

  box-shadow:
    0 12px 28px rgba(255,122,47,0.45),
    0 0 0 1px rgba(255,122,47,0.2) inset;
}



.industry-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  border: 1px solid rgba(255,122,47,0);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.35s ease;
}

.industry-card:hover .industry-icon::after {
  opacity: 1;
  transform: scale(1.15);
  border-color: rgba(255,122,47,0.4);
}

/* ===== FAQ SECTION ===== */

.faq-section {
  padding: 100px 20px;
  background: #061a2f;
  text-align: center;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #c9d6ea;
  margin-bottom: 50px;
}

/* ===== LIST ===== */

.faq-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== ITEM ===== */

.faq-item {
  background: #10273f;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;

  position: relative;
}

/* glow effect */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,122,47,0.15), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.faq-item:hover::before {
  opacity: 1;
}

/* ===== QUESTION ===== */

.faq-question {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c9d6ea;
  font-weight: 500;
  font-size: 18px;
}

.faq-question i {
  transition: all 0.4s ease;
  opacity: 0.8;
}

/* ===== ANSWER ===== */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: #9fb3c8;
  text-align: left;

  transition: 
    max-height 0.5s cubic-bezier(.2,.8,.2,1),
    padding 0.3s ease,
    opacity 0.3s ease;

  opacity: 0;
}

/* ===== ACTIVE STATE ===== */

.faq-item.active {
  background: linear-gradient(180deg, #142f4d, #0f243c);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 26px 20px;
  opacity: 1;
}

/* icon animation */
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #ff7a2f;
}

/* ===== HOVER LIFT ===== */

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ===== NEXT LEVEL FAQ ===== */

.faq-item {
  position: relative;
  background: #10273f;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* glow on hover */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,122,47,0.15), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.faq-item:hover::before {
  opacity: 1;
}

/* hover lift */
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== QUESTION ===== */

.faq-question {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c9d6ea;
  font-size: 18px;
}

/* ICON ANIMATION */
.faq-question i {
  transition: all 0.4s ease;
}

/* ===== ANSWER ===== */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: #9fb3c8;

  opacity: 0;
  transform: translateY(-10px);

  transition:
    max-height 0.5s cubic-bezier(.2,.8,.2,1),
    opacity 0.3s ease,
    transform 0.3s ease,
    padding 0.3s ease;
}

/* ===== ACTIVE ===== */

.faq-item.active {
  background: linear-gradient(180deg, #142f4d, #0f243c);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 26px 20px;

  opacity: 1;
  transform: translateY(0);
}

/* icon turns into X */
.faq-item.active .faq-question i {
  transform: rotate(45deg) scale(1.2);
  color: #ff7a2f;
}

.faq-section {
  padding: 100px 20px;
  background: #061a2f;
  text-align: center;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #dbe8ff;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  position: relative;
  background: linear-gradient(180deg, #112945, #0e2238);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,122,47,.12), transparent 32%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.faq-item:hover,
.faq-item.active {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  background: linear-gradient(180deg, #163354, #102844);
}

.faq-item:hover::before,
.faq-item.active::before {
  opacity: 1;
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #d9e6fb;
  font-size: 18px;
  font-weight: 600;
}

.faq-question i {
  flex: 0 0 auto;
  font-size: 22px;
  color: #d9e6fb;
  transition: transform .35s ease, color .35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  opacity: 0;
  color: #a9bddc;
  text-align: left;
  line-height: 1.7;
  transition:
    max-height .45s cubic-bezier(.2,.8,.2,1),
    opacity .28s ease,
    padding .28s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding: 0 28px 22px;
  opacity: 1;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #ff7a2f;
}

.rpa-cta {
  padding: 97px 0 94px;
  background: #efefef;
}

.rpa-cta__inner {
  position: relative;
width: min(1367px, calc(100% - clamp(24px, 6vw, 80px)));
  min-height: 552px;
  margin: 0 auto;
padding: clamp(40px, 6vw, 94px) clamp(20px, 6vw, 104px);
  border-radius: 41px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(83, 118, 201, 0.16), transparent 32%),
    radial-gradient(circle at 87% 78%, rgba(42, 70, 130, 0.18), transparent 26%),
    linear-gradient(90deg, #04142a 0%, #031024 47%, #031126 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 40px rgba(8, 19, 38, 0.08);
}

.rpa-cta__grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: rpaGridDrift 18s linear infinite;
  pointer-events: none;
}

.rpa-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}

.rpa-cta__glow--left {
  width: 420px;
  height: 420px;
  left: -80px;
  top: -90px;
  background: rgba(59, 92, 176, 0.18);
  animation: rpaGlowFloatLeft 9s ease-in-out infinite alternate;
}

.rpa-cta__glow--right {
  width: 360px;
  height: 360px;
  right: 120px;
  bottom: -80px;
  background: rgba(31, 58, 112, 0.22);
  animation: rpaGlowFloatRight 10s ease-in-out infinite alternate;
}

.rpa-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.rpa-cta__content h2 {
  margin: 0 0 28px;
  max-width: 720px;
  color: #dfe8ff;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.rpa-cta__content h2 span {
  display: block;
  margin-top: 2px;
  color: #ff7d32;
}

.rpa-cta__content p {
  max-width: 760px;
  margin: 0 0 49px;
  color: #b7c4da;
  font-size: 20px;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.rpa-cta__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
width: fit-content;
min-width: unset;
max-width: 100%;
  height: 76px;
  padding: 0 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff8739 0%, #ff7325 100%);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow:
    0 16px 28px rgba(255, 122, 47, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.rpa-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 36px rgba(255, 122, 47, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
  filter: saturate(1.05);
}

.rpa-cta__visual {
  position: absolute;
  right: 79px;
  top: 50%;
  width: 418px;
  height: 418px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  z-index: 1;
}

.rpa-cta__chip {
  position: relative;
  width: 354px;
  height: 354px;
  display: grid;
  place-items: center;
  opacity: 0.5;
  animation: rpaChipFloat 5.5s ease-in-out infinite;
}

.rpa-cta__chip::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 50%, rgba(124, 150, 200, 0.08), transparent 68%);
  animation: rpaPulse 4.2s ease-in-out infinite;
}

.rpa-cta__chip svg {
  width: 100%;
  height: 100%;
}

.rpa-cta__chip rect,
.rpa-cta__chip line {
  fill: none;
  stroke: #69799a;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes rpaGridDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-42px,-42px,0); }
}

@keyframes rpaGlowFloatLeft {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(30px,20px,0) scale(1.08); }
}

@keyframes rpaGlowFloatRight {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-28px,-18px,0) scale(1.1); }
}

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

@keyframes rpaPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.45; }
  50% { transform: scale(1.04); opacity: 0.8; }
}

@media (max-width: 1200px) {
  .rpa-cta__inner {
    width: min(1367px, calc(100% - 40px));
    padding: 80px 56px;
  }

  .rpa-cta__content {
    max-width: 620px;
  }

  .rpa-cta__content h2 {
    font-size: 54px;
  }

  .rpa-cta__visual {
    right: 24px;
    width: 320px;
    height: 320px;
  }

  .rpa-cta__chip {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 980px) {
  .rpa-cta__inner {
    min-height: auto;
    padding: 70px 32px 56px;
  }

  .rpa-cta__visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: 220px;
    margin-top: 32px;
  }

  .rpa-cta__content {
    max-width: 100%;
    text-align: center;
  }

  .rpa-cta__content h2 {
    max-width: none;
    font-size: 46px;
  }

  .rpa-cta__content p {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }

  .rpa-cta__btn {
    min-width: 330px;
  }
}

@media (max-width: 640px) {
  .rpa-cta {
    padding: 60px 0;
  }

  .rpa-cta__inner {
    width: calc(100% - 24px);
    padding: 48px 20px 42px;
    border-radius: 26px;
  }

  .rpa-cta__content h2 {
    font-size: 38px;
  }

  .rpa-cta__content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 32px;
  }

  .rpa-cta__btn {
    width: 100%;
    min-width: 0;
    height: 64px;
    font-size: 16px;
  }

  .rpa-cta__visual {
    height: 180px;
  }

  .rpa-cta__chip {
    width: 210px;
    height: 210px;
  }
}

.rpa-cta__content h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
}

.rpa-cta__content p {
  font-size: clamp(15px, 1.8vw, 20px);
}

.rpa-cta__btn {
  font-size: clamp(14px, 1.5vw, 18px);
}

@media (max-width: 640px) {
  .rpa-cta__btn {
    width: 100%;
  }
}

.rpa-cta__visual {
  right: clamp(16px, 5vw, 79px);
  width: clamp(220px, 35vw, 418px);
  height: clamp(220px, 35vw, 418px);
}


@media (max-width: 980px) {
  .rpa-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
  }

  .rpa-cta__content {
    max-width: 100%;
  }

  .rpa-cta__visual {
    position: relative;
    transform: none;
    right: auto;
    top: auto;
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .rpa-cta__glow {
    opacity: 0.4;
    filter: blur(60px);
  }

  .rpa-cta__glow--left {
    left: -120px;
    top: -120px;
  }

  .rpa-cta__glow--right {
    right: -120px;
    bottom: -120px;
  }
}

.rpa-cta__chip {
  width: clamp(180px, 28vw, 354px);
  height: clamp(180px, 28vw, 354px);
}

/* repsivess  */


/* =========================
   GLOBAL RESPONSIVE SYSTEM
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  overflow: hidden;
}

/* Fluid container */
.container,
.rpa-wrap,
.arch-wrap,
.hero-wrap {
  width: min(1400px, calc(100% - clamp(20px, 6vw, 80px)));
  margin-inline: auto;
}

/* Fluid spacing system */
:root {
  --space-lg: clamp(60px, 8vw, 120px);
  --space-md: clamp(40px, 6vw, 80px);
  --space-sm: clamp(24px, 4vw, 48px);
}

/* Section spacing */
section {
  padding-block: var(--space-lg);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.05;
}

.hero-left p {
  font-size: clamp(15px, 1.8vw, 20px);
}

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    order: 2;
  }
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-item h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.stat-divider {
  display: none;
}

@media (min-width: 768px) {
  .stat-divider {
    display: block;
  }
}

.rpa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 30px);
}

.rpa-card {
  padding: clamp(20px, 3vw, 32px);
}

.rpa-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.rpa-service-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.arch-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.arch-right h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.arch-desc {
  font-size: clamp(15px, 1.6vw, 18px);
}

@media (max-width: 900px) {
  .arch-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.lifecycle-viewport {
  overflow: hidden;
}

.track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.card {
  min-width: clamp(240px, 30vw, 320px);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.industry-img img {
  height: 180px;
  object-fit: cover;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-question {
  font-size: clamp(16px, 2vw, 20px);
}

.faq-answer {
  font-size: clamp(14px, 1.6vw, 16px);
}

.rpa-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 80px);
  flex-wrap: wrap;
}

.rpa-cta__content {
  flex: 1 1 500px;
}

.rpa-cta__visual {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .rpa-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {

  section {
    padding-block: var(--space-md);
  }

  h1, h2, h3 {
    line-height: 1.2;
  }

  .btn-primary,
  .rpa-cta__btn {
    width: 100%;
  }

  .hero-left p,
  .arch-desc {
    line-height: 1.6;
  }

}

/* =========================
   HERO – NEXT LEVEL
========================= */

.hero-premium {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}

/* subtle gradient background */
.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(80,120,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,200,255,0.10), transparent 40%);
  z-index: 0;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

/* TEXT */
.hero-left h1 {
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #bcd3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #b7c4da;
  max-width: 520px;
}

/* BUTTON */
.btn-primary {
  margin-top: 32px;
  padding: 18px 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff8739, #ff6a1a);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255,120,40,0.25);
  transition: all .35s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(255,120,40,0.35);
}

/* IMAGE SIDE */
.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left p {
    margin-inline: auto;
  }
}



/* =========================
   RPA PAGE BUTTONS — SMALLER
========================= */

/* hero button */
.hero-actions .btn-primary{
  padding: 13px 24px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  min-height: 50px !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(255,122,47,0.22) !important;
}

.hero-actions .btn-primary:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px rgba(255,122,47,0.28) !important;
}

/* CTA button */
.rpa-cta__btn{
  width: fit-content !important;
  min-width: unset !important;
  max-width: 100% !important;
  height: 58px !important;
  padding: 0 24px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow:
    0 12px 24px rgba(255,122,47,.18),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
}

.rpa-cta__btn:hover{
  transform: translateY(-2px) !important;
  box-shadow:
    0 16px 28px rgba(255,122,47,.24),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* mobile */
@media (max-width: 640px){
  .hero-actions .btn-primary{
    width: auto !important;
    min-height: 46px !important;
    padding: 12px 18px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
  }

  .rpa-cta__btn{
    width: 100% !important;
    height: 54px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
  }
}