@charset "utf-8";
/* CSS Document */
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(#388da8, transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid #388da8;
  color: #388da8;
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: #388da8;;
  color: #fff;
  border-color: #388da8;;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #059652;
  color: #fff;
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/* ===== LANGUAGE SWITCHER ===== */

.lang-container{
  display:flex;
  align-items:center;
  gap:6px;
}

.lang-item{
  display:flex;
  align-items:center;
  gap:4px;
  font-weight:500;
  color:#A5A3A3;
  font-size:15px;
}

.lang-item img{
  width:16px;
  height:auto;
}

.lang-item:hover{
  color:#fe3f40;
}

.active-lang{
  color:#fe3f40;
}

.lang-separator{
  color:#999;
}

/* mobile fix */

@media (max-width:767px){

.language-switcher,
.language-switcher .lang-container{
  background:#f7f7f7 !important;
}



.lang-container{
  justify-content:right;
}

}
/* Barre noire en haut */

/* --------------------------------------------- */
/* TOP BAR : barre noire tout en haut            */
/* --------------------------------------------- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fafafa;
    padding: 8px 0;        /* Hauteur réelle ~32px */
    z-index: 9999;         /* Toujours au-dessus du header */
    border-bottom: 1px solid #e5e5e5;
}

/* Bouton dans la top bar */
.top-bar .top-login-btn {
    background: #e74c3c;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}

.top-bar .top-login-btn:hover {
    background: #c0392b;
}

/* --------------------------------------------- */
/* HEADER : se place DIRECTEMENT sous la top bar */
/* --------------------------------------------- */
.header-area {

    top: 34px;             /* Hauteur exacte de la top-bar */

    z-index: 9998;         /* Juste en dessous de la top bar */

}