:root {
  --jrpa-bg: #05070c;
  --jrpa-surface: #0b1220;
  --jrpa-surface-soft: #101827;
  --jrpa-border: rgba(255, 255, 255, .10);
  --jrpa-border-strong: rgba(255, 154, 0, .28);
  --jrpa-text: rgba(255, 255, 255, .92);
  --jrpa-muted: rgba(255, 255, 255, .70);
  --jrpa-cta: #ffcc3a;
  --jrpa-cta-hover: #ffd761;
  --jrpa-orange: #ff9a00;
  --jrpa-green: #77e6a6;
  --streak-1: rgba(170, 70, 255, .85);
  --streak-2: rgba(70, 170, 255, .85);
  --streak-3: rgba(60, 255, 170, .80);
  --streak-4: rgba(255, 210, 80, .70);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  background: var(--jrpa-bg);
  color: var(--jrpa-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.jrpa-navbar {
  background: rgba(5, 7, 12, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.jrpa-navbar.is-scrolled {
  background: rgba(5, 7, 12, .96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}

.jrpa-brand {
  display: flex;
  align-items: center;
}

.jrpa-brand img, #footer-logo {
  width: auto;
  border-radius: 0;
}

.navbar-brand img {
  height: 48px;
}

.nav-link {
  color: rgba(255, 255, 255, .78) !important;
  font-weight: 600;
  font-size: .94rem;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  color: #fff !important;
}

.btn-warning {
  --bs-btn-bg: var(--jrpa-cta);
  --bs-btn-border-color: var(--jrpa-cta);
  --bs-btn-hover-bg: var(--jrpa-cta-hover);
  --bs-btn-hover-border-color: var(--jrpa-cta-hover);
  --bs-btn-color: #111;
  --bs-btn-hover-color: #111;
}

.btn-outline-warning {
  --bs-btn-color: var(--jrpa-cta);
  --bs-btn-border-color: rgba(255, 204, 58, .72);
  --bs-btn-hover-bg: var(--jrpa-cta);
  --bs-btn-hover-border-color: var(--jrpa-cta);
  --bs-btn-hover-color: #111;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: radial-gradient(circle at 16% 24%, rgba(255, 154, 0, .08), transparent 28%), var(--jrpa-bg);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.streaks {
  position: absolute;
  inset: -20%;
  z-index: 1;
  filter: blur(10px);
  opacity: .78;
  transform: rotate(-8deg);
  pointer-events: none;
}

.streak {
  position: absolute;
  width: 1200px;
  height: 140px;
  border-radius: 999px;
  mix-blend-mode: screen;
  opacity: .76;
  animation: streakMove 11s linear infinite;
}

.streak.s1 {
  top: 30%;
  left: 35%;
  background: linear-gradient(90deg, transparent, var(--streak-1), var(--streak-2), var(--streak-3), transparent);
}

.streak.s2 {
  top: 40%;
  left: 45%;
  height: 110px;
  opacity: .62;
  background: linear-gradient(90deg, transparent, var(--streak-2), var(--streak-3), var(--streak-4), transparent);
  animation-duration: 13s;
  animation-direction: reverse;
}

.streak.s3 {
  top: 56%;
  left: 34%;
  height: 90px;
  opacity: .5;
  background: linear-gradient(90deg, transparent, var(--streak-1), var(--streak-4), transparent);
  animation-duration: 15s;
}

@keyframes streakMove {
  0%, 100% {
    transform: translateX(-35%) translateY(0);
  }
  50% {
    transform: translateX(10%) translateY(1.5%);
  }
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .06;
  mask-image: radial-gradient(ellipse at 30% 25%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, .2) 72%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 78px 0 88px;
}

.kicker, .jrpa-kicker {
  color: var(--jrpa-cta);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .86rem;
  margin-bottom: 12px;
}

.jrpa-kicker-dark {
  color: #4d3500;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.45rem, 4.6vw, 4.35rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.hero p {
  max-width: 650px;
  color: var(--jrpa-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.jrpa-proof-card {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  background: rgba(7, 12, 21, .58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.jrpa-proof-card strong {
  color: var(--jrpa-cta);
  font-size: 1rem;
  margin-bottom: 6px;
}

.jrpa-proof-card span {
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
  line-height: 1.4;
}

.icon-cloud {
  position: relative;
  height: 510px;
}

.app-icon {
  position: absolute;
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: float 5.8s ease-in-out infinite;
}

.app-icon::before {
  position: absolute;
  inset: -40%;
  content: "";
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .25), transparent 55%);
  opacity: .55;
}

.app-icon img {
  position: relative;
  z-index: 1;
  width: 68%;
  height: 68%;
  border-radius: 12px;
  object-fit: contain;
}

.i-sap {
  top: 42%;
  left: 18%;
  animation-duration: 6.3s;
}

.i-excel {
  top: 58%;
  left: 42%;
  width: 104px;
  height: 104px;
  animation-duration: 5.4s;
}

.i-pdf {
  top: 22%;
  left: 55%;
  width: 112px;
  height: 112px;
  animation-duration: 6.8s;
}

.i-mail {
  top: 40%;
  left: 62%;
  width: 78px;
  height: 78px;
  animation-duration: 5.9s;
}

.i-web {
  top: 68%;
  left: 70%;
  width: 86px;
  height: 86px;
  animation-duration: 6.1s;
}

.i-db {
  top: 30%;
  left: 38%;
  width: 74px;
  height: 74px;
  animation-duration: 5.2s;
}

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

.spark {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, .55);
  font-size: 23px;
  pointer-events: none;
  animation: sparkle 4.5s ease-in-out infinite;
}

.spark svg {
  width: 1.35em;
  height: 1.35em;
}

@keyframes sparkle {
  0%, 100% {
    transform: translateY(0);
    opacity: .4;
  }
  50% {
    transform: translateY(-10px);
    opacity: .9;
  }
}

.sp1 {
  top: 18%;
  left: 52%;
  animation-delay: .2s;
}

.sp5 {
  top: 44%;
  left: 82%;
  animation-delay: .9s;
}

.jrpa-section {
  position: relative;
  padding: 92px 0;
}

.jrpa-section-dark {
  background: radial-gradient(circle at 85% 14%, rgba(255, 154, 0, .06), transparent 25%), #05070c;
}

.jrpa-section-surface {
  background: radial-gradient(circle at 12% 80%, rgba(55, 130, 255, .07), transparent 26%), #09101a;
}

.jrpa-section-lead {
  max-width: 760px;
  color: var(--jrpa-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.jrpa-benefit-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--jrpa-border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15, 24, 39, .84), rgba(7, 12, 21, .84));
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.jrpa-benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--jrpa-border-strong);
}

.jrpa-benefit-number {
  flex: 0 0 auto;
  color: var(--jrpa-cta);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.jrpa-benefit-card h3 {
  margin-bottom: 10px;
}

.jrpa-benefit-card p {
  margin-bottom: 14px;
  color: var(--jrpa-muted);
  line-height: 1.6;
}

.jrpa-benefit-card small {
  display: block;
  color: rgba(119, 230, 166, .86);
  line-height: 1.5;
}

.jrpa-step-card {
  padding: 28px;
  border: 1px solid var(--jrpa-border);
  border-radius: 20px;
  background: rgba(5, 7, 12, .58);
}

.jrpa-step-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 17px;
  background: rgba(255, 204, 58, .10);
  color: var(--jrpa-cta);
  font-weight: 900;
}

.jrpa-step-card p {
  margin-bottom: 0;
  color: var(--jrpa-muted);
  line-height: 1.62;
}

.jrpa-feature-carousel {
  background: #07090f;
}

.jrpa-card-lite {
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
  transition: transform .25s ease, box-shadow .25s ease;
}

.jrpa-card-lite:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 72px rgba(0, 0, 0, .42);
}

.jrpa-feature-image {
  width: 100%;
  height: 170px;
  margin-bottom: 22px;
  border-radius: 16px;
  object-fit: contain;
  background: #f2f4f7;
}

.jrpa-card-title {
  color: #0b0f14;
  font-weight: 900;
  margin-bottom: 10px;
}

.jrpa-card-text {
  color: rgba(0, 0, 0, .70);
  line-height: 1.55;
  margin-bottom: 0;
}

.jrpa-carousel-btn {
  width: auto;
  opacity: 1;
}

.jrpa-carousel-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.carousel-control-prev {
  top: -72px;
  right: 62px;
  bottom: auto;
  left: auto;
}

.carousel-control-next {
  top: -72px;
  right: 10px;
  bottom: auto;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  display: none;
}

.jrpa-check-list {
  display: grid;
  gap: 12px;
}

.jrpa-check-list > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--jrpa-border);
  border-radius: 14px;
  background: rgba(5, 7, 12, .46);
  color: rgba(255, 255, 255, .82);
}

.jrpa-check-list span {
  color: var(--jrpa-green);
  font-weight: 900;
}

.jrpa-copilot-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 154, 0, .25);
  border-radius: 24px;
  background: #070c14;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.jrpa-copilot-header {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--jrpa-border);
  background: rgba(255, 255, 255, .025);
}

.jrpa-copilot-header small {
  grid-column: 2;
  color: var(--jrpa-muted);
}

.jrpa-status-dot {
  grid-row: 1 / 3;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--jrpa-green);
  box-shadow: 0 0 15px rgba(119, 230, 166, .75);
}

.jrpa-copilot-body {
  display: grid;
  gap: 16px;
  padding: 28px 20px;
}

.jrpa-message {
  max-width: 86%;
  padding: 16px 18px;
  border-radius: 18px;
  line-height: 1.58;
}

.jrpa-message-user {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: rgba(255, 204, 58, .13);
  color: rgba(255, 255, 255, .90);
}

.jrpa-message-ai {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, .08);
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, .05);
  color: var(--jrpa-muted);
}

.jrpa-copilot-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--jrpa-border);
  color: rgba(255, 255, 255, .55);
  font-size: .86rem;
}

.jrpa-portfolio-card {
  padding: 30px;
  border: 1px solid var(--jrpa-border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(13, 22, 36, .9), rgba(6, 11, 19, .9));
}

.jrpa-portfolio-card p {
  color: var(--jrpa-muted);
  line-height: 1.62;
}

.jrpa-project-output {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--jrpa-border);
  color: rgba(119, 230, 166, .86);
  font-size: .9rem;
  line-height: 1.5;
}

.jrpa-clients-section {
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 154, 0, .10), transparent 35%), linear-gradient(180deg, #000, #050505);
}

.jrpa-narrow-header {
  max-width: 800px;
}

.jrpa-logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 28px 0 4px;
}

.jrpa-logo-marquee::before, .jrpa-logo-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 160px;
  height: 100%;
  content: "";
  pointer-events: none;
}

.jrpa-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #000, transparent);
}

.jrpa-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #000, transparent);
}

.jrpa-logo-track {
  display: flex;
  width: max-content;
  gap: 32px;
  animation: jrpaMarqueeLogos 28s linear infinite;
}

.jrpa-logo-track:hover {
  animation-play-state: paused;
}

.jrpa-logo-item {
  display: flex;
  min-width: 180px;
  height: 95px;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  border: 1px solid rgba(255, 154, 0, .22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  box-shadow: 0 0 30px rgba(255, 154, 0, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.jrpa-logo-item img {
  max-width: 140px;
  max-height: 52px;
  border-radius: 0;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.35);
  opacity: .78;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.jrpa-logo-item:hover img {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
  transform: scale(1.06);
}

@keyframes jrpaMarqueeLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.jrpa-testimonials-section {
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(255, 154, 0, .11), transparent 28%), radial-gradient(circle at 80% 70%, rgba(0, 255, 128, .07), transparent 30%), #050505;
}

.jrpa-testimonial-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 154, 0, .22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(4, 14, 30, .95), rgba(1, 31, 0, .70));
  box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
  color: #fff;
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.jrpa-testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 154, 0, .72);
  box-shadow: 0 0 35px rgba(255, 154, 0, .17);
  color: #fff;
}

.jrpa-testimonial-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #111;
}

.jrpa-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .87;
  transition: opacity .35s ease, transform .35s ease;
}

.jrpa-testimonial-card:hover .jrpa-testimonial-image img {
  opacity: 1;
  transform: scale(1.04);
}

.jrpa-testimonial-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.jrpa-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a00, #ffd000);
  box-shadow: 0 0 28px rgba(255, 154, 0, .65);
  color: #000;
  font-size: 24px;
  transform: translate(-50%, -50%);
}

.jrpa-testimonial-content {
  padding: 24px;
}

.jrpa-testimonial-content p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .86);
  font-size: .96rem;
  line-height: 1.62;
}

.jrpa-testimonial-content span {
  color: var(--jrpa-orange);
  font-size: .9rem;
  font-weight: 700;
}

.jrpa-demo-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--jrpa-border);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(5, 7, 12, .96), rgba(13, 25, 42, .88));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.jrpa-video-placeholder {
  overflow: hidden;
  border: 1px solid rgba(255, 204, 58, .25);
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(255, 154, 0, .15), transparent 35%), #04070c;
  color: rgba(255, 255, 255, .75);
}

.jrpa-video-placeholder small {
  max-width: 340px;
  color: rgba(255, 255, 255, .55);
}

.jrpa-video-play {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border-radius: 50%;
  background: var(--jrpa-cta);
  color: #111;
  font-size: 1.35rem;
}

.jrpa-accordion {
  --bs-accordion-bg: rgba(10, 17, 29, .72);
  --bs-accordion-border-color: var(--jrpa-border);
  --bs-accordion-color: var(--jrpa-muted);
  --bs-accordion-btn-color: #fff;
  --bs-accordion-btn-bg: rgba(10, 17, 29, .72);
  --bs-accordion-active-color: #fff;
  --bs-accordion-active-bg: rgba(255, 204, 58, .07);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(255, 204, 58, .12);
}

.jrpa-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--jrpa-border);
  border-radius: 16px !important;
}

.jrpa-accordion .accordion-button {
  font-weight: 700;
}

.jrpa-accordion .accordion-body {
  color: var(--jrpa-muted);
  line-height: 1.65;
}

.jrpa-final-section {
  background: #05070c;
}

.jrpa-final-card {
  padding: clamp(30px, 5vw, 58px);
  border-radius: 28px;
  background: radial-gradient(circle at 82% 20%, rgba(255, 255, 255, .32), transparent 24%), linear-gradient(135deg, #ffb000, #ffda56);
  color: #17120a;
}

.jrpa-final-card .lead {
  color: rgba(23, 18, 10, .76);
}

.jrpa-footer {
  border-top: 1px solid var(--jrpa-border);
  background: #030509;
  color: var(--jrpa-muted);
}

.jrpa-footer a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.jrpa-footer a:hover {
  color: #fff;
}

.jrpa-footer hr {
  border-color: var(--jrpa-border);
}

@media (max-width: 991.98px) {
  .jrpa-navbar .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--jrpa-border);
    border-radius: 18px;
    background: rgba(5, 7, 12, .98);
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  .hero-content {
    padding: 64px 0 36px;
  }
}

@media (max-width: 991.98px) {
  .icon-cloud {
    max-width: 610px;
    height: 430px;
    margin: 0 auto;
  }
}

@media (max-width: 991.98px) {
  .jrpa-section {
    padding: 76px 0;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 72px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img {
    height: 42px;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }
}

@media (max-width: 767.98px) {
  .icon-cloud {
    height: 360px;
    transform: scale(.9);
    transform-origin: top center;
  }
}

@media (max-width: 767.98px) {
  .jrpa-section {
    padding: 64px 0;
  }
}

@media (max-width: 767.98px) {
  .jrpa-benefit-card {
    padding: 22px;
  }
}

@media (max-width: 767.98px) {
  .jrpa-logo-item {
    min-width: 145px;
    height: 82px;
    padding: 18px 22px;
  }
}

@media (max-width: 767.98px) {
  .jrpa-logo-item img {
    max-width: 115px;
    max-height: 42px;
  }
}

@media (max-width: 767.98px) {
  .jrpa-logo-track {
    gap: 22px;
    animation-duration: 22s;
  }
}

@media (max-width: 767.98px) {
  .jrpa-testimonial-image {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .carousel-control-prev, .carousel-control-next {
    top: -60px;
  }
}

@media (max-width: 575.98px) {
  .hero-content {
    padding-top: 54px;
  }
}

@media (max-width: 575.98px) {
  .icon-cloud {
    height: 330px;
    margin-top: -20px;
    transform: scale(.78);
  }
}

@media (max-width: 575.98px) {
  .jrpa-proof-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .jrpa-benefit-card {
    gap: 14px;
  }
}

@media (max-width: 575.98px) {
  .jrpa-benefit-number {
    font-size: 1.05rem;
  }
}

@media (max-width: 575.98px) {
  .jrpa-carousel-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .carousel-control-prev {
    right: 56px;
  }
}

@media (max-width: 575.98px) {
  .jrpa-message {
    max-width: 95%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  #particleCanvas {
    display: none;
  }
}

/* =========================================================
   CARROSSEL DE PROJETOS PARA PORTFÓLIO
========================================================= */

.jrpa-projects-section {
  overflow: hidden;
}

.jrpa-project-summary {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 204, 58, 0.18);
  border-radius: 16px;
  background: rgba(255, 204, 58, 0.05);
}

.jrpa-project-summary strong {
  color: #ffcc3a;
  font-size: 0.95rem;
}

.jrpa-project-summary span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  line-height: 1.5;
}

.jrpa-projects-carousel .carousel-inner {
  padding: 10px 3px 58px;
}

.jrpa-project-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.jrpa-project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 154, 0, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.jrpa-project-card h3 {
  margin-bottom: 12px;
  line-height: 1.35;
}

.jrpa-project-card > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.62;
}

.jrpa-project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
  margin-bottom: 20px;
}

.jrpa-project-tech span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 600;
}

.jrpa-project-card .jrpa-project-output {
  margin-top: auto;
}

.jrpa-projects-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.jrpa-projects-carousel .carousel-indicators button {
  width: 9px;
  height: 9px;
  margin: 0 5px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.38);
  opacity: 1;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
}

.jrpa-projects-carousel .carousel-indicators button.active {
  width: 28px;
  border-radius: 999px;
  background-color: #ffcc3a;
}

#jrpaPortfolioCarousel .carousel-control-prev, #jrpaPortfolioCarousel .carousel-control-next {
  top: -72px;
  bottom: auto;
}

#jrpaPortfolioCarousel .carousel-control-prev {
  right: 62px;
  left: auto;
}

#jrpaPortfolioCarousel .carousel-control-next {
  right: 10px;
}

@media (max-width: 991.98px) {
  .jrpa-project-summary {
    max-width: 480px;
  }
}

@media (max-width: 991.98px) {
  .jrpa-project-card {
    min-height: 370px;
  }
}

@media (max-width: 767.98px) {
  .jrpa-projects-carousel .carousel-inner {
    padding-bottom: 52px;
  }
}

@media (max-width: 767.98px) {
  .jrpa-project-card {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  #jrpaPortfolioCarousel .carousel-control-prev, #jrpaPortfolioCarousel .carousel-control-next {
    top: -62px;
  }
}

