/* ============================================
   PRODUCTS PAGE
   ============================================ */
.productos {
  width: 100%;
  padding: 146px 30px 77px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: #eee;
  background-image: linear-gradient(163.48deg, #eee 33.88%, #c8c8c8 100%);
  overflow: hidden;
  min-height: 100vh;
}
.productos h3 { margin-bottom: 14px; line-height: 1.2143; }
.productos__cards { margin: 0 auto; width: 602.5px; height: 191px; }
.productos__cards img { width: 100%; height: auto; }
.productos__info { padding-top: 39px; }
.productos__conditions { margin-top: 39px; }
.productos__conditions a { color: #9c9c9c; text-decoration: none; font-weight: normal; font-size: 14px; }
.productos__buttons { margin-top: 17px; display: flex; justify-content: center; gap: 20px; }
.productos__buttons .btn-primary { min-width: 130px; font-size: 15px; }
.productos__features { max-width: 350px; margin: 20px auto 0; display: flex; flex-wrap: wrap; justify-content: center; }
.productos__feature { width: 87.5px; margin: 10px 0; text-align: center; }
.productos__feature img { width: 50px; height: 50px; }
.productos__feature span { display: block; font-size: 10px; font-weight: 400; margin-top: 5px; line-height: 1.2; }

@media (max-width: 768px) {
  .productos__cards { width: 100%; height: auto; }
}
@media (min-width: 600px) {
  .productos { padding: 146px 60px 77px; }
  .productos__features { max-width: unset; }
}
@media (min-width: 1024px) {
  .productos { padding: 146px 180px 77px; }
}
@media (min-width: 1200px) {
  .productos { padding: 146px 259px 77px; }
  .productos h3 { font-weight: 800; font-size: 28px; }
  .productos__features { max-width: 762px; }
}

/* ============================================
   SERVICE PAGES
   ============================================ */
/* FullscreenVideo structure */
.service-top {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
  background-color: #fff;
}
.service-top__fixed-wrapper {
  z-index: 2;
  top: 0; left: 0; right: 0;
  height: 100%;
  position: absolute;
}
.service-top__video-wrapper {
  z-index: 2;
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  overflow: hidden;
  border-radius: 0;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.service-top__video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Mask overlay for scroll reveal */
.service-top__mask {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
/* Scroll content overlaid on video */
.service-top__scroll-content {
  position: relative;
  height: 100%;
  z-index: 4;
  background-color: transparent;
  color: #fff;
  opacity: 1;
  padding-top: 0;
}
.service-top__overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 0 8%;
}
.service-top__content {
  max-width: 600px;
}
.service-top__content h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.service-top__content p {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 10px;
}
.service-top__buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.service-top__icons {
  margin-top: 30px;
}
.service-top__icons-desc {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.service-top__icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.service-top__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}
.service-top__icon img { width: 40px; height: 40px; }
.service-top__icon span { color: #fff; font-size: 9px; font-weight: 300; text-align: center; margin-top: 5px; line-height: 1.2; }

/* Desktop: side-by-side layout (text left, icons right) */
@media (min-width: 768px) {
  .service-top__overlay {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  .service-top__content {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
  }
  .service-top__icons {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    margin-top: 0;
  }
  .service-top__icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    justify-items: center;
  }
  .service-top__icon {
    width: 140px;
  }
  .service-top__icon img { width: 75px; height: 75px; }
  .service-top__icon span { font-size: 13px; margin-top: 10px; }
  .service-top__scroll-arrow {
    flex: 0 0 100%;
  }
}

/* Scroll arrow for services */
.service-top__scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-top__scroll-arrow.visible { opacity: 1; }
.service-top__scroll-arrow svg { width: 30px; height: 30px; fill: #fff; }

/* Frame mode (desktop ≥768px) */
@media (min-width: 768px) {
  .service-top {
    min-height: 100vh;
    max-height: 100vh;
  }
  .service-top__fixed-wrapper {
    height: 100vh;
  }
  .service-top__scroll-content {
    height: 100vh;
  }
  /* Frame: video inset with border-radius, expands on scroll */
  .service-top--frame .service-top__video-wrapper {
    top: calc(55px + 54px);
    left: 65px;
    right: 65px;
    bottom: 65px;
    border-radius: 6px;
  }
  .service-top--frame .service-top__scroll-content {
    opacity: 0;
    padding-top: 60vh;
  }
}

@media (max-width: 767px) {
  .service-top {
    min-height: auto;
  }
  .service-top__fixed-wrapper {
    position: relative;
    height: auto;
  }
  .service-top__video-wrapper {
    position: relative;
    height: 60vh;
  }
  .service-top__scroll-content {
    padding: 20px 5%;
  }
  .service-top__overlay {
    min-height: auto;
    padding: 20px 5%;
  }
  .service-top__content h1 { font-size: 2rem; }
}

/* Spacer for ScrollTrigger pin */
.service-top__spacer {
  height: 0;
}

.service-bottom {
  padding: 60px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.service-bottom__content {
  flex: 1;
  min-width: 300px;
}
.service-bottom__content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.service-bottom__content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 10px;
}
.service-bottom__icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.service-bottom__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.service-bottom__icon img { width: 50px; height: 50px; flex-shrink: 0; }
.service-bottom__icon span { font-size: 15px; text-align: left; line-height: 1.3; }
.service-bottom__image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-bottom__image img {
  max-width: 100%;
  height: auto;
}

/* Device frames with slideshow */
.service-bottom__device {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.service-bottom__device--dual {
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.service-bottom__phone-frame,
.service-bottom__tablet-frame {
  position: relative;
  display: inline-block;
}
.service-bottom__phone-img {
  display: block;
  width: 280px;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.service-bottom__phone-frame--small .service-bottom__phone-img {
  width: 200px;
}
.service-bottom__tablet-img {
  display: block;
  width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.service-bottom__phone-screen,
.service-bottom__tablet-screen {
  position: absolute;
  z-index: 1;
  overflow: hidden;
}
.service-bottom__phone-screen {
  top: 12%;
  left: 6%;
  right: 6%;
  bottom: 12%;
  border-radius: 20px;
}
.service-bottom__phone-frame--small .service-bottom__phone-screen {
  top: 12%;
  left: 6%;
  right: 6%;
  bottom: 12%;
  border-radius: 14px;
}
.service-bottom__tablet-screen {
  top: 7%;
  left: 5.5%;
  right: 5.5%;
  bottom: 7%;
  border-radius: 8px;
}
.service-bottom__phone-screen img,
.service-bottom__tablet-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.service-bottom__phone-screen img.active,
.service-bottom__tablet-screen img.active {
  opacity: 1;
}
.btn-outline {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #d946a8;
  color: #d946a8;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
  margin-top: 10px;
}
.btn-outline:hover {
  background: #d946a8;
  color: #fff;
}

/* Brand carousel */
.service-bottom__brand-carousel {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 0;
  border-top: 1px solid #eee;
  margin-top: 20px;
  overflow: hidden;
}
.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}
.carousel-arrow svg {
  width: 30px;
  height: 30px;
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  flex: 1;
}
.carousel-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#serviceFintech .carousel-slide img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
#serviceMarcaBlanca .carousel-slide img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .service-bottom__phone-img { width: 200px; }
  .service-bottom__tablet-img { width: 280px; }
  .service-bottom__phone-frame--small .service-bottom__phone-img { width: 150px; }
  .service-bottom__device--dual { flex-direction: column; align-items: center; }
}

.service-bottom__carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.service-bottom__carousel img {
  width: 80px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .service-bottom { flex-direction: column; padding: 40px 5%; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contacto {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 30px 60px;
}
.contacto__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.3;
  overflow: hidden;
}
.contacto__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacto__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  width: 100%;
}
.contacto__data {
  flex: 1;
  min-width: 250px;
  color: #fff;
}
.contacto__data h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.contacto__data ul { list-style: none; padding: 0; }
.contacto__data li {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #ccc;
}
.contacto__data a { color: #ca0091; text-decoration: none; }
.contacto__form {
  flex: 1;
  min-width: 300px;
}
.contacto__field {
  margin-bottom: 20px;
}
.contacto__field label {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.contacto__field input,
.contacto__field textarea {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  color: #fff;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.contacto__field input:focus,
.contacto__field textarea:focus {
  border-bottom-color: #ca0091;
}
.contacto__field textarea { min-height: 80px; resize: vertical; }
.contacto__legal {
  margin-top: 15px;
}
.contacto__legal p {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
}
.contacto__legal a { color: #ca0091; }
.contacto__checkbox {
  margin-top: 10px;
}
.contacto__checkbox label {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.contacto__checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #ca0091;
}
.contacto__checkbox a { color: #ca0091; }
.contacto__submit {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contacto__content { flex-direction: column; }
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-page {
  padding: 120px 8% 60px;
  background-color: #f5f5f5;
  min-height: 100vh;
}
.faq-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.faq-nav__item {
  background: none;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s;
}
.faq-nav__item.active,
.faq-nav__item:hover {
  background: #ca0091;
  color: #fff;
  border-color: #ca0091;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.faq-item__question {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  color: #ca0091;
  transition: transform 0.3s;
}
.faq-item.open .faq-item__question::after {
  content: '−';
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
}
.faq-item.open .faq-item__answer {
  max-height: 500px;
  padding-top: 15px;
}

/* ============================================
   HUB PAGE
   ============================================ */
.hub-page {
  width: 100%;
  min-height: 100vh;
}
.hub-top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hub-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hub-top__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 8%;
  text-align: center;
}
.hub-top__overlay h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.hub-top__overlay p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 700px;
  line-height: 1.6;
}
.hub-section {
  padding: 80px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.hub-section:nth-child(odd) {
  background: #f5f5f5;
}
.hub-section__content {
  flex: 1;
  min-width: 300px;
}
.hub-section__content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.hub-section__content h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.4;
}
.hub-section__content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 10px;
}
.hub-section__image {
  flex: 1;
  min-width: 300px;
}
.hub-section__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.hub-section__image video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .hub-section { flex-direction: column; padding: 40px 5%; }
  .hub-top__overlay h1 { font-size: 2rem; }
}

/* ============================================
   PECUNPAY (ABOUT US) PAGE
   ============================================ */
.pecunpay-page {
  width: 100%;
  height: 100vh;
  margin: 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  padding-top: 72.7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b3b3b3;
  overflow: hidden;
}
/* Override main's white bg when pecunpay-page is present */
main:has(.pecunpay-page) {
  background-color: transparent;
}
.pecunpay-page__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  object-fit: cover;
  z-index: 0;
}

/* ---------- Desktop: Horizontal scroll ---------- */
.pecunpay-scroll {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pecunpay-scroll__slides {
  height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: flex-start;
  overflow-x: hidden;
  flex-shrink: 0;
}
.pecunpay-scroll__slide {
  padding: 50px;
  position: unset;
  min-width: 100vw;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pecunpay-scroll__overlay {
  margin-left: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* Radial progress circle */
.pecunpay-radial {
  display: flex;
  overflow: visible;
  width: 77.949vh;
  height: 77.949vh;
  background: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 4;
}
.pecunpay-radial svg {
  height: 100%;
  width: 100%;
  transform: rotate(90deg);
  overflow: visible;
}
.pecunpay-radial__bg {
  fill: none;
  stroke: #ccc;
  stroke-width: 0.2;
}
.pecunpay-radial__progress {
  fill: none;
  stroke: #ca0091;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  stroke-linecap: round;
  stroke-width: 0.3;
}

/* Section title (heading near circle edge, positioned by JS) */
.pecunpay-section-title {
  position: absolute;
  z-index: 6;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
@media (min-width: 1600px) {
  .pecunpay-section-title { font-size: 2rem; }
}
.pecunpay-section-title.visible {
  opacity: 1;
}
.pecunpay-content {
  position: relative;
  width: calc(77.949vh - 9px);
  height: calc(77.949vh - 9px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  z-index: 5;
  color: #fff;
  text-align: center;
}
.pecunpay-content__inner {
  width: 30.5vw;
  overflow: hidden;
}
.pecunpay-content__inner p {
  line-height: 1.3;
  padding: 20px 0;
  font-weight: 300;
  font-size: 1rem;
}
.pecunpay-content__inner a {
  color: #ca0091;
  text-decoration: none;
}

/* Content appear/exit animation */
.pecunpay-content__inner.appear {
  opacity: 0;
  animation: pecunpayContentAppear 1000ms ease-out forwards;
  animation-delay: 400ms;
}
.pecunpay-content__inner.exit {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.pecunpay-content__inner.exit-active {
  opacity: 0;
}
@keyframes pecunpayContentAppear {
  0% { opacity: 0; transform: translate3d(0, 10vh, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Down arrow (More) */
.pecunpay-more {
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5.6vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

/* Line paginator (desktop right side) */
.pecunpay-paginator {
  position: fixed;
  right: 38px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: pecunpayPaginatorAppear 0.7s ease-in forwards;
  animation-delay: 1s;
}
@keyframes pecunpayPaginatorAppear {
  0% { opacity: 0; right: 0; }
  100% { opacity: 1; right: 38px; }
}
.pecunpay-paginator__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  position: relative;
}
.pecunpay-paginator__item.active,
.pecunpay-paginator__item:hover {
  opacity: 1;
}
.pecunpay-paginator__line {
  background-color: currentColor;
  height: 2px;
  width: 20px;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  transition: width 0.2s ease;
}
.pecunpay-paginator__item.active .pecunpay-paginator__line,
.pecunpay-paginator__item:hover .pecunpay-paginator__line {
  width: 35px;
}
.pecunpay-paginator__label {
  position: absolute;
  right: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
  margin-right: 10px;
}
.pecunpay-paginator__item.active .pecunpay-paginator__label,
.pecunpay-paginator__item:hover .pecunpay-paginator__label {
  width: auto;
  opacity: 1;
}

/* ---------- Mobile: Carousel ---------- */
.pecunpay-carousel {
  position: relative;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.pecunpay-carousel__header {
  position: relative;
  width: 100%;
  height: 60px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pecunpay-carousel__title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.15s ease-out;
}
.pecunpay-carousel__track {
  display: flex;
  flex: 1;
  transition: transform 0.6s ease-in-out;
  touch-action: pan-y;
  cursor: grab;
}
.pecunpay-carousel__slide {
  min-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
}
.pecunpay-carousel__text {
  color: #fff;
  text-align: center;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.3;
}
.pecunpay-carousel__text p {
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1023px) {
  .pecunpay-page { height: auto; min-height: 100vh; overflow: visible; padding-top: 72.7px; }
}
@media (min-width: 1024px) {
  .pecunpay-page { height: 100vh; overflow: hidden; }
}

/* ============================================
   CAREER PAGE
   ============================================ */
.career-page {
  padding: 120px 8% 60px;
  min-height: 100vh;
  background: #f5f5f5;
}
.career-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.career-page > p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 40px;
}
.career-offer {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.career-offer__dept {
  font-size: 12px;
  color: #ca0091;
  font-weight: 500;
  margin-bottom: 5px;
}
.career-offer__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.career-offer__details {
  display: none;
}
.career-offer.open .career-offer__details {
  display: block;
}
.career-offer__detail {
  margin-bottom: 15px;
}
.career-offer__detail-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.career-offer__detail-value {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.career-offer__toggle {
  background: none;
  border: none;
  color: #ca0091;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Libre Franklin', sans-serif;
  padding: 0;
}
.career-cv {
  margin-top: 40px;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.career-cv p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
}
.career-cv__form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.career-cv__field {
  flex: 1;
  min-width: 200px;
}
.career-cv__field label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.career-cv__field input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-page {
  padding: 120px 8% 60px;
  min-height: 100vh;
}
.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.legal-page > .legal-page__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.legal-nav a {
  color: #ca0091;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 5px 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: background 0.3s;
}
.legal-nav a:hover {
  background: #f5f5f5;
}
.legal-chapter {
  margin-bottom: 30px;
  scroll-margin-top: 100px;
}
.legal-chapter h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.legal-chapter p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ============================================
   API PAGE
   ============================================ */
.api-page {
  padding: 120px 8% 60px;
  min-height: 100vh;
  background: #f9f9f9;
}
.api-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}
.api-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.api-nav__item {
  background: none;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s;
}
.api-nav__item.active,
.api-nav__item:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}
.api-section {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.api-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.api-method {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.api-method__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.api-method__type {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.api-method__type--get { background: #61affe; }
.api-method__type--post { background: #49cc90; }
.api-method__type--put { background: #fca130; }
.api-method__type--delete { background: #f93e3e; }
.api-method__path {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  color: #333;
}
.api-method__desc {
  font-size: 13px;
  font-weight: 300;
  color: #555;
}

/* ============================================
   PAY PAGES (APPLE/GOOGLE PAY)
   ============================================ */
.pay-page {
  padding: 120px 8% 60px;
  min-height: 100vh;
}
.pay-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}
.pay-page__content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.pay-page__text {
  flex: 1;
  min-width: 300px;
}
.pay-page__text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 15px;
}
.pay-page__text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 30px;
}
.pay-page__text ol,
.pay-page__text ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.pay-page__text li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 5px;
}
.pay-page__image {
  flex: 0 0 300px;
}
.pay-page__image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .pay-page__content { flex-direction: column; }
  .pay-page__image { flex: 0 0 auto; }
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 120px 30px;
  text-align: center;
}
.page-404 h1 {
  font-size: 6rem;
  font-weight: 800;
  color: #ca0091;
  margin-bottom: 20px;
}
.page-404 p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 30px;
}

/* ============================================
   SHARED BUTTON
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: #ca0091;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Libre Franklin', sans-serif;
  text-decoration: none;
  transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Libre Franklin', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover { background: #fff; color: #000; }

/* Paginator for Hub/Pecunpay/FAQ */
.page-paginator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-paginator__item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Libre Franklin', sans-serif;
}
.page-paginator__line {
  width: 2px;
  height: 30px;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.page-paginator__item.active .page-paginator__line {
  background: #ca0091;
}
.page-paginator__name {
  font-size: 10px;
  font-weight: 400;
  color: #888;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.page-paginator__item:hover .page-paginator__name,
.page-paginator__item.active .page-paginator__name {
  opacity: 1;
}
.page-paginator--white .page-paginator__line {
  background: rgba(255,255,255,0.3);
}
.page-paginator--white .page-paginator__item.active .page-paginator__line {
  background: #fff;
}
.page-paginator--white .page-paginator__name {
  color: #fff;
}

@media (max-width: 1024px) {
  .page-paginator { display: none; }
}
