@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Piazzolla:ital,opsz,wght@0,8..30,100..900;1,8..30,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
header.header {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  font-family: "Ubuntu";
  padding-top: 1rem;
  border-top: 0.5rem solid #6F18B7;
  background-color: transparent;
  color: #eaf6ff;
  transition: background-color .35s ease, box-shadow .35s ease, color .35s ease;
}
header.header.header--solid {
  position: fixed;
  background-color: #0f0a1e;
  color: #eaf6ff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
header.header.header--solid .logo img {
  max-width: 180px;
}
header.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  header.header.show .navigation {
    transform: translateX(0);
    visibility: visible;
  }
}
@media (max-width: 992px) {
  header.header .logo {
    position: absolute;
    z-index: 10;
    left: 50px;
    top: 15px;
  }
}
header.header .logo img {
  max-width: 250px;
}
header.header .hamburger {
  display: none;
}
@media (max-width: 992px) {
  header.header .hamburger {
    display: block;
    position: absolute;
    font-size: 2rem;
    color: #6F18B7;
    right: 20px;
    top: 10px;
    padding: 0 .5rem;
    border: 1px solid rgba(255, 164, 0, 0.05);
    border-radius: .25rem;
    transition: all .3s ease;
  }
  header.header .hamburger:hover {
    color: rgba(111, 24, 183, 0.25);
    border-color: rgba(111, 24, 183, 0.35);
  }
  header.header .hamburger i {
    vertical-align: initial;
  }
}
@media (max-width: 992px) {
  header.header nav.navigation {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.75);
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform .5s ease, visibility .5s ease;
  }
}
header.header nav.navigation .nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 50%;
}
@media (max-width: 992px) {
  header.header nav.navigation .nav-links {
    display: block;
    max-width: 75%;
    width: 400px;
    height: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-left: 4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #6F18B7;
    color: #fff;
  }
}
header.header nav.navigation .nav-links .nav-item {
  margin-left: 1rem;
  list-style-type: none;
}
@media (max-width: 992px) {
  header.header nav.navigation .nav-links .nav-item {
    margin-bottom: 1rem;
  }
}
header.header nav.navigation .nav-links .nav-item .nav-link {
  padding: .35rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  color: inherit;
  line-height: 2;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  header.header nav.navigation .nav-links .nav-item .nav-link {
    padding: .5rem 1rem;
    color: #00dafd;
  }
}
header.header nav.navigation .nav-links .nav-item .nav-link:hover, header.header nav.navigation .nav-links .nav-item .nav-link:active, header.header nav.navigation .nav-links .nav-item .nav-link.active, header.header nav.navigation .nav-links .nav-item .nav-link.hover {
  color: #ffa400;
  border-bottom-color: #ffa400;
}
@media (max-width: 992px) {
  header.header nav.navigation .nav-links .nav-item .nav-link:hover, header.header nav.navigation .nav-links .nav-item .nav-link:active, header.header nav.navigation .nav-links .nav-item .nav-link.active, header.header nav.navigation .nav-links .nav-item .nav-link.hover {
    color: #eaf6ff;
    border-bottom-color: #eaf6ff;
  }
}
header.header nav.navigation .nav-links .nav-item.submenu {
  position: relative;
}
@media (min-width: 992px) {
  header.header nav.navigation .nav-links .nav-item.submenu:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
}
header.header nav.navigation .nav-links .nav-item.submenu .dropdown-menu {
  position: absolute;
  display: block;
  left: 0;
  top: 110%;
  min-width: 200px;
  padding: 0;
  text-align: left;
  background-color: #6F18B7;
  color: #eaf6ff;
  border: none;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in;
}
header.header nav.navigation .nav-links .nav-item.submenu a.nav-link {
  display: block;
  width: 100%;
  transition: color .25s ease-in;
}
header.header nav.navigation .nav-links .nav-item.submenu a.nav-link:hover, header.header nav.navigation .nav-links .nav-item.submenu a.nav-link:active, header.header nav.navigation .nav-links .nav-item.submenu a.nav-link.active, header.header nav.navigation .nav-links .nav-item.submenu a.nav-link.hover {
  color: #ffa400;
  border-bottom: transparent;
}

.banner {
  text-align: center;
  border-top: 0.5rem solid #6F18B7;
  background: #000;
  position: relative;
}
.banner.contact-banner {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 75%, rgba(255, 255, 255, 0.4)), url("../img/contact/contact2.jpg") center no-repeat;
  background-size: cover;
  min-height: 300px;
  padding-top: 9rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
}
.banner.contact-banner .banner-wrapper {
  margin-top: 0;
}
.banner.contact-banner .banner-wrapper .banner-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}
.banner.contact-banner .b-title {
  margin-bottom: 0;
  line-height: 1.3;
}
.banner .b-title {
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.banner .banner-wrapper {
  width: 70%;
  margin-top: -2.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1.5rem;
  font-family: "Ubuntu";
}
@media (max-width: 992px) {
  .banner .banner-wrapper {
    width: 90%;
  }
}
.banner .banner-wrapper .page-link a {
  padding: .5rem 0;
  margin-left: 1rem;
  color: #eaf6ff;
  transition: .25s ease-in;
}
.banner .banner-wrapper .page-link a:hover {
  color: #ffa400;
}
.banner .banner-wrapper p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .banner .banner-wrapper p {
    font-size: 1.1rem;
  }
}
.banner .banner-wrapper .banner-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.banner .banner-wrapper .banner-btns .btn-banner-primary {
  background-color: #ffa400;
  border-color: #ffa400;
  color: #1a0533;
  font-weight: 700;
}
.banner .banner-wrapper .banner-btns .btn-banner-primary:hover, .banner .banner-wrapper .banner-btns .btn-banner-primary:focus {
  background-color: #cc8300;
  border-color: #cc8300;
  color: #1a0533;
  box-shadow: 0 4px 18px rgba(255, 164, 0, 0.5);
}
.banner .banner-wrapper .banner-btns .btn-banner-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.banner .banner-wrapper .banner-btns .btn-banner-secondary:hover, .banner .banner-wrapper .banner-btns .btn-banner-secondary:focus {
  background-color: transparent;
  border-color: #ffa400;
  color: #ffa400;
  box-shadow: none;
}

.pz-carousel {
  position: relative;
  overflow: hidden;
}
.pz-carousel__slide {
  display: none;
}
.pz-carousel__slide.is-active {
  display: block;
  animation: pzFade .65s ease-in-out;
}
.pz-carousel--banner .pz-carousel__slide {
  padding: 12em 2em 8em 2em;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  text-align: center;
}
@media (max-width: 992px) {
  .pz-carousel--banner .pz-carousel__slide {
    padding: 9em 1.5em 6em 1.5em;
  }
}
.pz-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(111, 24, 183, 0.7);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 1;
  width: 3rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background .25s ease;
}
.pz-carousel__arrow:hover {
  background: #6F18B7;
}
.pz-carousel__arrow--prev {
  left: 1rem;
}
.pz-carousel__arrow--next {
  right: 1rem;
}
@media (max-width: 768px) {
  .pz-carousel__arrow {
    font-size: 2rem;
    width: 2.2rem;
    height: 3.8rem;
  }
}
.pz-carousel__dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .6rem;
}
.pz-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, transform .2s ease;
}
.pz-carousel__dot.is-active, .pz-carousel__dot:hover {
  background: #ffa400;
  border-color: #ffa400;
  transform: scale(1.2);
}

@keyframes pzFade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
.card .card-wrapper {
  display: flex;
}
.card .card-wrapper article {
  margin-right: 1rem;
  padding: 0 1rem 0 1.5rem;
  border: 1px solid transparent;
  border-right-color: rgba(111, 24, 183, 0.55);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.card .card-wrapper article:last-child {
  border-right-color: transparent;
}
.card .card-wrapper article header {
  margin-bottom: 1.5rem;
  min-height: 5.5rem;
}
.card .card-wrapper article h4 {
  min-width: 75%;
  text-align: center;
  font-family: "Piazzolla", serif;
  font-weight: 500;
  color: #6F18B7;
}
.card .card-wrapper article p {
  color: #495454;
  text-align: center;
  flex: 1;
}
.card .card-wrapper article .footer {
  margin-top: auto;
}
@media (max-width: 992px) {
  .card .card-wrapper {
    flex-flow: column;
  }
  .card .card-wrapper article {
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    border-right-color: transparent;
    border-bottom-color: rgba(111, 24, 183, 0.15);
  }
  .card .card-wrapper article:last-child {
    border-bottom-color: transparent;
  }
  .card .card-wrapper article h4 {
    min-width: 100%;
  }
}

.card-tooltip {
  position: relative;
  display: inline-block;
}
.card-tooltip__box {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #6F18B7;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
}
.card-tooltip__box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}
.card-tooltip__box strong {
  display: block;
  font-family: "Piazzolla", serif;
  font-size: .95rem;
  color: #6F18B7;
  margin-bottom: .4rem;
}
.card-tooltip__box p {
  font-size: .85rem;
  color: #495454;
  line-height: 1.55;
  margin: 0;
  padding: 0;
  text-align: left;
}
.card-tooltip:hover .card-tooltip__box {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.card-tooltip:first-child .card-tooltip__box {
  left: 0;
  transform: translateX(0) translateY(6px);
}
.card-tooltip:first-child .card-tooltip__box::after {
  left: 2rem;
}
.card-tooltip:first-child:hover .card-tooltip__box {
  transform: translateX(0) translateY(0);
}
.card-tooltip:last-child .card-tooltip__box {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(6px);
}
.card-tooltip:last-child .card-tooltip__box::after {
  left: auto;
  right: 2rem;
}
.card-tooltip:last-child:hover .card-tooltip__box {
  transform: translateX(0) translateY(0);
}

.card-icon {
  display: block;
  font-size: 2rem;
  color: #6F18B7;
  margin-bottom: .75rem;
  opacity: .85;
  transition: color .25s ease, transform .25s ease;
}
.card-wrapper article:hover .card-icon {
  color: #ffa400;
  transform: scale(1.1);
}

.btn {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 10px;
  background-color: #6F18B7;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border: 1px solid transparent;
  outline: none;
  user-select: none;
  transition: all .3s ease;
}
.btn:hover, .btn:focus {
  outline: none;
  background-color: #db8d00;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}
.btn.btn-mini {
  font-size: 1rem;
  padding: .25rem .5rem;
}
.btn.btn-big {
  padding: .75rem 1.5rem;
  margin: .4rem .5rem;
}
.btn.btn-outline:hover, .btn.btn-outline:focus {
  background-color: transparent;
  border-color: #ffa400;
  color: #ffa400;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

h1, .h1 {
  font-size: 2.5em;
}

h2, .h2 {
  font-size: 2.3em;
}

h3, .h3 {
  font-size: 2em;
}

h4, .h4 {
  font-size: 1.6em;
}

h5, .h5 {
  font-size: 1.4em;
}

h6, .h6 {
  font-size: 1.2em;
}

.main-title, .b-title {
  font-size: 3em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .main-title, .b-title {
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}

.main-title {
  font-family: "Ubuntu", sans-serif;
  line-height: 1;
  color: #ffa400;
}

.sub-title {
  text-align: center;
  margin-bottom: 1rem;
}

.l4-title {
  font-family: "Piazzolla", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffa400;
}

.b-title {
  font-family: "Piazzolla";
  color: #00dafd;
  line-height: 2;
}

.p-para {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header p {
  color: #495454;
}
@media (max-width: 992px) {
  .section-header {
    min-width: 90%;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 572px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
}

body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  color: #495454;
  text-align: left;
}

p {
  margin-top: none;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  outline: none;
}

ul, ol, li, dl {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.img {
  width: 100%;
  vertical-align: middle;
}

.img-rounded {
  border-radius: 50%;
}

.fas, .far, .fab, .fa {
  margin: 0 .25rem;
  vertical-align: middle;
}

.bg-bw {
  background-color: #C8D4DC;
}

#mentors {
  background: linear-gradient(160deg, #f8f4ff 0%, #eaf6ff 50%, #fff8ec 100%);
  position: relative;
  overflow: hidden;
}
#mentors::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 24, 183, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
#mentors::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 164, 0, 0.07) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
#mentors .mentors-wrapper {
  position: relative;
  z-index: 1;
}
#mentors .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
#mentors .section-header .sub-title {
  color: #6F18B7;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
#mentors .section-header .sub-title i {
  color: #ffa400;
}
#mentors .section-header .main-title {
  margin-bottom: .75rem;
}
#mentors .section-header .p-para {
  color: #495454;
  font-size: 1rem;
  opacity: .8;
}
#mentors .mentors-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 992px) {
  #mentors .mentors-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  #mentors .mentors-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#mentors .mentor-box {
  position: relative;
  width: 100%;
  flex: none;
  padding: 0 .75rem;
}
#mentors .mentor-box:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 38px;
  right: -10px;
  font-size: 1.6rem;
  color: #ffa400;
  opacity: .6;
  z-index: 2;
  line-height: 1;
}
@media (max-width: 992px) {
  #mentors .mentor-box:not(:last-child)::after {
    display: none;
  }
}
#mentors .box {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.25rem 1.5rem;
  border: 1px solid rgba(111, 24, 183, 0.1);
  box-shadow: 0 4px 20px rgba(111, 24, 183, 0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: visible;
}
#mentors .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(111, 24, 183, 0.15);
  border-color: rgba(111, 24, 183, 0.25);
}
#mentors .box:hover .step-number {
  background: #6F18B7;
  color: #fff;
  transform: scale(1.1);
}
#mentors .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(111, 24, 183, 0.08);
  border: 2px solid rgba(111, 24, 183, 0.2);
  color: #6F18B7;
  font-family: "Piazzolla", serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all .3s ease;
  position: relative;
  z-index: 1;
}
#mentors .mentor-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  padding: 0;
  border: 3px solid rgba(111, 24, 183, 0.15);
  box-shadow: 0 4px 14px rgba(111, 24, 183, 0.12);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.box:hover #mentors .mentor-img {
  border-color: rgba(255, 164, 0, 0.5);
  box-shadow: 0 6px 20px rgba(255, 164, 0, 0.2);
}
#mentors .l4-title {
  font-size: 1.05rem;
  margin-bottom: .4rem;
  color: #ffa400;
}
#mentors .box p {
  font-size: .88rem;
  color: #495454;
  line-height: 1.55;
  margin: 0;
  opacity: .85;
}

#articles {
  background: #0d0f14;
  position: relative;
  width: 100%;
  overflow: hidden;
}
#articles::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(111, 24, 183, 0.12) 0%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
}
#articles .main-title {
  color: #ffa400;
}
#articles p {
  color: rgba(212, 214, 220, 0.85);
}
#articles .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
#articles .articles-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  #articles .articles-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #articles .articles-container {
    grid-template-columns: 1fr;
  }
}
#articles .articles-container article {
  display: flex;
  flex-direction: column;
  background: #13161e;
  border-radius: 10px;
  padding: .75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color .3s ease, transform .3s ease;
}
#articles .articles-container article:hover {
  border-color: rgba(111, 24, 183, 0.4);
  transform: translateY(-4px);
}
#articles .articles-container article img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: .75rem;
  display: block;
}
#articles .articles-container article header h4 {
  font-weight: 400;
  color: #ffa400;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: .5rem;
}
#articles .articles-container article p {
  padding: .5rem 0;
  color: #9ca3af;
  font-size: .9rem;
  flex: 1;
}
#articles .articles-container article .footer-a {
  padding-bottom: .75rem;
  margin-top: auto;
}

.pz-inscrire-body {
  background-color: #d6edff;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.inscrire {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.inscrire-wrap {
  display: flex;
  width: 100%;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .inscrire-wrap {
    flex-direction: column;
  }
}

.inscrire-left {
  width: 42%;
  background-color: #1a0533;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 0.5rem solid #6F18B7;
}
.inscrire-left::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(111, 24, 183, 0.2);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.inscrire-left::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 164, 0, 0.12);
  bottom: 80px;
  left: -80px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .inscrire-left {
    width: 100%;
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  .inscrire-left::before, .inscrire-left::after {
    display: none;
  }
}

.inscrire-logo {
  position: relative;
  z-index: 1;
}
.inscrire-logo .img {
  max-width: 180px;
}
@media (max-width: 992px) {
  .inscrire-logo .img {
    max-width: 140px;
  }
}

.inscrire-pitch {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .inscrire-pitch {
    flex: none;
  }
}

.inscrire-headline {
  font-family: "Piazzolla", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.inscrire-headline em {
  color: #ffa400;
  font-style: italic;
}
@media (max-width: 1200px) {
  .inscrire-headline {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .inscrire-headline {
    font-size: 1.5rem;
  }
}

.inscrire-sub {
  font-family: "Ubuntu", sans-serif;
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

.inscrire-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .inscrire-steps {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    overflow-x: auto;
  }
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 992px) {
  .step-item {
    flex-direction: column;
    gap: .25rem;
    text-align: center;
    flex: 1;
  }
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
}
.step-dot .fas {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}
@media (max-width: 992px) {
  .step-dot {
    width: 32px;
    height: 32px;
  }
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.step-num {
  font-family: "Ubuntu", sans-serif;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.step-label {
  font-family: "Ubuntu", sans-serif;
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color .3s ease;
}

.step-item.step-active .step-dot {
  background: #6F18B7;
  border-color: #6F18B7;
  box-shadow: 0 0 0 4px rgba(111, 24, 183, 0.25);
}
.step-item.step-active .step-dot .fas {
  color: #fff;
}
.step-item.step-active .step-num {
  color: #ffa400;
}
.step-item.step-active .step-label {
  color: #fff;
  font-weight: 500;
}

.step-connector {
  width: 2px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 19px;
}
@media (max-width: 992px) {
  .step-connector {
    width: 20px;
    height: 2px;
    margin-left: 0;
    flex-shrink: 0;
  }
}

.inscrire-right {
  flex: 1;
  background-color: #fff;
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
@media (max-width: 1200px) {
  .inscrire-right {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .inscrire-right {
    padding: 2rem 1.25rem;
  }
}

.inscrire-form-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(111, 24, 183, 0.12);
}

.inscrire-form-title {
  font-family: "Piazzolla", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a0533;
  margin-bottom: .4rem;
}

.inscrire-form-sub {
  font-family: "Ubuntu", sans-serif;
  font-size: .85rem;
  color: #6d7d7d;
  margin: 0;
}
.inscrire-form-sub .fas {
  color: #6F18B7;
  font-size: .75rem;
}

.inscrire-alert {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-family: "Ubuntu", sans-serif;
  font-size: .875rem;
  margin-bottom: 1.25rem;
}
.inscrire-alert .fas {
  font-size: 1rem;
  margin: 0;
  flex-shrink: 0;
}
.inscrire-alert.inscrire-alert-error {
  background-color: #fceae9;
  color: #bf2718;
  border: 1px solid #f5b4ae;
}
.inscrire-alert.inscrire-alert-success {
  background-color: #c8f3da;
  color: #1e8449;
  border: 1px solid #89e5b0;
}

.inscrire-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 572px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-row .form-group {
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-family: "Ubuntu", sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: #495454;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.form-group label .fas {
  color: #6F18B7;
  font-size: .7rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select {
  font-family: "Ubuntu", sans-serif;
  font-size: .9rem;
  color: #313939;
  background-color: #eaf6ff;
  border: 1px solid rgba(111, 24, 183, 0.18);
  border-radius: 8px;
  padding: .65rem .9rem;
  width: 100%;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="password"]::placeholder,
.form-group select::placeholder {
  color: #94a2a2;
}
.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.form-group input[type="tel"]:hover,
.form-group input[type="password"]:hover,
.form-group select:hover {
  border-color: rgba(111, 24, 183, 0.4);
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus,
.form-group select:focus {
  border-color: #6F18B7;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(111, 24, 183, 0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236F18B7' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.input-pwd-wrap {
  position: relative;
}
.input-pwd-wrap input[type="password"],
.input-pwd-wrap input[type="text"] {
  padding-right: 2.8rem;
}

.pwd-toggle {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
  color: #798a8a;
  transition: color .2s ease;
  line-height: 1;
}
.pwd-toggle:hover {
  color: #6F18B7;
}
.pwd-toggle .fas {
  font-size: .9rem;
  margin: 0;
}

.form-hint {
  font-family: "Ubuntu", sans-serif;
  font-size: .75rem;
  color: #869696;
}
.form-hint .fas {
  font-size: .7rem;
  color: #ffa400;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-family: "Ubuntu", sans-serif;
  font-size: .82rem;
  color: #495454;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.form-check input[type="checkbox"] {
  margin-top: .15rem;
  accent-color: #6F18B7;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.form-check a {
  color: #6F18B7;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.form-check a:hover {
  color: #54128a;
}

.btn-inscrire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .85rem 1.5rem;
  background-color: #6F18B7;
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #6F18B7;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: .03em;
  transition: all .3s ease;
}
.btn-inscrire .fas {
  font-size: .85rem;
  margin: 0;
  transition: transform .25s ease;
}
.btn-inscrire:hover, .btn-inscrire:focus {
  background-color: #591393;
  border-color: #591393;
  box-shadow: 0 4px 14px rgba(111, 24, 183, 0.4);
  outline: none;
}
.btn-inscrire:hover .fas, .btn-inscrire:focus .fas {
  transform: translateX(4px);
}
.btn-inscrire:active {
  transform: scale(0.99);
}

.inscrire-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.1rem 0;
}
.inscrire-divider span {
  flex: 1;
  height: 1px;
  background-color: rgba(111, 24, 183, 0.12);
}
.inscrire-divider em {
  font-family: "Ubuntu", sans-serif;
  font-size: .78rem;
  font-style: normal;
  color: #869696;
  letter-spacing: .05em;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: .8rem 1.5rem;
  background-color: #fff;
  color: #495454;
  font-family: "Ubuntu", sans-serif;
  font-size: .9rem;
  font-weight: 400;
  border: 1px solid rgba(111, 24, 183, 0.22);
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-google svg {
  flex-shrink: 0;
}
.btn-google:hover, .btn-google:focus {
  background-color: #eaf6ff;
  border-color: rgba(111, 24, 183, 0.45);
  outline: none;
}

.inscrire-login-link {
  font-family: "Ubuntu", sans-serif;
  font-size: .83rem;
  color: #798a8a;
  text-align: center;
  margin-top: 1.25rem;
}
.inscrire-login-link a {
  color: #6F18B7;
  font-weight: 500;
  transition: color .2s ease;
}
.inscrire-login-link a .fas {
  font-size: .8rem;
}
.inscrire-login-link a:hover {
  color: #54128a;
}

.pz-step-panel {
  display: none;
  flex-direction: column;
}
.pz-step-panel.pz-active {
  display: flex;
  flex-direction: column;
}

.step-item.step-done .step-dot {
  background: #27ae60;
  border-color: #27ae60;
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
}
.step-item.step-done .step-dot .fas {
  color: #fff;
}
.step-item.step-done .step-num {
  color: #27ae60;
}
.step-item.step-done .step-label {
  color: rgba(255, 255, 255, 0.7);
}

.pz-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
.pz-step-nav .btn-inscrire.pz-btn-next {
  flex: 1;
}

.pz-btn-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: transparent;
  color: #6d7d7d;
  font-family: "Ubuntu", sans-serif;
  font-size: .9rem;
  font-weight: 500;
  border: 1px solid rgba(111, 24, 183, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.pz-btn-back .fas {
  font-size: .8rem;
  margin: 0;
}
.pz-btn-back:hover {
  border-color: #6F18B7;
  color: #6F18B7;
  background: rgba(111, 24, 183, 0.04);
}

.pz-required {
  color: #e74c3c;
  font-style: normal;
  margin-left: .2rem;
}

.pz-optional {
  font-size: .78rem;
  color: #869696;
  font-style: normal;
  margin-left: .4rem;
}

.pz-kyc-hint {
  font-family: "Ubuntu", sans-serif;
  font-size: .8rem;
  color: #798a8a;
  margin-bottom: .5rem;
  line-height: 1.5;
}

.pz-upload-zone {
  border: 2px dashed rgba(111, 24, 183, 0.25);
  border-radius: 10px;
  background: #eaf6ff;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: border-color .25s, background .25s;
  overflow: hidden;
}
.pz-upload-zone:hover, .pz-upload-zone--hover {
  border-color: #6F18B7;
  background: rgba(111, 24, 183, 0.03);
}
.pz-upload-zone--filled {
  border-color: #27ae60;
  border-style: solid;
  background: rgba(39, 174, 96, 0.03);
}

.pz-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 0;
}

.pz-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 1.5rem;
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.pz-upload-placeholder .fas {
  font-size: 1.8rem;
  color: rgba(111, 24, 183, 0.4);
  margin: 0;
}
.pz-upload-placeholder span {
  font-family: "Ubuntu", sans-serif;
  font-size: .85rem;
  color: #495454;
}
.pz-upload-placeholder em {
  font-family: "Ubuntu", sans-serif;
  font-size: .75rem;
  font-style: normal;
  color: #869696;
}

.pz-upload-preview {
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}
.pz-upload-preview img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(111, 24, 183, 0.15);
  flex-shrink: 0;
}
.pz-upload-preview .pz-preview-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  min-width: 0;
}
.pz-upload-preview .pz-preview-info span {
  font-family: "Ubuntu", sans-serif;
  font-size: .82rem;
  color: #495454;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pz-remove-file {
  background: rgba(231, 76, 60, 0.1);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.pz-remove-file .fas {
  color: #e74c3c;
  font-size: .75rem;
  margin: 0;
}
.pz-remove-file:hover {
  background: rgba(231, 76, 60, 0.2);
}

.pz-recap-bloc {
  background: #eaf6ff;
  border: 1px solid rgba(111, 24, 183, 0.12);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
}

.pz-recap-titre {
  font-family: "Ubuntu", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: #6F18B7;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pz-recap-titre .fas {
  font-size: .75rem;
}

.pz-recap-edit {
  margin-left: auto;
  background: none;
  border: none;
  font-family: "Ubuntu", sans-serif;
  font-size: .78rem;
  color: #6F18B7;
  cursor: pointer;
  padding: .2rem .5rem;
  border-radius: 4px;
  transition: background .2s;
  font-weight: 500;
}
.pz-recap-edit:hover {
  background: rgba(111, 24, 183, 0.08);
}

.pz-recap-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(111, 24, 183, 0.08);
  font-family: "Ubuntu", sans-serif;
  font-size: .85rem;
}
.pz-recap-row:last-child {
  border-bottom: none;
}
.pz-recap-row span {
  color: #6d7d7d;
}
.pz-recap-row strong {
  color: #313939;
  font-weight: 500;
  text-align: right;
  max-width: 60%;
  word-break: break-all;
}

.pz-final-check {
  margin-top: .5rem;
  margin-bottom: 0;
}

.pz-success-panel {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  flex: 1;
}

.pz-success-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.pz-success-icon .fas {
  margin: 0;
}

.pz-success-title {
  font-family: "Piazzolla", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a0533;
  margin-bottom: 1rem;
}

.pz-success-msg {
  font-family: "Ubuntu", sans-serif;
  font-size: .9rem;
  color: #616f6f;
  line-height: 1.7;
  margin-bottom: .5rem;
  max-width: 400px;
}
.pz-success-msg strong {
  color: #313939;
}

.pz-success-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.pz-connecter-body {
  background-color: #d6edff;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.pz-connecter-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.pz-login-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.pz-login-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pz-lf-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(111, 24, 183, 0.25);
  border: 1px solid rgba(111, 24, 183, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pz-lf-icon .fas {
  font-size: .9rem;
  color: #c591f1;
  margin: 0;
}

.pz-lf-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: .2rem;
}
.pz-lf-text strong {
  font-family: "Ubuntu", sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: #fff;
}
.pz-lf-text span {
  font-family: "Ubuntu", sans-serif;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.pz-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-family: "Ubuntu", sans-serif;
  font-size: .82rem;
}

.pz-remember {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  color: #495454;
}
.pz-remember input[type="checkbox"] {
  accent-color: #6F18B7;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.pz-remember span {
  user-select: none;
}

.pz-forgot {
  color: #6F18B7;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
  font-weight: 500;
}
.pz-forgot:hover {
  color: #54128a;
}

.pz-dashboard-body {
  background: #dbefff;
  min-height: 100vh;
  font-family: "Ubuntu", sans-serif;
}

.pz-dashboard {
  display: flex;
  min-height: 100vh;
}

.pz-sidebar {
  width: 260px;
  background: #1a0533;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
  border-right: 1px solid rgba(111, 24, 183, 0.15);
  transition: transform .3s ease;
}
@media (max-width: 992px) {
  .pz-sidebar {
    transform: translateX(-100%);
  }
  .pz-sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
  }
}

.pz-sidebar-logo {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pz-sidebar-logo .pz-logo-img {
  max-width: 140px;
  display: block;
}

.pz-sidebar-user {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pz-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6F18B7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  border: 2px solid rgba(111, 24, 183, 0.4);
}

.pz-sidebar-user-info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 0;
}
.pz-sidebar-user-info strong {
  font-size: .85rem;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pz-kyc-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
}
.pz-kyc-badge .fas {
  font-size: .65rem;
  margin: 0;
}

.pz-sidebar-nav {
  flex: 1;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.pz-nav-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 400;
  transition: all .2s ease;
  border-left: 3px solid transparent;
}
.pz-nav-item .fas {
  font-size: .9rem;
  width: 18px;
  text-align: center;
  margin: 0;
  flex-shrink: 0;
}
.pz-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(111, 24, 183, 0.5);
}
.pz-nav-item.active {
  color: #fff;
  background: rgba(111, 24, 183, 0.2);
  border-left-color: #6F18B7;
  font-weight: 500;
}

.pz-deconnecter:hover {
  color: #e74c3c !important;
  background: rgba(231, 76, 60, 0.08) !important;
  border-left-color: #e74c3c !important;
}

.pz-sidebar-footer {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pz-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .pz-main {
    margin-left: 0;
  }
}

.pz-topbar {
  height: 70px;
  background: #fff;
  border-bottom: 1px solid rgba(111, 24, 183, 0.1);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.pz-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #495454;
  font-size: 1.2rem;
  padding: .4rem;
  border-radius: 6px;
  display: none;
  transition: background .2s;
}
.pz-menu-toggle:hover {
  background: #eaf6ff;
}
@media (max-width: 992px) {
  .pz-menu-toggle {
    display: flex;
  }
}

.pz-topbar-title {
  flex: 1;
}
.pz-topbar-title h1 {
  font-family: "Piazzolla", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a0533;
  margin: 0;
}
.pz-topbar-title span {
  font-size: .75rem;
  color: #798a8a;
}

.pz-topbar-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #6F18B7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
}

.pz-kyc-alert {
  margin: 1.5rem 1.5rem 0;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.pz-kyc-alert .fas {
  font-size: 1.1rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.pz-kyc-alert strong {
  display: block;
  font-size: .9rem;
  margin-bottom: .2rem;
}
.pz-kyc-alert p {
  font-size: .82rem;
  color: #495454;
  margin: 0;
}
.pz-kyc-alert p a {
  color: #6F18B7;
  font-weight: 500;
}

.pz-content {
  padding: 1.5rem;
  flex: 1;
}

.pz-section {
  display: none;
}
.pz-section.active {
  display: block;
}

.pz-section-header {
  margin-bottom: 1.25rem;
}
.pz-section-header h2 {
  font-family: "Piazzolla", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a0533;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0;
}
.pz-section-header h2 .fas {
  color: #6F18B7;
  font-size: 1.1rem;
}

.pz-card {
  background: #fff;
  border: 1px solid rgba(111, 24, 183, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.pz-card-title {
  font-family: "Ubuntu", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #6F18B7;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 1rem;
}

.pz-profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .pz-profile-grid {
    grid-template-columns: 1fr;
  }
}

.pz-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
}

.pz-profile-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .pz-profile-avatar-wrap {
    flex-direction: column;
  }
}

.pz-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #6F18B7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 3px solid rgba(111, 24, 183, 0.2);
}
@media (max-width: 768px) {
  .pz-profile-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
}

.pz-profile-avatar-wrap h3 {
  font-family: "Piazzolla", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a0533;
  margin-bottom: .25rem;
}
.pz-profile-avatar-wrap p {
  font-size: .82rem;
  color: #6d7d7d;
  margin: 0;
}

.pz-info-list {
  display: flex;
  flex-direction: column;
}

.pz-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(111, 24, 183, 0.07);
  font-size: .875rem;
}
.pz-info-row:last-child {
  border-bottom: none;
}
.pz-info-row span {
  color: #6d7d7d;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pz-info-row span .fas {
  color: #6F18B7;
  font-size: .8rem;
  width: 14px;
}
.pz-info-row strong {
  color: #3d4646;
  font-weight: 500;
  text-align: right;
  max-width: 60%;
  word-break: break-all;
}

.pz-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 1200px) {
  .pz-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 572px) {
  .pz-stats-grid {
    grid-template-columns: 1fr;
  }
}

.pz-stat-card {
  background: #fff;
  border: 1px solid rgba(111, 24, 183, 0.1);
  border-radius: 12px;
  border-top: 4px solid;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pz-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pz-stat-icon .fas {
  font-size: 1.1rem;
  margin: 0;
}

.pz-stat-info {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.pz-stat-info span {
  font-size: .75rem;
  color: #798a8a;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pz-stat-info strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a0533;
}

.pz-empty-state {
  text-align: center;
  padding: 3rem 2rem;
}
.pz-empty-state .pz-empty-icon {
  font-size: 3rem;
  color: rgba(111, 24, 183, 0.25);
  margin-bottom: 1rem;
}
.pz-empty-state .pz-empty-icon .fas {
  margin: 0;
}
.pz-empty-state h3 {
  font-family: "Piazzolla", serif;
  font-size: 1.2rem;
  color: #1a0533;
  margin-bottom: .5rem;
}
.pz-empty-state p {
  font-size: .875rem;
  color: #798a8a;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.pz-table-wrap {
  overflow-x: auto;
}

.pz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.pz-table th {
  background: #eaf6ff;
  color: #495454;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(111, 24, 183, 0.1);
}
.pz-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(111, 24, 183, 0.06);
  color: #495454;
}
.pz-table .pz-table-empty {
  text-align: center;
  padding: 3rem;
  color: #869696;
}
.pz-table .pz-table-empty .fas {
  font-size: 2rem;
  display: block;
  margin-bottom: .5rem;
  opacity: .3;
}

.pz-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .pz-docs-grid {
    grid-template-columns: 1fr;
  }
}

.pz-doc-card {
  background: #fff;
  border: 1px solid rgba(111, 24, 183, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 992px) {
  .pz-doc-card {
    flex-wrap: wrap;
  }
}

.pz-doc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(111, 24, 183, 0.08);
  color: #6F18B7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pz-doc-icon .fas {
  font-size: 1.2rem;
  margin: 0;
}

.pz-doc-info {
  flex: 1;
}
.pz-doc-info strong {
  display: block;
  font-size: .875rem;
  color: #1a0533;
  margin-bottom: .2rem;
}
.pz-doc-info span {
  font-size: .78rem;
  color: #798a8a;
}

.pz-doc-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  background: #6F18B7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  transition: all .2s ease;
  white-space: nowrap;
}
.pz-doc-btn:hover:not(:disabled) {
  background: #591393;
}
.pz-doc-btn:disabled {
  background: #a2aeae;
  cursor: not-allowed;
}
.pz-doc-btn .fas {
  font-size: .75rem;
  margin: 0;
}

.pz-farm-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.pz-farm-tab {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(111, 24, 183, 0.15);
  border-radius: 8px;
  font-family: "Ubuntu", sans-serif;
  font-size: .85rem;
  color: #495454;
  cursor: pointer;
  transition: all .2s ease;
}
.pz-farm-tab .fas {
  font-size: .8rem;
  margin: 0;
}
.pz-farm-tab:hover {
  border-color: #6F18B7;
  color: #6F18B7;
}
.pz-farm-tab.active {
  background: #6F18B7;
  border-color: #6F18B7;
  color: #fff;
}

.pz-farm-panel {
  display: none;
}
.pz-farm-panel.active {
  display: block;
}

.pz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: #6F18B7;
  color: #fff;
  border-radius: 10px;
  font-family: "Ubuntu", sans-serif;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease;
  border: 2px solid #6F18B7;
}
.pz-btn-primary:hover {
  background: #591393;
  border-color: #591393;
  box-shadow: 0 4px 14px rgba(111, 24, 183, 0.35);
  color: #fff;
}
.pz-btn-primary .fas {
  font-size: .85rem;
  margin: 0;
}

.pz-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: transparent;
  color: #495454;
  border-radius: 10px;
  font-family: "Ubuntu", sans-serif;
  font-size: .9rem;
  font-weight: 500;
  border: 1px solid rgba(111, 24, 183, 0.25);
  cursor: pointer;
  transition: all .25s ease;
}
.pz-btn-secondary:hover {
  border-color: #6F18B7;
  color: #6F18B7;
}

.pz-btn-danger {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: #e74c3c;
  color: #fff;
  border-radius: 10px;
  font-family: "Ubuntu", sans-serif;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease;
  border: 2px solid #e74c3c;
}
.pz-btn-danger:hover {
  background: #df2e1b;
  border-color: #df2e1b;
  color: #fff;
}
.pz-btn-danger .fas {
  font-size: .85rem;
  margin: 0;
}

.pz-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.pz-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.pz-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
}
.pz-modal .pz-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.pz-modal .pz-modal-icon .fas {
  margin: 0;
}
.pz-modal h3 {
  font-family: "Piazzolla", serif;
  font-size: 1.4rem;
  color: #1a0533;
  margin-bottom: .5rem;
}
.pz-modal p {
  font-size: .875rem;
  color: #6d7d7d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pz-modal-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
}

#inv-main {
  background: #0d0f14;
  color: #d4d6dc;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 90px;
}
#inv-main a:not(.btn) {
  color: #ffa400;
  text-decoration: none;
}
#inv-main a:not(.btn):hover {
  color: #ffbd47;
}
#inv-main .inv-hero {
  padding: 60px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  position: relative;
  overflow: visible;
}
#inv-main .inv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(111, 24, 183, 0.15) 0%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
}
#inv-main .inv-hero__inner {
  position: relative;
  z-index: 1;
}
#inv-main .inv-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffa400;
  border: 1px solid rgba(255, 164, 0, 0.35);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
#inv-main .inv-hero__title {
  font-family: "Piazzolla", serif;
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}
#inv-main .inv-hero__title em {
  font-style: italic;
  color: #ffa400;
}
#inv-main .inv-hero__sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
#inv-main .inv-hero__flags {
  font-size: 14px;
  color: #6b7280;
}
#inv-main .inv-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 24px 0;
}
#inv-main .inv-toggle__label {
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  transition: color .2s;
}
#inv-main .inv-toggle__label--active {
  color: #ffffff;
}
#inv-main .inv-toggle__label em {
  font-style: normal;
  font-size: 12px;
  background: rgba(255, 164, 0, 0.15);
  color: #ffa400;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px;
  font-weight: 600;
}
#inv-main .inv-toggle__btn {
  width: 48px;
  height: 26px;
  border-radius: 100px;
  background: #1a1e2a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  position: relative;
  transition: background .25s;
  padding: 0;
  outline: none;
}
#inv-main .inv-toggle__btn--active {
  background: #6F18B7;
  border-color: #6F18B7;
}
#inv-main .inv-toggle__btn--active .inv-toggle__knob {
  transform: translateX(22px);
}
#inv-main .inv-toggle__knob {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform .25s;
}
#inv-main .inv-toggle__btn--active #inv-main .inv-toggle__knob {
  transform: translateY(-50%) translateX(22px);
}
#inv-main .inv-plans {
  padding: 48px 0 72px;
}
#inv-main .inv-plans__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 992px) {
  #inv-main .inv-plans__inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}
#inv-main .inv-card {
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color .25s, transform .25s;
}
#inv-main .inv-card:hover {
  border-color: rgba(255, 164, 0, 0.3);
  transform: translateY(-4px);
}
#inv-main .inv-card--featured {
  background: #1a1e2a;
  border-color: rgba(111, 24, 183, 0.5);
  transform: translateY(-8px);
}
#inv-main .inv-card--featured:hover {
  border-color: #6F18B7;
  transform: translateY(-12px);
}
#inv-main .inv-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #6F18B7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .5px;
}
#inv-main .inv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(111, 24, 183, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#inv-main .inv-card__icon i {
  font-size: 22px;
  color: #6F18B7;
}
.inv-card--featured #inv-main .inv-card__icon {
  background: rgba(255, 164, 0, 0.12);
}
.inv-card--featured #inv-main .inv-card__icon i {
  color: #ffa400;
}
#inv-main .inv-card__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#inv-main .inv-card__badge--starter {
  color: #6b7280;
}
#inv-main .inv-card__badge--growth {
  color: #ffa400;
}
#inv-main .inv-card__badge--elite {
  color: #b97aee;
}
#inv-main .inv-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 16px;
  line-height: 1;
}
#inv-main .inv-card__currency {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}
#inv-main .inv-card__amount {
  font-family: "Piazzolla", serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  transition: all .3s;
}
#inv-main .inv-card__period {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}
#inv-main .inv-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 64px;
}
#inv-main .inv-card__features {
  list-style: none;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#inv-main .inv-card__features li {
  font-size: 14px;
  color: #d4d6dc;
  display: flex;
  align-items: center;
  gap: 10px;
}
#inv-main .inv-card__features li i.fa-check {
  color: #34c759;
  font-size: 12px;
  min-width: 14px;
}
#inv-main .inv-card__features li i.fa-times {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  min-width: 14px;
}
#inv-main .inv-card__feat--off {
  color: #6b7280 !important;
  opacity: .5;
}
#inv-main .inv-card__btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#inv-main .inv-guarantee {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
}
#inv-main .inv-guarantee__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}
#inv-main .inv-guarantee__icon {
  font-size: 24px;
}
#inv-main .inv-guarantee p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
#inv-main .inv-guarantee p strong {
  color: #ffffff;
}
#inv-main .inv-faq {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#inv-main .inv-faq__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
#inv-main .inv-faq__title {
  font-family: "Piazzolla", serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
#inv-main .inv-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#inv-main .inv-faq__item:last-child {
  border-bottom: none;
}
#inv-main .inv-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
#inv-main .inv-faq__q:hover {
  color: #ffa400;
}
#inv-main .inv-faq__q i {
  color: #6b7280;
  font-size: 13px;
  transition: transform .3s;
  min-width: 14px;
}
#inv-main .inv-faq__q[aria-expanded="true"] i {
  transform: rotate(180deg);
}
#inv-main .inv-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
#inv-main .inv-faq__a p {
  font-size: 14px;
  color: #6b7280;
  padding-bottom: 20px;
  margin: 0;
  line-height: 1.7;
}
#inv-main .inv-cta {
  padding: 80px 0;
  text-align: center;
  background: #13161e;
}
#inv-main .inv-cta__inner {
  padding: 0 24px;
}
#inv-main .inv-cta__title {
  font-family: "Piazzolla", serif;
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}
#inv-main .inv-cta__sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 36px;
}
#inv-main .inv-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
#inv-main .inv-cta__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pf-tag {
  display: inline-block;
  background: #6F18B7;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 20px;
}

.pf-banner__breadcrumb {
  margin-top: .5rem;
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.8);
}
.pf-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  text-underline-offset: 3px;
}
.pf-banner__breadcrumb a:hover {
  color: #fff;
}
.pf-banner__breadcrumb span {
  margin: 0 .4rem;
}
.pf-banner__breadcrumb span:last-child {
  color: #ffa400;
  font-weight: 600;
}

.pf-video__wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .pf-video__wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.pf-video__embed {
  flex: 0 0 60%;
  position: relative;
  padding-bottom: 33.75%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
  .pf-video__embed {
    flex: 0 0 100%;
    width: 100%;
    padding-bottom: 56.25%;
  }
}
.pf-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.pf-video__info {
  flex: 1;
  padding-top: .5rem;
}
.pf-video__info .pf-tag {
  margin-bottom: 1rem;
}
.pf-video__titre {
  font-family: "Piazzolla", serif;
  font-size: 1.6rem;
  color: #6F18B7;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.pf-video__desc {
  color: #495454;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.pf-video__date {
  color: #6d7d7d;
  font-size: .9rem;
}
.pf-video__date i {
  color: #ffa400;
}

.pf-galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .pf-galerie__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pf-galerie__grid {
    grid-template-columns: 1fr;
  }
}
.pf-galerie__item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pf-galerie__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}
.pf-galerie__item:hover .pf-galerie__overlay {
  opacity: 1;
}
.pf-galerie__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.pf-galerie__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pf-galerie__img-wrap:hover img {
  transform: scale(1.05);
}
.pf-galerie__overlay {
  position: absolute;
  inset: 0;
  background: rgba(111, 24, 183, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: .75rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.pf-galerie__caption {
  padding: .85rem 1rem;
}
.pf-galerie__caption p {
  font-size: .9rem;
  color: #495454;
  font-weight: 500;
  margin-bottom: .25rem;
}
.pf-galerie__caption small {
  color: #798a8a;
  font-size: .8rem;
}
.pf-galerie__caption small i {
  color: #ffa400;
}

.pf-actu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .pf-actu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pf-actu__grid {
    grid-template-columns: 1fr;
  }
}
.pf-actu__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.pf-actu__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}
.pf-actu__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pf-actu__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pf-actu__img-wrap .pf-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
}
.pf-actu__img-wrap:hover img {
  transform: scale(1.04);
}
.pf-actu__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pf-actu__date {
  font-size: .82rem;
  color: #798a8a;
  margin-bottom: .5rem;
}
.pf-actu__date i {
  color: #ffa400;
}
.pf-actu__titre {
  font-family: "Piazzolla", serif;
  font-size: 1.1rem;
  color: #6F18B7;
  line-height: 1.4;
  margin-bottom: .75rem;
  flex: 1;
}
.pf-actu__extrait {
  font-size: .9rem;
  color: #495454;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.art-banner__breadcrumb {
  margin-top: .5rem;
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.8);
}
.art-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.art-banner__breadcrumb a:hover {
  color: #fff;
}
.art-banner__breadcrumb span {
  margin: 0 .4rem;
}
.art-banner__breadcrumb span:last-child {
  color: #ffa400;
  font-weight: 600;
}
.art-banner .b-title {
  font-size: 2rem;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .art-banner .b-title {
    font-size: 1.4rem;
  }
}

.art-page__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .art-page__layout {
    grid-template-columns: 1fr;
  }
}
.art-page__main {
  min-width: 0;
}
.art-page__sidebar {
  position: sticky;
  top: 100px;
}

.art-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.art-meta__date, .art-meta__auteur {
  font-size: .9rem;
  color: #6d7d7d;
}
.art-meta__date i, .art-meta__auteur i {
  color: #ffa400;
  margin-right: .3rem;
}

.art-featured-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.art-featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .art-featured-img img {
    height: 220px;
  }
}

.art-intro {
  font-size: 1.2rem;
  color: #6F18B7;
  font-family: "Piazzolla", serif;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left: 4px solid #ffa400;
}

.art-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(111, 24, 183, 0.1);
}
.art-section:last-of-type {
  border-bottom: none;
}
.art-section__titre {
  font-family: "Piazzolla", serif;
  font-size: 1.4rem;
  color: #6F18B7;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.art-section__titre::before {
  content: '';
  position: absolute;
  left: 0;
  top: .2em;
  height: .85em;
  width: 4px;
  background: #ffa400;
  border-radius: 2px;
}
.art-section__texte {
  color: #495454;
  font-size: 1.05rem;
  line-height: 1.85;
}

.art-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background: #d8e0e6;
  border-radius: 8px;
}
.art-tags__label {
  font-size: .9rem;
  font-weight: 600;
  color: #495454;
  margin-right: .25rem;
}
.art-tags__label i {
  color: #6F18B7;
}

.art-tag {
  display: inline-block;
  background: rgba(111, 24, 183, 0.1);
  color: #6F18B7;
  font-size: .8rem;
  font-weight: 600;
  padding: .2rem .75rem;
  border-radius: 20px;
  border: 1px solid rgba(111, 24, 183, 0.2);
  transition: background .2s ease, color .2s ease;
}
.art-tag:hover {
  background: #6F18B7;
  color: #fff;
}

.art-retour {
  margin-top: 1rem;
}

.art-sidebar__titre {
  font-family: "Piazzolla", serif;
  font-size: 1.2rem;
  color: #6F18B7;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid #ffa400;
}
.art-sidebar__card {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .85rem;
  margin-bottom: .85rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.art-sidebar__card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.art-sidebar__card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.art-sidebar__info {
  flex: 1;
  min-width: 0;
}
.art-sidebar__info .pf-tag {
  font-size: .65rem;
  padding: .15rem .5rem;
  margin-bottom: .4rem;
}
.art-sidebar__info p {
  font-size: .85rem;
  color: #495454;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: .3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-sidebar__info small {
  font-size: .75rem;
  color: #798a8a;
}
.art-sidebar__info small i {
  color: #ffa400;
}

.contact-info {
  align-items: center;
  min-height: 500px;
}
.contact-info .c-info {
  width: 33%;
  flex: 0 0 33%;
}
@media (max-width: 992px) {
  .contact-info .c-info {
    width: 100%;
    flex: 0 0 100%;
  }
}
.contact-info .c-info .info-item {
  margin-bottom: 1rem;
  align-items: center;
}
.contact-info .c-info h4 {
  margin-bottom: 0;
}
.contact-info .c-info p {
  margin-bottom: 0;
  color: #999999;
}
.contact-info .c-form {
  width: 67%;
  flex: 0 0 67%;
}
@media (max-width: 992px) {
  .contact-info .c-form {
    width: 100%;
    flex: 0 0 100%;
  }
}
.contact-info .c-form .left-form, .contact-info .c-form .right-form {
  width: 50%;
  flex: 0 0 50%;
}
@media (max-width: 768px) {
  .contact-info .c-form .left-form, .contact-info .c-form .right-form {
    width: 100%;
    flex: 0 0 100%;
  }
}
.contact-info .c-form .form-control {
  width: 100%;
  padding: .375rem 1rem;
  font-size: 13px;
  color: #999999;
  border: 1px solid #f7f7f7;
  transition: box-shadow .25s ease;
}
.contact-info .c-form .form-control:hover, .contact-info .c-form .form-control:focus {
  border-color: rgba(111, 24, 183, 0.25);
}
.contact-info .c-form .form-control:focus {
  box-shadow: 3px 3px 5px rgba(111, 24, 183, 0.6);
}
.contact-info .c-form textarea.form-control {
  height: 150px;
  resize: none;
}
.contact-info .c-form .button-col {
  width: 100%;
  text-align: right;
}

#pz-meeting-btn {
  margin-top: 1rem;
  cursor: pointer;
}
#pz-meeting-btn.pz-btn--disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

#pz-meeting-no-plan {
  display: none;
  margin-top: .5rem;
  font-size: .95rem;
  color: #a24de8;
}

#pz-meeting-status {
  margin-top: .75rem;
}
#pz-meeting-status .pz-success {
  color: #2e7d32;
  font-weight: 500;
}
#pz-meeting-status .pz-error {
  color: #c62828;
  font-weight: 500;
}

.pz-booking-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(111, 24, 183, 0.07);
  border-left: 4px solid #6F18B7;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.pz-booking-card .pz-booking-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.pz-booking-card strong {
  display: block;
  font-size: 1.05rem;
  color: #6F18B7;
  margin-bottom: .35rem;
}
.pz-booking-card .pz-meet-link {
  background: #ffa400;
  color: #fff;
  margin-right: .5rem;
}
.pz-booking-card .pz-meet-link:hover {
  background: #d68a00;
}

#pz-slots-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}
#pz-slots-overlay.is-open {
  display: block;
}

#pz-slots-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
}
#pz-slots-modal.is-open {
  display: block;
}
#pz-slots-modal h3 {
  margin: 0 0 1.25rem;
  color: #6F18B7;
  font-size: 1.2rem;
}
#pz-slots-modal #pz-slots-close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
#pz-slots-modal #pz-slots-close:hover {
  color: #6F18B7;
}

.pz-slots-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.pz-slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem 1rem;
  border: 1.5px solid #d1a7f4;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
}
.pz-slot-item:hover {
  border-color: #6F18B7;
  background: rgba(111, 24, 183, 0.06);
}
.pz-slot-item .pz-slot-date {
  font-weight: 600;
  color: #6F18B7;
}
.pz-slot-item .pz-slot-time {
  font-size: 1.05rem;
}
.pz-slot-item .pz-slot-duration {
  font-size: .85rem;
  color: #888;
}

.pz-loading {
  text-align: center;
  color: #888;
  padding: 1.5rem 0;
}

.pz-no-slots {
  text-align: center;
  color: #888;
  padding: 1rem 0;
}

.pz-slot-locked {
  cursor: not-allowed !important;
  opacity: .7;
  background: #eaf6ff !important;
  border-color: #e9d5f9 !important;
}
.pz-slot-locked:hover {
  border-color: #e9d5f9 !important;
  background: #eaf6ff !important;
}
.pz-slot-locked .pz-slot-date {
  color: #798a8a;
}

.pz-slots-readonly {
  pointer-events: none;
}

.pz-plan-active-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #eafaf1;
  color: #3B6D11;
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.pz-plan-active-badge .fas {
  font-size: .7rem;
  margin: 0;
}

#stats {
  background: #0d0f14;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(111, 24, 183, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
#stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #6F18B7, #ffa400, #6F18B7);
}
#stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  #stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 572px) {
  #stats .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
#stats .stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
#stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 164, 0, 0.5), transparent);
}
#stats .stat-item:hover {
  border-color: rgba(111, 24, 183, 0.35);
  transform: translateY(-4px);
  background: rgba(111, 24, 183, 0.05);
}
#stats .stat-icon {
  font-size: 1.6rem;
  color: #ffa400;
  margin-bottom: .75rem;
  opacity: .85;
  display: block;
}
#stats .stat-icon .fas {
  margin: 0;
}
#stats .stat-number {
  font-family: "Piazzolla", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
@media (max-width: 992px) {
  #stats .stat-number {
    font-size: 2.2rem;
  }
}
#stats .stat-number span {
  color: #ffa400;
  font-size: 1.8rem;
}
@media (max-width: 992px) {
  #stats .stat-number span {
    font-size: 1.4rem;
  }
}
#stats .stat-label {
  font-family: "Ubuntu", sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}

#footer {
  background: #0f0a1e;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Ubuntu", sans-serif;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 24, 183, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
#footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 164, 0, 0.07) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
#footer .footer-top-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #6F18B7, #ffa400, #6F18B7);
}
#footer .footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}
#footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 992px) {
  #footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  #footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#footer .footer-col__title {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.4rem;
  padding-left: .85rem;
  border-left: 3px solid #ffa400;
  line-height: 1.3;
  letter-spacing: .01em;
}
#footer .footer-col--brand .footer-logo {
  display: block;
  margin-bottom: 1.25rem;
}
#footer .footer-col--brand .footer-logo img {
  max-width: 170px;
  opacity: .92;
  transition: opacity .25s ease;
}
#footer .footer-col--brand .footer-logo img:hover {
  opacity: 1;
}
#footer .footer-col--brand .footer-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
#footer .footer-col--brand .footer-dispo {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}
#footer .footer-col--brand .footer-dispo__title {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .85rem;
  padding-left: .85rem;
  border-left: 3px solid #ffa400;
}
#footer .footer-col--brand .footer-dispo__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  font-size: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#footer .footer-col--brand .footer-dispo__row:last-child {
  border-bottom: none;
}
#footer .footer-col--brand .footer-dispo__row .day {
  color: rgba(255, 255, 255, 0.55);
}
#footer .footer-col--brand .footer-dispo__row .hours {
  color: #ffa400;
  font-weight: 500;
}
#footer .footer-col--brand .footer-dispo__row .closed {
  color: #e74c3c;
  font-weight: 500;
}
#footer .footer-col--links .footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
#footer .footer-col--links .footer-links-list li a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color .25s ease, padding-left .2s ease;
}
#footer .footer-col--links .footer-links-list li a::before {
  content: '—';
  color: #ffa400;
  font-size: .85rem;
  opacity: .7;
  transition: opacity .2s ease;
  flex-shrink: 0;
}
#footer .footer-col--links .footer-links-list li a:hover {
  color: #fff;
  padding-left: .4rem;
}
#footer .footer-col--links .footer-links-list li a:hover::before {
  opacity: 1;
}
#footer .footer-col--links .footer-links-list li:last-child a {
  border-bottom: none;
}
#footer .footer-col--contact .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer .footer-col--contact .footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#footer .footer-col--contact .footer-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#footer .footer-col--contact .footer-contact-label {
  font-size: .78rem;
  font-weight: 700;
  color: #ffa400;
  text-transform: uppercase;
  letter-spacing: .07em;
}
#footer .footer-col--contact .footer-contact-value {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
#footer .footer-col--contact .footer-contact-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffa400;
  letter-spacing: .03em;
  line-height: 1.4;
}
#footer .footer-col--contact .footer-socials {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}
#footer .footer-col--contact .footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  transition: all .25s ease;
}
#footer .footer-col--contact .footer-socials a:hover {
  background: #6F18B7;
  border-color: #6F18B7;
  color: #fff;
  transform: translateY(-2px);
}
#footer .footer-col--contact .footer-socials a .fab, #footer .footer-col--contact .footer-socials a .fas {
  margin: 0;
}
#footer .footer-col--articles .footer-article-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#footer .footer-col--articles .footer-article-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: transform .2s ease;
}
#footer .footer-col--articles .footer-article-item:first-child {
  padding-top: 0;
}
#footer .footer-col--articles .footer-article-item:last-child {
  border-bottom: none;
}
#footer .footer-col--articles .footer-article-item:hover {
  transform: translateX(4px);
}
#footer .footer-col--articles .footer-article-item:hover .footer-article-title {
  color: #ffa400;
}
#footer .footer-col--articles .footer-article-img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
#footer .footer-col--articles .footer-article-info {
  flex: 1;
  min-width: 0;
}
#footer .footer-col--articles .footer-article-date {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: .25rem;
}
#footer .footer-col--articles .footer-article-date i {
  color: #ffa400;
  margin-right: .25rem;
}
#footer .footer-col--articles .footer-article-title {
  font-family: "Ubuntu", sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  transition: color .2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#footer .footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}
#footer .footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
#footer .footer-copyright {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.35);
}
#footer .footer-copyright span {
  color: #ffa400;
}
#footer .footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
#footer .footer-legal-links li:not(:last-child)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.2);
  margin: 0 .6rem;
  font-size: .8rem;
}
#footer .footer-legal-links li a {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color .2s ease;
}
#footer .footer-legal-links li a:hover {
  color: #ffa400;
}

.pz-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.pz-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pz-wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}
.pz-whatsapp-btn svg {
  flex-shrink: 0;
  transition: transform .2s ease;
}
.pz-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}
.pz-whatsapp-btn:hover svg {
  transform: scale(1.12);
}
.pz-whatsapp-btn:hover .pz-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-8px);
}

.pz-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(0);
  background: #1a0533;
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .4rem .85rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.pz-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a0533;
}

@keyframes pz-wa-pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
#tc-main {
  background: #0d0f14;
  color: #d4d6dc;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: 190px;
}
#tc-main a:not(.btn) {
  color: #ffa400;
  text-decoration: none;
}
#tc-main a:not(.btn):hover {
  color: #ffbd47;
  text-decoration: underline;
}
#tc-main strong {
  color: #ffffff;
}
#tc-main .tc-hero {
  padding: 60px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: visible;
}
#tc-main .tc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(111, 24, 183, 0.12) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}
#tc-main .tc-hero__inner {
  position: relative;
  z-index: 1;
}
#tc-main .tc-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffa400;
  border: 1px solid rgba(255, 164, 0, 0.35);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
#tc-main .tc-hero__title {
  font-family: "Piazzolla", serif;
  font-size: clamp(42px, 8vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 18px;
}
#tc-main .tc-hero__title em {
  font-style: italic;
  color: #ffa400;
}
#tc-main .tc-hero__sub {
  font-size: 13px;
  color: #6b7280;
}
#tc-main .tc-wrap {
  padding: 0 24px 80px;
}
#tc-main .tc-toc {
  margin: 44px 0;
  padding: 24px 28px;
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid #ffa400;
  border-radius: 14px;
}
#tc-main .tc-toc__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
}
#tc-main .tc-toc ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#tc-main .tc-toc ul li {
  width: 50%;
  padding: 4px 0;
}
@media (max-width: 572px) {
  #tc-main .tc-toc ul li {
    width: 100%;
  }
}
#tc-main .tc-toc ul li a {
  font-size: 14px;
  color: #d4d6dc;
  opacity: .8;
  transition: all .2s;
}
#tc-main .tc-toc ul li a::before {
  content: '→ ';
  color: #ffa400;
  opacity: .5;
}
#tc-main .tc-toc ul li a:hover {
  color: #ffa400;
  opacity: 1;
  text-decoration: none;
}
#tc-main .tc-section {
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
#tc-main .tc-section:last-child {
  border-bottom: none;
}
#tc-main .tc-section__num {
  font-family: "Piazzolla", serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 164, 0, 0.08);
  position: absolute;
  top: 40px;
  right: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
#tc-main .tc-section h2 {
  font-family: "Piazzolla", serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}
#tc-main .tc-section h4 {
  font-size: 13px;
  font-weight: 600;
  color: #ffa400;
  margin-bottom: 8px;
  letter-spacing: .5px;
}
#tc-main .tc-section p {
  margin-bottom: 14px;
}
#tc-main .tc-section--contact {
  text-align: center;
}
#tc-main .tc-list {
  list-style: none;
  margin: 14px 0 20px;
}
#tc-main .tc-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#tc-main .tc-list li:last-child {
  border-bottom: none;
}
#tc-main .tc-list li::before {
  content: '·';
  position: absolute;
  left: 5px;
  color: #ffa400;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
#tc-main .tc-list--check li::before {
  content: '✓';
  font-size: 12px;
  line-height: 2.2;
  color: #34c759;
}
#tc-main .tc-list--red li::before {
  content: '!';
  font-size: 12px;
  line-height: 2.2;
  color: #ff3b30;
  font-weight: 700;
}
#tc-main .tc-alert {
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  margin: 16px 0;
}
#tc-main .tc-alert--yellow {
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.2);
  color: #ffcc00;
}
#tc-main .tc-alert--neutral {
  background: rgba(255, 164, 0, 0.06);
  border: 1px solid rgba(255, 164, 0, 0.15);
  color: #ffbd47;
}
#tc-main .tc-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  #tc-main .tc-risk-grid {
    grid-template-columns: 1fr;
  }
}
#tc-main .tc-risk {
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.15);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
#tc-main .tc-risk span {
  font-size: 24px;
}
#tc-main .tc-risk p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
#tc-main .tc-fin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  #tc-main .tc-fin-grid {
    grid-template-columns: 1fr;
  }
}
#tc-main .tc-fin-block {
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px;
}
#tc-main .tc-fin-block h4 {
  margin-bottom: 10px;
}
#tc-main .tc-fin-block p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}
#tc-main .tc-contact-box {
  display: inline-block;
  margin-top: 20px;
  padding: 28px 44px;
  background: #13161e;
  border: 1px solid rgba(255, 164, 0, 0.25);
  border-radius: 20px;
  text-align: left;
}
#tc-main .tc-contact-box p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #6b7280;
}
#tc-main .tc-contact-box p:last-child {
  margin: 0;
}
#tc-main .tc-contact-box p i {
  color: #ffa400;
  margin-right: 8px;
}

#pc-main {
  background: #0d0f14;
  color: #d4d6dc;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
#pc-main a {
  color: #ffa400;
  text-decoration: none;
}
#pc-main a:hover {
  color: #ffba3d;
  text-decoration: underline;
}

.pc-hero {
  background: #0d0f14;
  padding: 100px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pc-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.pc-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffa400;
  border: 1px solid rgba(255, 164, 0, 0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pc-hero__title {
  font-family: "Piazzolla", serif;
  font-size: clamp(40px, 8vw, 66px);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}
.pc-hero__title em {
  font-style: italic;
  color: #ffa400;
}
.pc-hero__sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}
.pc-hero__flags {
  font-size: 14px;
  color: #6b7280;
}

.pc-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px;
  background: #0d0f14;
}

.pc-toc {
  margin: 44px 0;
  padding: 24px 28px;
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid #ffa400;
  border-radius: 14px;
}
.pc-toc__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
}
.pc-toc ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.pc-toc ul li {
  width: 50%;
  padding: 4px 0;
}
@media (max-width: 572px) {
  .pc-toc ul li {
    width: 100%;
  }
}
.pc-toc ul li a {
  font-size: 14px;
  color: #d4d6dc;
  opacity: 0.8;
  transition: all 0.2s;
}
.pc-toc ul li a::before {
  content: '→ ';
  color: #ffa400;
  opacity: 0.5;
}
.pc-toc ul li a:hover {
  color: #ffa400;
  opacity: 1;
  text-decoration: none;
}

.pc-section {
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pc-section:last-child {
  border-bottom: none;
}
.pc-section__icon {
  font-size: 24px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.pc-section h2 {
  font-family: "Piazzolla", serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}
.pc-section h3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffba3d;
  margin: 22px 0 10px;
  font-family: "Ubuntu", sans-serif;
}
.pc-section h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffa400;
  margin-bottom: 12px;
}
.pc-section p {
  margin-bottom: 14px;
}
.pc-section--contact {
  text-align: center;
}

.pc-list {
  list-style: none;
  margin: 14px 0 20px;
}
.pc-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pc-list li:last-child {
  border-bottom: none;
}
.pc-list li::before {
  content: '·';
  position: absolute;
  left: 5px;
  color: #ffa400;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.pc-list--check li::before {
  content: '✓';
  font-size: 12px;
  line-height: 2;
}

.pc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .pc-cards {
    grid-template-columns: 1fr;
  }
}

.pc-card {
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color 0.25s;
}
.pc-card:hover {
  border-color: rgba(255, 164, 0, 0.4);
}
.pc-card__num {
  font-family: "Piazzolla", serif;
  font-size: 38px;
  font-weight: 700;
  color: rgba(255, 164, 0, 0.18);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.pc-card h3 {
  font-size: 14px !important;
  font-weight: 500;
  color: #ffffff !important;
  margin: 0 0 12px !important;
  font-family: "Ubuntu", sans-serif;
}
.pc-card ul {
  list-style: none;
}
.pc-card ul li {
  font-size: 13px;
  color: #6b7280;
  padding: 4px 0 4px 14px;
  position: relative;
}
.pc-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #ffa400;
  opacity: 0.45;
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 572px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }
}
.pc-grid__item {
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px;
}
.pc-grid__item ul {
  list-style: none;
}
.pc-grid__item ul li {
  font-size: 14px;
  color: #6b7280;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pc-grid__item ul li:last-child {
  border-bottom: none;
}

.pc-usage {
  margin-top: 20px;
}
.pc-usage__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pc-usage__item:last-child {
  border-bottom: none;
}
.pc-usage__item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
  font-size: 15px;
}
.pc-usage__item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.pc-usage__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #ffa400;
  border-radius: 50%;
  margin-top: 9px;
}

.pc-alert {
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  margin: 16px 0;
}
.pc-alert--green {
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.25);
  color: #34c759;
}
.pc-alert--yellow {
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.25);
  color: #ffcc00;
}

.pc-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 28px 0;
}

.pc-contact-box {
  display: inline-block;
  margin-top: 20px;
  padding: 28px 44px;
  background: #13161e;
  border: 1px solid rgba(255, 164, 0, 0.28);
  border-radius: 20px;
  text-align: center;
}
.pc-contact-box p {
  margin-bottom: 6px;
  font-size: 15px;
}
.pc-contact-box p:last-child {
  margin: 0;
}
.pc-contact-box a {
  font-size: 15px;
  font-weight: 500;
}

#ap-main {
  background: #0d0f14;
  color: #d4d6dc;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: 170px;
}
#ap-main a:not(.btn) {
  color: #ffa400;
  text-decoration: none;
}
#ap-main a:not(.btn):hover {
  color: #ffbd47;
  text-decoration: underline;
}
#ap-main .ap-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 72px 0;
}
#ap-main .ap-section:last-child {
  border-bottom: none;
}
#ap-main .ap-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
#ap-main .ap-section__icon {
  font-size: 28px;
  margin-bottom: 14px;
  opacity: .9;
}
#ap-main .ap-section h2 {
  font-family: "Piazzolla", serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}
#ap-main .ap-section p {
  margin-bottom: 14px;
}
#ap-main .ap-hero {
  background: #0d0f14;
  padding: 60px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
#ap-main .ap-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 24, 183, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
#ap-main .ap-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
#ap-main .ap-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffa400;
  border: 1px solid rgba(255, 164, 0, 0.35);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
#ap-main .ap-hero__title {
  font-family: "Piazzolla", serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
}
#ap-main .ap-hero__title em {
  font-style: italic;
  color: #ffa400;
}
#ap-main .ap-hero__sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 10px;
  font-style: italic;
}
#ap-main .ap-hero__flags {
  font-size: 14px;
  color: #6b7280;
}
#ap-main .ap-intro {
  background: #13161e;
}
#ap-main .ap-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #d4d6dc;
  margin-bottom: 18px;
}
#ap-main .ap-lead--en {
  color: #6b7280;
  font-size: 15px;
  font-style: italic;
  border-left: 2px solid rgba(255, 164, 0, 0.3);
  padding-left: 16px;
}
#ap-main .ap-quote {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255, 164, 0, 0.06);
  border-left: 3px solid #ffa400;
  border-radius: 0 14px 14px 0;
  font-size: 15px;
  color: #ffbd47;
  font-style: italic;
}
#ap-main .ap-quote span {
  margin-right: 8px;
  font-style: normal;
}
#ap-main .ap-two-col .ap-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  #ap-main .ap-two-col .ap-section__inner {
    grid-template-columns: 1fr;
  }
}
#ap-main .ap-block__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
#ap-main .ap-block h2 {
  font-size: clamp(22px, 3.5vw, 30px);
}
#ap-main .ap-list {
  list-style: none;
  margin: 14px 0 20px;
}
#ap-main .ap-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#ap-main .ap-list li:last-child {
  border-bottom: none;
}
#ap-main .ap-list li::before {
  content: '·';
  position: absolute;
  left: 5px;
  color: #ffa400;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
#ap-main .ap-list--check li::before {
  content: '✓';
  font-size: 12px;
  line-height: 2.2;
}
#ap-main .ap-badge {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(255, 164, 0, 0.07);
  border: 1px solid rgba(255, 164, 0, 0.2);
  border-radius: 8px;
  font-size: 14px;
  color: #ffbd47;
}
#ap-main .ap-badge--gold {
  background: rgba(255, 164, 0, 0.1);
  border-color: rgba(255, 164, 0, 0.3);
  font-weight: 500;
}
#ap-main .ap-tagline {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin-top: 16px;
}
#ap-main .ap-what {
  background: #13161e;
}
#ap-main .ap-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 768px) {
  #ap-main .ap-cards {
    grid-template-columns: 1fr;
  }
}
#ap-main .ap-card {
  background: #1a1e2a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color .25s;
}
#ap-main .ap-card:hover {
  border-color: rgba(255, 164, 0, 0.4);
}
#ap-main .ap-card__icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
#ap-main .ap-card h3 {
  font-family: "Piazzolla", serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}
#ap-main .ap-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
#ap-main .ap-two-lines {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
#ap-main .ap-two-lines span {
  font-size: 14px;
  color: #ffa400;
  font-style: italic;
}
#ap-main .ap-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 768px) {
  #ap-main .ap-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#ap-main .ap-values__note {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin-top: 8px;
}
#ap-main .ap-value {
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: border-color .25s;
}
#ap-main .ap-value:hover {
  border-color: rgba(255, 164, 0, 0.35);
}
#ap-main .ap-value span {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}
#ap-main .ap-value strong {
  font-size: 14px;
  font-weight: 500;
  color: #d4d6dc;
}
#ap-main .ap-diaspora {
  background: #13161e;
}
#ap-main .ap-diaspora__highlight {
  margin-top: 24px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(111, 24, 183, 0.1) 0%, rgba(255, 164, 0, 0.06) 100%);
  border: 1px solid rgba(255, 164, 0, 0.2);
  border-radius: 22px;
}
#ap-main .ap-diaspora__highlight p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 12px;
}
#ap-main .ap-diaspora__highlight strong {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.4;
  display: block;
}
#ap-main .ap-cta {
  background: #13161e;
  text-align: center;
  border-bottom: none;
}
#ap-main .ap-cta__title {
  font-family: "Piazzolla", serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
}
#ap-main .ap-cta__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
#ap-main .ap-cta__points span {
  font-size: 16px;
  color: #ffbd47;
}
#ap-main .ap-cta__final {
  font-size: 18px;
  font-style: italic;
  color: #6b7280;
  margin-bottom: 36px;
}
#ap-main .ap-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
#ap-main .ap-cta__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#ap-main .ap-info {
  padding: 48px 0;
  text-align: center;
}
#ap-main .ap-info__box {
  display: inline-block;
  padding: 24px 36px;
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  text-align: left;
}
#ap-main .ap-info__box p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #6b7280;
}
#ap-main .ap-info__box p:last-child {
  margin: 0;
}
#ap-main .ap-info__box p i {
  color: #ffa400;
  margin-right: 8px;
}
