
*,
*::before,
*::after{box-sizing:border-box;}

body{
  margin:0;
  font-family:"Roboto",Arial,sans-serif;
  background:#050816;
  color:#e5e7eb;
}

a{text-decoration:none;color:inherit;}

main{min-height:60vh;}

.lp-container{
  max-width:1180px;
  margin:0 auto;
  padding:1.5rem;
}

/* Header */
.lp-header{
  position:sticky;
  top:0;
  z-index:50;
  width:100%;
  background:#050816dd;
  backdrop-filter:blur(10px);
  border-bottom:1px solid #111827;
}
.lp-header-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0.9rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.lp-header-logo{
  font-size:1rem;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
}
.lp-nav{
  display:flex;
  gap:1.2rem;
  align-items:center;
}
.lp-nav a{
  font-size:0.9rem;
  color:#cbd5f5;
  opacity:0.85;
}
.lp-nav a:hover{opacity:1;}
.lp-nav-lang{
  padding:0.18rem 0.75rem;
  border-radius:999px;
  border:1px solid #4b5563;
  font-size:0.8rem;
}
.lp-header-cta{
  display:inline-flex;
  align-items:center;
  padding:0.5rem 1rem;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:500;
  background:linear-gradient(135deg,#f97316,#ec4899);
  color:#fff;
  box-shadow:0 8px 20px rgba(236,72,153,0.3);
}

/* Burger / mobile menu */
.lp-burger{
  display:none;
  width:30px;
  height:22px;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}
.lp-burger span{
  display:block;
  height:3px;
  width:100%;
  border-radius:6px;
  background:#e5e7eb;
  transition:0.3s;
}
.lp-mobile-menu{
  display:none;
  background:#020617;
  border-bottom:1px solid #111827;
  padding:0.8rem 1.5rem 1.3rem;
}
.lp-mobile-menu a{
  display:block;
  font-size:0.95rem;
  color:#cbd5f5;
  opacity:0.9;
  margin-bottom:0.7rem;
}
.lp-mobile-menu a:hover{opacity:1;}

/* Hero & sections */
.lp-hero{
  padding:2.5rem 0 2rem;
}
.lp-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1.4fr);
  gap:2.3rem;
  align-items:center;
}
.lp-hero-kicker,
.lp-section-kicker{
  font-size:0.8rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#9ca3af;
  margin-bottom:0.5rem;
}
.lp-hero-title{
  font-size:2.1rem;
  margin:0 0 0.6rem;
  color:#fff;
}
.lp-hero-sub{
  font-size:1rem;
  color:#9ca3af;
  line-height:1.7;
}
.lp-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:0.45rem;
  margin-top:1rem;
}
.lp-pill{
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.7);
  padding:0.25rem 0.8rem;
  font-size:0.8rem;
  color:#e5e7eb;
}

.lp-btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.9rem;
  margin-top:1.4rem;
}
.lp-btn-primary,
.lp-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:0.75rem 1.5rem;
  font-size:0.9rem;
  font-weight:500;
  border:1px solid transparent;
  cursor:pointer;
}
.lp-btn-primary{
  background:linear-gradient(135deg,#f97316,#ec4899);
  color:#fff;
  box-shadow:0 12px 30px rgba(236,72,153,0.35);
}
.lp-btn-secondary{
  background:transparent;
  border-color:#4b5563;
  color:#e5e7eb;
}

.lp-card{
  border-radius:1.1rem;
  padding:1.2rem;
  background:radial-gradient(circle at top,#0b1120,#020617 70%);
  border:1px solid rgba(51,65,85,0.95);
  font-size:0.9rem;
}
.lp-card h3{
  margin:0 0 0.5rem;
  font-size:1rem;
  color:#fff;
}
.lp-card p{
  margin:0;
  color:#9ca3af;
  line-height:1.6;
}
.lp-card ul{
  margin:0.5rem 0 0;
  padding-left:1.1rem;
  color:#9ca3af;
}
.lp-card li{margin-bottom:0.25rem;}

.lp-section{
  padding:2.4rem 0;
  border-top:1px solid #111827;
}
.lp-section-title{
  margin:0;
  font-size:1.6rem;
  color:#fff;
}
.lp-section-desc{
  margin-top:0.5rem;
  font-size:0.95rem;
  color:#9ca3af;
  line-height:1.75;
  max-width:52rem;
}

.lp-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.2rem;
  margin-top:1.3rem;
}

/* Showreel */
.lp-showreel{
  padding-top:2.5rem;
  padding-bottom:2.5rem;
}
.lp-showreel video{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:1rem;
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
  margin-top:1.2rem;
}

/* Clients panel */
.lp-clients{
  padding-top:2.5rem;
  padding-bottom:2.5rem;
}
.lp-clients-image-wrapper{
  margin-top:1.5rem;
  display:flex;
  justify-content:center;
}
.lp-clients-image-wrapper img{
  max-width:100%;
  height:auto;
  border-radius:1rem;
  box-shadow:0 10px 30px rgba(0,0,0,0.45);
  background:#fff;
}

/* Carousel vidéos */
.lp-video-carousel{
  padding-top:2.5rem;
  padding-bottom:2.5rem;
}
.lp-video-strip{
  margin-top:1.4rem;
  display:flex;
  align-items:center;
  gap:0.6rem;
}
.lp-video-track-wrapper{
  overflow:hidden;
  flex:1;
}
.lp-video-track{
  display:flex;
  gap:0.8rem;
  transition:transform 0.3s ease;
}
.lp-video-item{
  min-width:200px;
  max-width:220px;
  background:#020617;
  border-radius:0.9rem;
  border:1px solid #1f2937;
  padding:0.7rem 0.9rem;
  text-align:left;
  cursor:pointer;
}
.lp-video-item-title{
  font-size:0.9rem;
  color:#f9fafb;
  margin-bottom:0.25rem;
}
.lp-video-item-tag{
  font-size:0.8rem;
  color:#9ca3af;
}
.lp-video-arrow{
  background:#020617;
  border-radius:999px;
  border:1px solid #1f2937;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:1.1rem;
  color:#e5e7eb;
}
.lp-video-arrow:disabled{
  opacity:0.3;
  cursor:default;
}

/* Modal vidéo */
.lp-video-modal{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  padding:1rem;
  z-index:100;
}
.lp-video-modal.open{display:flex;}
.lp-video-modal-inner{
  max-width:960px;
  width:100%;
}
.lp-video-modal-inner video{
  width:100%;
  height:auto;
  border-radius:1rem;
  box-shadow:0 20px 40px rgba(0,0,0,0.7);
}
.lp-video-modal-close{
  position:absolute;
  top:1.2rem;
  right:1.4rem;
  font-size:1.8rem;
  color:#e5e7eb;
  cursor:pointer;
}

/* CTA global + footer */
.lp-cta-global{
  background:linear-gradient(135deg,#0f172a 0%,#020617 70%);
  border-top:1px solid #1f2937;
  padding:2.6rem 1.5rem 2.1rem;
}
.lp-cta-inner{
  max-width:1180px;
  margin:0 auto;
  text-align:center;
}
.lp-cta-inner h2{
  margin:0 0 0.7rem;
  font-size:1.7rem;
  color:#fff;
}
.lp-cta-inner p{
  margin:0 auto 1.4rem;
  max-width:48rem;
  font-size:0.95rem;
  color:#9ca3af;
  line-height:1.7;
}
.lp-cta-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.9rem;
}

.lp-contact-form-section{
  padding-top:1rem;
  padding-bottom:2.4rem;
}
.lp-form{margin-top:1.3rem;}
.lp-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}
.lp-form-field{
  display:flex;
  flex-direction:column;
  gap:0.3rem;
  margin-bottom:1rem;
}
.lp-form-field label{
  font-size:0.85rem;
  color:#9ca3af;
}
.lp-form-field input,
.lp-form-field textarea{
  background:#020617;
  border:1px solid #1f2937;
  border-radius:0.6rem;
  padding:0.55rem 0.75rem;
  font-family:inherit;
  font-size:0.9rem;
  color:#e5e7eb;
}
.lp-form-field input:focus,
.lp-form-field textarea:focus{
  outline:none;
  border-color:#ec4899;
}

.lp-footer-main{
  background:#020617;
  border-top:1px solid #111827;
  padding:2.4rem 1.5rem 1.8rem;
  font-size:0.9rem;
  color:#9ca3af;
}
.lp-footer-inner{
  max-width:1180px;
  margin:0 auto;
}
.lp-footer-grid{
  display:grid;
  grid-template-columns:2fr 1.5fr 1.5fr 1.5fr;
  gap:1.6rem;
}
.lp-footer-logo{
  font-size:1rem;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:0.5rem;
  color:#f9fafb;
}
.lp-footer-title{
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.16em;
  color:#e5e7eb;
  margin:0 0 0.6rem;
}
.lp-footer-list{
  list-style:none;
  padding:0;
  margin:0;
}
.lp-footer-list li{margin-bottom:0.3rem;}
.lp-footer-list a{color:#9ca3af;}
.lp-footer-contact{font-size:0.9rem;line-height:1.7;}
.lp-footer-bottom{
  margin-top:2rem;
  padding-top:1rem;
  border-top:1px solid #111827;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:0.6rem;
  font-size:0.78rem;
  color:#6b7280;
}
.lp-footer-bottom a{color:#9ca3af;}

/* Responsive */
@media(max-width:1024px){
  .lp-hero-grid{grid-template-columns:1fr;}
}
@media(max-width:960px){
  .lp-grid-3{grid-template-columns:1fr;}
  .lp-footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:880px){
  .lp-nav{display:none;}
  .lp-burger{display:flex;}
}
@media(max-width:800px){
  .lp-form-grid{grid-template-columns:1fr;}
}
@media(max-width:720px){
  .lp-footer-grid{grid-template-columns:1fr;}
}
