:root {
  --bg: #09090c;
  --bg-soft: #121218;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-2: #13131a;
  --text: #f5f7fb;
  --muted: #b9bfd0;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #7008e7;
  --accent-2: #9a5cff;
  --white: #ffffff;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 12, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

/*.brand { display: inline-flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #22053e);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text small { color: var(--muted); font-size: 12px; }

.brand-logo{
    width:60px;
    height:60px;
    object-fit:contain;
    display:block;
    filter:
      drop-shadow(0 0 6px rgba(112,8,231,.4))
      drop-shadow(0 0 12px rgba(112,8,231,.25));
}*/

.brand{
    display:flex;
    align-items:center;
    /*gap:14px;*/
    gap:8x;
    text-decoration:none;
    
}

/*.brand-logo{
    width:58px;
    height:58px;
    object-fit:contain;
    display:block;

    filter:
      drop-shadow(0 0 6px rgba(112,8,231,.4))
      drop-shadow(0 0 12px rgba(112,8,231,.25));
}*/

.brand-logo{
    
    width:75px;
    height:75px;
    object-fit:contain;
    display:block;

    background:none;
    border:none;

    filter:
      drop-shadow(0 0 8px rgba(112,8,231,.6))
      drop-shadow(0 0 14px rgba(112,8,231,.45))
      drop-shadow(0 0 26px rgba(112,8,231,.25));
    
}
/*.brand-text{
    display:flex;
    flex-direction:column;

    position:relative;
}

.brand-text::after{
    content:"";
    width:auto;
    height:2px;
    background:#7008e7;
    margin-top:6px;
    display:block;

    box-shadow:0 0 10px rgba(112,8,231,.6);
}*/


.brand-text{
    display:flex;
    flex-direction:column;
    position: relative;
}
/* trait fondu sur les cotés
.brand-text::after{
    content:"";
    display:block;

    width:auto;
    height:1px;

    margin-top:8px;

    background:linear-gradient(
        90deg,
        transparent 0%,
        rgba(112,8,231,0.2) 10%,
        rgba(112,8,231,0.9) 50%,
        rgba(112,8,231,0.2) 90%,
        transparent 100%
    );
} */

/* trait avec halo */
.brand-text::after{
    content:"";
    display:block;

    width:auto;
    height:2px;

    margin-top:8px;

    background:linear-gradient(
        90deg,
        transparent,
        #7008e7,
        transparent
    );

    box-shadow:
        0 0 8px rgba(112,8,231,.6),
        0 0 16px rgba(112,8,231,.3);
}

/*trait discret 
.brand-text::after{
    content:"";
    display:block;

    width:auto;
    height:1px;

    margin-top:6px;

    background:linear-gradient(
        to right,
        transparent,
        #7008e7,
        transparent
    );

    opacity:.8;
}*/

.brand-title{
    color:#fff;
    font-size:1.35rem;
    /*letter-spacing:4px;
    /*font-weight:600;*/
    font-size:1.45rem;
    /*letter-spacing:3px;*/
    font-weight:700;
    
    letter-spacing: 0.06em;
    line-height:1;
}

.brand-subtitle{
    margin-top:4px;
    color:#d7b24d;
    font-size:.70rem;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a:not(.btn) { 
  color: #dadff0; font-size: 15px; 
}

.nav-links,
.nav-links:focus,
.nav-links:active,
.nav-links:hover{
    outline:none;
    background-color:transparent;
    -webkit-tap-highlight-color:transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 38px rgba(112, 8, 231, 0.28);
}
.btn-glass, .btn-outline {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-sm { min-height: 42px; padding: 0 18px; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: clip;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  /*background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80');*/
  /*background-image: url('https://a0.muscache.com/im/pictures/hosting/Hosting-U3RheVN1cHBseUxpc3Rpbmc6MTAwMTM5NTI1MDY0MzkwMTY1OQ%3D%3D/original/b1194283-9606-4e31-ab8a-ea81774fd13c.jpeg?im_w=720');*/
  background-image: url('images/magnifique\ appartement\ avec\ vue\ sur\ mer.png');
  /*background-image: url('images/bel\ appartement\ avec\ vue\ sur\ tour\ eiffel.png');*/
  background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,7,10,0.84) 0%, rgba(7,7,10,0.58) 43%, rgba(7,7,10,0.36) 100%),
    radial-gradient(circle at top right, rgba(112, 8, 231, 0.24), transparent 28%);
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
  padding: 110px 0 70px;
}

.hero-copy h1,
.section-heading h2,
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  margin: 12px 0 18px;
  max-width: 760px;
}
.hero-copy h1 span { color: #cfb3ff; }
.hero-copy p {
  max-width: 700px;
  color: #e5e8f3;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.eyebrow,
.section-kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d8c0ff;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 26px 0 0;
  color: #eaedf6;
}
.hero-points li {
  position: relative;
  padding-left: 16px;
}
.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-2);
}

.hero-card,
.offer-card,
.service-card,
.benefit-card,
.step-card,
.form-card,
.faq-item {
  background: rgba(17, 17, 24, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color:transparent;
}
.hero-card {
  padding: 28px;
  backdrop-filter: blur(5px);
}
.hero-card h2 { margin: 10px 0 12px; font-size: 1.7rem; }
.hero-card p { color: var(--muted); }
.mini-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}
.mini-stats div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}
.mini-stats strong {
  display: block;
  font-size: 1.4rem;
  color: white;
}
.mini-stats span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.trust-bar {
  background: #0d0d12;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 26px 0;
}
.trust-grid strong { display: block; margin-bottom: 6px; }
.trust-grid span { color: var(--muted); font-size: 14px; }

.section { padding: 110px 0; }
.section-dark { background: linear-gradient(180deg, #0c0c10, #09090c); }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin: 10px 0 14px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.offer-card { padding: 34px; }
.offer-card h3 { font-size: 1.8rem; margin: 10px 0 8px; }
.offer-card p, .offer-card li { color: var(--muted); }
.offer-card ul {
  margin: 24px 0 28px;
  padding-left: 18px;
}
.price-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(112, 8, 231, 0.12);
  border: 1px solid rgba(154, 92, 255, 0.24);
  color: #e4d0ff;
  font-weight: 700;
  font-size: 14px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card { padding: 28px; min-height: 200px; }
.service-card h3 { margin-top: 0; font-size: 1.2rem; }
.service-card p { color: var(--muted); }

.benefit-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card,
.step-card { padding: 28px; }
.benefit-index,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(112, 8, 231, 0.16);
  border: 1px solid rgba(154, 92, 255, 0.26);
  color: #ddbfff;
  font-weight: 800;
}
.benefit-card h3,
.step-card h3 { margin: 18px 0 10px; font-size: 1.2rem; }
.benefit-card p,
.step-card p { color: var(--muted); }

.simulator {
  background:
    linear-gradient(180deg, rgba(112,8,231,0.06), transparent 34%),
    #09090c;
}
.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.simulator-copy h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.3rem); margin: 10px 0 14px; }
.simulator-copy p { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin-top: 24px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  color: #cfb3ff;
  font-weight: 800;
}
select {
    color: white;
    background: rgba(255,255,255,0.08);
}

select option {
    color: black;
    background: white;
}
.form-card { padding: 30px; }
.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
.form-row label { font-weight: 600; font-size: 14px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: rgba(154, 92, 255, 0.56); box-shadow: 0 0 0 4px rgba(112,8,231,0.15); }
.two-cols {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-note { font-size: 13px; color: var(--muted); margin: 12px 0 0; }

.faq-list { display: grid; gap: 16px; }
.faq-item { padding: 22px 24px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); margin: 12px 0 0; }

.cta-band {
  padding: 28px 0 90px;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(112,8,231,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.cta-band h2 { margin: 10px 0 0; font-size: clamp(1.8rem, 3vw, 2.8rem); }

.site-footer {
  padding: 32px 0 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.site-footer h3 { font-size: 1rem; margin-bottom: 8px; }
.site-footer p,
.site-footer a { color: var(--muted); margin: 6px 0; }
.footer-brand { margin:auto; /*border: red 1px dashed;*/ }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

.footer{
  background:#0b0b11;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:120px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  /*padding:60px 24px 40px;*/
  flex-direction: column;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  /*border: 1px yellow dashed; */
}

.footer-logo{
  width: 80px;
  height: 80px;
  margin:0 auto;
  
  background-image: url('images/moonkeys-logo-transp.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
   border:none;

    filter:
      drop-shadow(0 0 8px rgba(112,8,231,.6))
      drop-shadow(0 0 14px rgba(112,8,231,.45))
      drop-shadow(0 0 26px rgba(112,8,231,.25));
    
      
}
.footer-line{
  width:80%;
  height:1px;
  margin:auto;
  background:linear-gradient(
        90deg,
        transparent,
        #7008e7,
        transparent
    );

    box-shadow:
        0 0 8px rgba(112,8,231,.6),
        0 0 16px rgba(112,8,231,.3);

   
}

.footer-brand h3{
  margin:0 0 12px;
  color:#fff;
  letter-spacing:2px;
}

.footer-brand p{
  margin-top:10px;
  /*max-width:500px;*/
  text-align: center;
  font-size: .7rem;
  /*color:#9ea3b0;*/
  
  line-height:1.7;
  color:#d7b24d;
}

.footer-links{
  margin: 0 auto 10px auto;
  display:flex;
  flex-direction:row;
  font-size: .7rem;
  gap:12px;
}

.footer-links a{
  color:#d7d9df;
  text-decoration:none;
  transition:.25s;
}

.footer-links a:hover{
  color:#7008e7;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  padding:24px;
}
.footer-copy{
  margin:10px auto;
  font-size: .6rem;
} 
.footer-copy p{
  color:#808595;
  font-size: .6rem;
}

.footer-contact{
  margin:10px auto;
  font-size: .6rem;
} 
.footer-contact p{
  color:#808595;
  font-size: .6rem;
}

.footer-disclaimer{
  margin:10px auto;
  max-width:900px;
  color:#808595;
  line-height:1;
  font-size: .4rem;
}
.footer-disclaimer p{ font-size: .4rem;}

.whatsapp-float{
    position: fixed;
    bottom: 18px;
    right: 20px;

    width: 64px;
    height: 64px;

    background-image: url("images/whatsapp\ icon\ png\ whatsapp\ logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 9999;
    transition: .3s;
}

.whatsapp-float:hover{
    transform: scale(1.08);
}

.whatsapp-float{
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

/*.whatsapp-float:focus,
.whatsapp-float:active{
  outline: none;
  background-color:transparent !important;
}*/

.whatsapp-float,
.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active{
    background-color: transparent !important;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:active{
    transform: scale(0.95);
}

/*.whatsapp-float img{
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-drag: none;
}*/

.whatsapp-icon{
    width:38px;
    height:38px;
    object-fit:contain;
}

.burger{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.burger span{
  width:22px;
  height:2px;
  background:#fff;
  border-radius:99px;
  -webkit-tap-highlight-color:transparent;
}

.burger,
.burger:focus,
.burger:active,
.burger:hover{
    outline:none;
    background-color:transparent;
    -webkit-tap-highlight-color:transparent;
}

.burger{
    transition:transform .15s ease;
}

.burger:active{
    transform:scale(.95);
}

/*.burger{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.burger span{
  width:22px;
  height:2px;
  background:#fff;
  border-radius:99px;
  
}*/

/* Mobile */
@media (max-width: 1080px) {
  .hero-content,
  .offer-grid,
  .simulator-grid,
  .footer-grid,
  .trust-grid,
  .benefit-grid,
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  
}


@media (max-width: 780px) {
  .nav-links a:not(.btn) { display: block; }
  .btn {font-weight: 500; text-align: center}
  .hero { min-height: auto; }
  .hero-content,
  .offer-grid,
  .simulator-grid,
  .footer-grid,
  .trust-grid,
  .benefit-grid,
  .steps-grid,
  .service-grid,
  .two-cols,
  .mini-stats,
  .cta-band-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 90px 0 50px; }
  .hero-copy h1 { font-size: 2.7rem; }
  .cta-band-inner { display: grid; }
  .section { padding: auto 0; }
  /*.brand-text::after{
    content:"";
    display:block;

    width:80%;
  }*/
}

@media (max-width: 780px) {

  .hero {
    /*min-height: 100vh;*/
        background-position:25% center; 

    }
  
  .hero-media {
    /*background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=900&q=80');*/
    /*background-image: url('https://a0.muscache.com/im/pictures/hosting/Hosting-U3RheVN1cHBseUxpc3Rpbmc6MTAwMTM5NTI1MDY0MzkwMTY1OQ%3D%3D/original/b1194283-9606-4e31-ab8a-ea81774fd13c.jpeg?im_w=720');*/
    /*background-image: url('https://images.squarespace-cdn.com/content/v1/58487dc4b8a79b6d02499b60/1732538446622-MHBANA86C9SJHICT6KU0/Francis%2BYork%2BGeoffrey%2BBenoit%2BJohn%2BTaylor%2BLuxury%2BApartment%2Bin%2BParis%2BOverlooking%2Bthe%2BEiffel%2BTower%2B%2B5.jpg');*/
    background-image: url('images/appartement\ avec\ vue\ sur\ mer\ mobile\ small.png');
    background-size: cover;
    background-position: center top;
    transform: scale(1);
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(7,7,10,0.78) 0%,
        rgba(7,7,10,0.55) 40%,
        rgba(7,7,10,0.82) 100%
      );
  }

  .hero-content {
    padding: 120px 0 60px;
    align-items: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-card {
    padding: 22px;
    backdrop-filter: blur(3px);
  }


  .whatsapp-float{
        width:60px;
        height:60px;
        bottom:18px;
        right:8px;
    }

}


.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 9, 0.72);
  backdrop-filter: blur(14px);
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  position: relative;
  width: min(100%, 460px);
  padding: 38px 30px 30px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(24,24,34,0.96), rgba(10,10,15,0.96));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  animation: modalFade .35s ease;
}

.modal-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 20px 45px rgba(112, 8, 231, 0.35);
}

.modal-box h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.modal-box p {
  margin: 0 0 24px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  
}

@media (max-width: 780px) {
  .burger {
    display: flex !important;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    display: none !important;
  }

  .nav-links.open {
    display: flex !important;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    background: rgba(9,9,12,.96);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    
    z-index: 99998;
    
  }

  .nav-links.open .btn{
      height:58px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding-top: 15px;
      /*display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      min-height:60px;
      line-height:1;
      padding:0 24px;*/
  }

  .nav-links.open a {
    display: block !important;
    width: 100%;
    text-align: center;
   
  }
}

/*@media (max-width: 780px){
  .burger{
    display:flex !important;
    position:relative;
    z-index:99999;
    width:54px;
    height:54px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:16px;
    background:rgba(255,255,255,.08);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
  }

  .burger span{
    display:block;
    width:24px;
    height:2px;
    background:white;
    border-radius:99px;
  }

  .nav{
    position:relative;
  }

  .nav-links{
    display:none !important;
  }

  .nav-links.open{
    display:flex !important;
    position:absolute;
    top:72px;
    left:0;
    right:0;
    flex-direction:column;
    padding:18px;
    background:rgba(9,9,12,.96);
    border:1px solid rgba(255,255,255,.14);
    border-radius:22px;
    z-index:99998;
  }

  .nav-links.open a{
    display:block !important;
  }
}*/