:root{
  --bg:#000000;
  --bg-soft:#030303;
  --card:#030303;
  --text:#e8e8ef;
  --muted:#a3a3b2;
  --accent:#bb0000;
  --glass:rgba(16, 17, 31, 0.06);
  --border:rgba(255,255,255,0.12);
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --radius: 18px;
  --radius-lg: 26px;
  --blur: 10px;
  --gap: 16px;
}

*{box-sizing:border-box}
html,body{height:100%}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body{
  margin:0;
  padding:0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height:1.5;
  letter-spacing:.2px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://jester.lifestyle/images/grain.png?1-);
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.6;
  pointer-events: none;
  z-index: 5;
}


body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 1200px 600px at 20% 30%, rgba(187,0,0,0.12) 0%, rgba(187,0,0,0.06) 30%, transparent 60%),
    radial-gradient(ellipse 900px 450px at 80% 70%, rgba(187,0,0,0.10) 0%, rgba(187,0,0,0.04) 30%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 50% 20%, rgba(187,0,0,0.08) 0%, rgba(187,0,0,0.03) 30%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  animation: 
    fluidDriftX 45s linear infinite,
    fluidDriftY 37s linear infinite reverse,
    fluidScale 52s ease-in-out infinite,
    fluidRotate 41s linear infinite;
  filter: blur(40px);
  will-change: transform, filter;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

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

@keyframes fluidDriftY {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-80px); }
}

@keyframes fluidScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes fluidRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.fluid-blob-1 {
  position: fixed;
  top: 10%;
  left: 15%;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(187,0,0,0.15) 0%, rgba(187,0,0,0.08) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: 
    blob1X 38s linear infinite,
    blob1Y 43s linear infinite reverse,
    blob1Scale 35s ease-in-out infinite,
    blob1Rotate 47s linear infinite;
  filter: blur(60px);
  will-change: transform, filter;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.fluid-blob-2 {
  position: fixed;
  top: 60%;
  right: 20%;
  width: 350px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(187,0,0,0.12) 0%, rgba(187,0,0,0.06) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: 
    blob2X 42s linear infinite reverse,
    blob2Y 39s linear infinite,
    blob2Scale 48s ease-in-out infinite,
    blob2Rotate 44s linear infinite;
  filter: blur(50px);
  will-change: transform, filter;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.fluid-blob-3 {
  position: fixed;
  bottom: 20%;
  left: 30%;
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(187,0,0,0.10) 0%, rgba(187,0,0,0.05) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: 
    blob3X 46s linear infinite,
    blob3Y 41s linear infinite reverse,
    blob3Scale 37s ease-in-out infinite,
    blob3Rotate 49s linear infinite;
  filter: blur(45px);
  will-change: transform, filter;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes blob1X {
  0% { transform: translateX(0px); }
  100% { transform: translateX(80px); }
}

@keyframes blob1Y {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-60px); }
}

@keyframes blob1Scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes blob1Rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes blob2X {
  0% { transform: translateX(0px); }
  100% { transform: translateX(-70px); }
}

@keyframes blob2Y {
  0% { transform: translateY(0px); }
  100% { transform: translateY(50px); }
}

@keyframes blob2Scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes blob2Rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes blob3X {
  0% { transform: translateX(0px); }
  100% { transform: translateX(60px); }
}

@keyframes blob3Y {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-40px); }
}

@keyframes blob3Scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

@keyframes blob3Rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.no-scrollbar::-webkit-scrollbar{width:10px}
.no-scrollbar::-webkit-scrollbar-thumb{background:var(--border);border-radius:8px}

.main-header {
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 24px 14px 24px;
  gap: 100px;
}

.mobile-title {
  display: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-title:hover {
  color: var(--accent);
}

.main-header .logo {
  height: 60px;
  max-height: 60px;
  object-fit: contain;
}

.navbar {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.nav-link[href="femmes.html"]:hover,
.footer-link[href="femmes.html"]:hover {
  color: #fe8aff !important;
}

.nav-link[href="hommes.html"]:hover,
.footer-link[href="hommes.html"]:hover {
  color: #8ab1ff !important;
}


@media (max-width: 640px) {
  .navbar { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .nav-link { flex: 1 1 auto; text-align: center; }
}

.container{
  padding: clamp(24px, 4vw, 48px);
  display:flex;
  align-items:center;
  flex-direction:column;
  justify-content: center;
}

.men-span { color: #8ab1ff; }
.women-span { color: #fe8aff; }

.hero{
  text-align:center;
}
.hero h1{
  font-size: clamp(42px, 7vw, 88px);
  letter-spacing: .5px;
  margin:0;
  font-weight:800;
}
.hero h1 span{
  background: #ffff;
  -webkit-background-clip:text; background-clip:text; color: transparent;
}
.hero p{
  margin:8px 0 0 0;
  color: var(--muted);
  font-size:clamp(16px,2.2vw,20px);
}

.choices{
  display:grid;
  grid-template-columns: repeat(2, minmax(220px, 360px));
  gap: clamp(24px, 4vw, 40px);
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.card.choice{
  display:grid;
  place-items:center;
  text-decoration:none;
  height: clamp(600px, 20vw, 220px);
  border-radius: var(--radius-lg);
  position:relative;
  overflow:hidden;
  transform: translateY(0) scale(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.card.choice::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(600px 300px at 10% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(600px 300px at 90% 90%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(to bottom right, rgba(255,255,255,.08), rgba(255,255,255,.02));
  pointer-events:none;
}
.choice:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(187,0,0,0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(187,0,0,0.2);
}
.label{
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.glass{
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.back {
  position: fixed;
  top: 14px;
  left: 20px;
  z-index: 1001;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

@media (max-width: 768px) {
  .back {
    display: none;
  }
}

.back:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.icon{ width:22px; height:22px; fill:none; stroke: var(--text); stroke-width:2; }

.section-head {
  padding: 96px 24px 12px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-head {
    padding: 30px 24px 12px;
  }
}

.section-head h2{
  font-size: clamp(28px, 5vw, 48px);
  margin:0;
}
.section-head .muted{
  color: var(--muted);
  margin-top: 8px;
}

.gallery{
  max-width: 1400px;
  margin: 16px auto 120px;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}
.chunk{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
}
.card{
  border-radius: var(--radius);
  overflow: hidden;
  position:relative;
  isolation:isolate;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.22); }
.thumb{
  width: 100%;
  aspect-ratio: 3/4; 
  object-fit: cover;
  image-rendering: auto;
  display:block;
  filter: saturate(.98);
}
.caption{
  position:absolute; bottom: 8px; right: 10px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.17);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: .9rem;
}

.lightbox{
  position: fixed; inset:0;
  background: rgb(0 0 0 / 94%);
  display:none;
  align-items:center; justify-content:center;
  z-index:100;
  animation: fade .25s ease both;
}
.lightbox.open{ display:flex; }
.lightbox img{
  max-width: 92vw; max-height: 92vh;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.fade-in{
  opacity:0; transform: translateY(20px);
  will-change: opacity, transform;
}
.fade-in.in{ 
  opacity:1; 
  transform: translateY(0); 
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-immediate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade{ from{opacity:0} to{opacity:1} }

.credits {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .credits {
    display: none;
  }
}



@media (max-width: 640px){
  .choices{ grid-template-columns: 1fr; }
  .back{ top: 14px; left: 14px; width:42px; height:42px }
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.card.glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  filter: blur(3px) brightness(0.3) contrast(1.05); 
  transition: filter 0.35s ease, transform 0.35s ease;
}

.card.glass:hover img {
  filter: blur(3px) brightness(0.4) contrast(1.05);
  transform: scale(1.02);
}

.card.glass .overlay-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Great Vibes', cursive;
  color: #fff;
  font-size: 3rem; 
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 1px;
}

.filter-section {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: nowrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--blur));
  background: var(--glass);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.08);
}

.filter-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

@media (max-width: 480px) {
  .filter-section {
    flex-wrap: wrap;        
    gap: 12px;              
  }
  
  .filter-btn {
    flex: 1 1 45%;          
    text-align: center;     
    padding: 10px 0;       
  }
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px; 
  flex-wrap: wrap;
  padding: 0 24px 24px 24px;
}

.hero-section .hero-text {
  flex: 0 0 45%; 
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  text-align: center;
  align-items: center;
}

.hero-section .hero-text h2 {
  font-size: clamp(24px, 2.5vw, 32px); 
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-section .hero-text p {
  font-size: clamp(14px, 1.6vw, 18px); 
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0;
}

.hero-section .hero-image {
  flex: 0 0 40%; 
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}

.hero-section .hero-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.hero-carousel-section {
  display: flex;
  justify-content: center;
  padding: 0 24px 48px 24px;
}

@media (min-width: 769px) {
  .hero-carousel-section {
    padding-top: 10px;
  }
}

.hero-carousel-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  flex-direction: row;
  gap: 16px;
  animation: scrollCarousel 20s linear infinite;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 120px;
  width: 120px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}



.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}



.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 36px 24px 48px 24px;
  justify-content: center; 
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 8px;
}

.team-member img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.team-member .name {
  font-weight: 600;
}

.team-member .role {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .team-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 0px; 
    justify-items: center; 
  }

  .team-member {
    width: 100%; 
    max-width: 160px;
    margin: 0px;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
    margin-bottom: 2px;
  }
  
  .team-member .name {
    font-size: 0.9rem;
    margin-bottom: 1px;
  }
  
  .team-member .role {
    font-size: 0.8rem;
  }
}

.cta-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 24px 24px 64px 24px;
  height: 250px;
  align-items: center;
}

.cta-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  height: 160px;
}

.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.cta-card .cta-text {
  flex: 1;
}

.cta-card .cta-text h3 {
  margin-bottom: 8px;
  margin-top: 0;
  font-size: clamp(16px, 1.8vw, 18px);
}

.cta-card .cta-text p {
  color: var(--muted);
  margin-bottom: 12px;
  margin-top: 0;
  font-size: clamp(12px, 1.3vw, 14px);
}

.cta-card .cta-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
  display: inline-block;
  font-size: clamp(12px, 1.3vw, 14px);
}

.cta-card .cta-btn:hover {
  background: transparent;
  color: var(--accent);
}

.cta-card.reverse {
  flex-direction: row-reverse;
}


@media (max-width: 1024px) {
  .hero-section { justify-content: center; }
  .hero-section .hero-image { justify-content: center; }
}

@media (max-width: 640px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .hero-section {
    padding: 48px 12px 24px 12px;
    flex-wrap: nowrap;
  }
  
  .hero-section .hero-text {
    min-width: auto;
    flex: 1;
  }
  
  .hero-section .hero-image {
    flex: 1;
  }
  
  .hero-section   .hero-text p {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 400;
  }
  
  .hero-section, .cta-section, .team-section {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .faq-section {
    padding: 24px 12px 32px 12px;
  }
  
  .faq-container {
    max-width: 100%;
    gap: 6px;
  }
  
  .faq-question {
    padding: 10px 16px;
  }
  
  .faq-question h3 {
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 400;
  }
  
  .faq-icon {
    font-size: 16px;
  }
  
  .faq-answer p {
    padding: 0 16px 10px 16px;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.4;
  }
  
  .map-section {
    padding: 24px 0px 32px 0px !important;
  }
  
  .map-container {
    max-width: 100%;
  }
  
  .map-container img {
    max-width: 100%;
  }

  .hero-section .hero-text, .hero-section .hero-image {
    text-align: center;
  }

  .hero-carousel-section {
    padding: 0 12px 32px 12px;
  }

  .hero-carousel-container {
    max-width: 100%;
    height: 150px;
  }

  .carousel-item {
    flex: 0 0 80px;
    width: 80px;
    height: 120px;
  }

  .cta-card {
    flex-direction: column;
    max-width: 320px;
  }

  .cta-card.reverse {
    flex-direction: column;
  }
  
  .cta-section {
    padding: 24px 12px 32px 12px;
    flex-direction: column;
    height: auto;
  }
  
  .cta-card {
    width: 100%;
    max-width: 320px;
  }
  
  .team-section {
    padding: 24px 12px 32px 12px;
  }
  
  .reviews-section {
    padding: 24px 24px 15px 24px !important;
  }
  
  .reviews-container {
    max-width: 100%;
    height: 110px;
    margin: 0 auto;
  }
  
  .review-card {
    flex: 0 0 200px;
    padding: 8px 14px;
    height: fit-content;
    min-height: auto;
  }
  
  .review-card .stars {
    font-size: 14px;
    margin-bottom: 4px;
    color: #ffd700;
  }
  
  .review-card h3 {
    font-size: clamp(13px, 3vw, 15px);
    margin-bottom: 4px;
  }
  
  .review-card p {
    font-size: clamp(10px, 2.6vw, 12px);
    line-height: 1.3;
  }
  
  
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 24px 48px 24px;
}

.map-section {
  display: flex;
  justify-content: center;
  padding: 48px 24px 64px 24px;
}
.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.map-container img {
  display: block;
  margin: 0 auto;         
  width: 100%;            
  max-width: 900px;       
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.map-container .map-text {
  position: absolute;
  bottom: 12px;
  right: 24px;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.section-title {
  margin-top: 48px;
  margin-bottom: 24px;
}

.reviews-section {
  display: flex;
  justify-content: center;
  padding: 24px 24px 30px 24px;
}

.reviews-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  height: 120px;
  mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}


.reviews-carousel {
  display: flex;
  gap: 20px;
  animation: scrollReviews 20s linear infinite;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.review-card {
  flex: 0 0 220px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  height: fit-content;
  min-height: auto;
}

.review-card.active {
  opacity: 1;
}

.review-card .stars {
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.review-card h3 {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px 0;
}

.review-card p {
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.reviews-container:hover .reviews-carousel {
  animation-play-state: paused;
}

.faq-section {
  display: flex;
  justify-content: center;
  padding: 36px 24px 48px 24px;
}

.faq-container {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.faq-question h3 {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: var(--text);
}

.faq-icon {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 12px 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: clamp(12px, 1.4vw, 14px);
}

.hero-section.fade-in,
.cta-section.fade-in,
.map-section.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-section.fade-in.in,
.cta-section.fade-in.in,
.map-section.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}

.team-section.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-section.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}

.team-member {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-section.fade-in.in .team-member {
  opacity: 1;
  transform: translateY(0);
}

.team-section.fade-in.in .team-member:nth-child(1) { transition-delay: 0.1s; }
.team-section.fade-in.in .team-member:nth-child(2) { transition-delay: 0.2s; }
.team-section.fade-in.in .team-member:nth-child(3) { transition-delay: 0.3s; }
.team-section.fade-in.in .team-member:nth-child(4) { transition-delay: 0.4s; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: none;
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.8);
  animation: closeBtnFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes closeBtnFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mobile-close-btn:hover {
  transform: scale(1.1);
}

.mobile-close-btn span {
  display: block;
  height: 2px;
  width: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-close-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar.active .mobile-close-btn {
  display: block;
}

.navbar.active .nav-link {
  padding: 12px 24px;
  margin: 0 !important;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  width: auto;
  min-width: 120px;
  max-width: 200px;
  line-height: 1.4;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.navbar.active .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.navbar.active .nav-link:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.navbar.active .nav-link:hover::before {
  left: 100%;
}

.navbar {
  display: flex;
  gap: 28px;
}

.navbar.active {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border: none;
  box-shadow: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20px);
  animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.active .nav-links-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  animation: linksFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.navbar.active .mobile-title {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  margin: 0;
  opacity: 1;
  transform: none;
  z-index: 1;
}

.navbar.active .mobile-title::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -8px;
  right: -8px;
  bottom: -4px;
  background-image: url(https://jester.lifestyle/images/grain.png?1-);
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
  border-radius: 6px;
}

@keyframes linksFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(https://jester.lifestyle/images/grain.png?1-);
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.navbar.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(187, 0, 0, 0.15) 0%, rgba(187, 0, 0, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: 
    fluidDriftX 45s linear infinite,
    fluidDriftY 37s linear infinite reverse,
    fluidScale 52s ease-in-out infinite,
    fluidRotate 41s linear infinite;
  filter: blur(40px);
}

@media (max-width: 768px) {
  .main-header {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
    padding: 20px 20px !important;
  }
  
  .mobile-title {
    display: block;
    order: 1;
  }
  
  .navbar {
    display: none;
    width: 100%;
  }
  
  .burger {
    display: flex;
    order: 3;
  }
  
  .navbar.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    box-shadow: none;
    flex-direction: column;
    padding: 0;
    gap: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .cta-card {
    flex-direction: column;
    text-align: center;
  }
  .cta-card img {
    max-width: 100%;
  }
  .hero-text h2 {
    font-size: clamp(32px, 8vw, 48px);
  }
  .hero-text p {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
  }
}

.tarifs-table {
  overflow-x: auto;
  margin-top: 32px;
}

.tarifs-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}

.tarifs-table th,
.tarifs-table td {
  padding: 12px 16px;
  text-align: left;
}

.tarifs-table thead {
  border-bottom: 2px solid var(--border);
}

.tarifs-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}

.tarifs-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tarifs-table th {
  font-weight: 600;
  color: var(--text);
}

.tarifs-table td {
  color: var(--muted);
}

@media (max-width: 640px) {
  .tarifs-table th,
  .tarifs-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

.tarifs-section {
  display: flex;
  justify-content: center;
  padding: 36px 24px 48px 24px;
}

.tarifs-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tarifs-container-two-columns {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
}

.tarifs-container-two-columns::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent 0%, rgba(187, 0, 0, 0.3) 20%, rgba(187, 0, 0, 0.5) 50%, rgba(187, 0, 0, 0.3) 80%, transparent 100%);
}

.tarifs-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column-main-title {
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
  padding: 0;
  letter-spacing: 1px;
}

.tarif-category {
  margin-bottom: 24px;
}

.tarif-category .tarif-row {
  margin-bottom: 8px;
}

.tarif-category .tarif-row:last-child {
  margin-bottom: 0;
}

.tarif-category-title {
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  margin: 0 0 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(187, 0, 0, 0.3);
}

.tarif-row.special {
  background: rgba(187, 0, 0, 0.1);
  border-color: rgba(187, 0, 0, 0.3);
}

.tarif-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tarif-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.tarif-name {
  font-weight: 400;
  color: var(--text);
}

.tarif-price {
  font-weight: 400;
}

@media (max-width: 640px) {
  .tarifs-container-two-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .tarifs-container-two-columns::before {
    display: none;
  }
  
  .tarif-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
  }
  .tarif-price {
    margin-top: 8px;
  }
  
  .tarif-category-title {
    font-size: clamp(14px, 3.5vw, 16px);
    text-align: center;
  }
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
}

.bg-color-left,
.bg-color-right {
  position: absolute;
  border-radius: 50%;
  filter: blur(6.5vw);
  z-index: 0; 
  pointer-events: none; 
  animation: float 8s ease-in-out infinite;
  will-change: transform, filter;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.bg-color-left {
  background: radial-gradient(circle, rgba(187, 0, 0, 0.15) 0%, rgba(187, 0, 0, 0.05) 50%, transparent 100%);
  width: 30vw;
  max-width: 863px;
  height: 70vw;
  max-height: 923px;
  top: 0;
  left: 0;
  transform: rotate(22deg);
  animation: float 8s ease-in-out infinite, colorPulse 12s ease-in-out infinite;
  animation-delay: 0s;
}

.bg-color-right {
  background: radial-gradient(circle, rgba(187, 0, 0, 0.15) 0%, rgba(187, 0, 0, 0.05) 50%, transparent 100%);
  width: 30vw;
  max-width: 863px;
  height: 70vw;
  max-height: 923px;
  bottom: 0;
  right: 0;
  transform: rotate(22deg);
  animation: float 8s ease-in-out infinite, colorPulse 12s ease-in-out infinite;
  animation-delay: 4s;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  display: none;
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 12s linear infinite;
}

.particle:nth-child(odd) {
  animation-duration: 15s;
  background: rgba(187, 0, 0, 0.4);
}

.particle:nth-child(even) {
  animation-duration: 18s;
  background: rgba(255, 255, 255, 0.2);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(22deg); }
  50% { transform: translateY(-20px) rotate(22deg); }
}

@keyframes colorPulse {
  0%, 100% { 
    background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(187, 0, 0, 0.15) 0%, rgba(187, 0, 0, 0.08) 40%, transparent 70%);
    transform: rotate(22deg) scale(1) translateX(0px) translateY(0px);
  }
  25% { 
    background: radial-gradient(ellipse 700px 500px at 40% 60%, rgba(187, 0, 0, 0.15) 0%, rgba(187, 0, 0, 0.08) 40%, transparent 70%);
    transform: rotate(25deg) scale(1.1) translateX(10px) translateY(-5px);
  }
  50% { 
    background: radial-gradient(ellipse 500px 350px at 60% 40%, rgba(187, 0, 0, 0.15) 0%, rgba(187, 0, 0, 0.08) 40%, transparent 70%);
    transform: rotate(19deg) scale(0.9) translateX(-5px) translateY(8px);
  }
  75% { 
    background: radial-gradient(ellipse 650px 450px at 45% 55%, rgba(187, 0, 0, 0.15) 0%, rgba(187, 0, 0, 0.08) 40%, transparent 70%);
    transform: rotate(24deg) scale(1.05) translateX(8px) translateY(-3px);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}


.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(187, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(187, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.main-footer {
  background: rgba(0, 0, 0, 0.425);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
  padding: 16px 24px;
  margin-top: 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-info h4 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.footer-info p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 2px 0;
  line-height: 1.2;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s ease;
  display: block;
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-brand-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-brand-link:hover {
  color: var(--accent);
}

.footer-link.active {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .main-footer {
    padding: 12px 16px;
  }
  
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
  }
  
  .team-section {
    padding-top: 0;
  }
  
  .cta-section {
    padding-top: 0;
  }
  
  .map-section {
    padding-top: 0;
  }
  
  .tarifs-section {
    padding-top: 0;
  }
}

.hero-buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.hero-button {
  position: relative;
  border-radius: 72px;
  padding: 8px 30px;
  cursor: pointer;
  overflow: visible;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.glow-button {
  background: #000000;
  border: none;
  box-shadow: none;
}

.glass-button {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.4);
}


.button-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-buttons-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@keyframes outlineSweep {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: rotate(270deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}


.section-title {
  text-align: center;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(14px,1.6vw,18px);
  margin-top: 24px;
}


.fixed-join-button {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  background: transparent !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  color: #fff !important;
  border-radius: 72px;
  padding: 8px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  max-width: calc(100vw - 40px);
  white-space: nowrap;
}

.fixed-join-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
  background: transparent !important;
}

@media (max-width: 768px) {
  .fixed-join-button {
    display: none;
  }
  
  .particles {
    display: none;
  }
  
  .grid-bg {
    opacity: 0.1;
  }
  
  body::after,
  .fluid-blob-1,
  .fluid-blob-2,
  .fluid-blob-3,
  .bg-color-left,
  .bg-color-right {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .section-title {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 400;
  }
  
  .section-title + .cta-section,
  .section-title + .team-section,
  .section-title + .tarifs-section,
  .section-title + .map-section {
    padding-top: 24px;
  }
  
  .modal-content {
    margin: 20px;
  }
  
  .modal-content iframe {
    width: 300px !important;
    height: 450px !important;
    max-width: 90vw !important;
    max-height: 80vh !important;
  }
  
  .reviews-button-container {
    padding: 14px 24px 32px 24px !important;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ff0000;
}

.modal-content iframe {
  border-radius: 10px;
  display: block;
  max-width: 90vw;
  max-height: 80vh;
}

.reviews-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 24px 48px 24px;
  margin: 0 auto;
}

.reviews-button {
  background: transparent;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.reviews-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.reviews-button-container.fade-in {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.reviews-button-container.fade-in.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-join-button.fade-in {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  will-change: opacity, transform;
}

.fixed-join-button.fade-in.in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
