:root{
  --bg:#0b0f14;
  --bg2:#101720;
  --card:#151d27;
  --line:rgba(255,255,255,0.08);
  --text:#f4f7fb;
  --muted:#b9c4d0;
  --accent:#2fd3ff;
  --accent2:#7b61ff;
  --success:#25d366;
  --shadow:0 20px 50px rgba(0,0,0,0.35);
  --radius:22px;
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:
    radial-gradient(circle at top right, rgba(47,211,255,0.12), transparent 25%),
    radial-gradient(circle at left center, rgba(123,97,255,0.10), transparent 25%),
    linear-gradient(180deg, #0a0d12 0%, #0f141b 100%);
  color:var(--text);
  line-height:1.6;
}

a{
  color:var(--accent);
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.ls-wrap{
  width:min(var(--max), calc(100% - 32px));
  margin:auto;
}

.ls-nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(8,12,18,0.75);
  border-bottom:1px solid var(--line);
}

.ls-nav-inner{
  width:min(var(--max), calc(100% - 32px));
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:20px;
}

.ls-brand{
  font-size:1.15rem;
  font-weight:800;
  color:#fff;
  letter-spacing:.3px;
}

.ls-brand span{
  color:var(--accent);
}

.ls-menu{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.ls-menu a{
  color:#eaf2fb;
  font-weight:600;
  font-size:.95rem;
}

.ls-hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.ls-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,15,0.88) 0%, rgba(7,10,15,0.72) 45%, rgba(7,10,15,0.55) 100%),
    url("https://images.unsplash.com/photo-1606144042614-b2417e99c4e3?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  z-index:-2;
}

.ls-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(47,211,255,0.25), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(123,97,255,0.18), transparent 25%);
  z-index:-1;
}

.ls-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
  padding:84px 0;
}

.ls-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(47,211,255,0.25);
  background:rgba(16,23,32,0.6);
  padding:10px 14px;
  border-radius:999px;
  color:#dff8ff;
  font-size:.92rem;
  margin-bottom:18px;
}

.ls-badge::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 16px var(--accent);
}

.ls-hero h1{
  font-size:clamp(2rem, 4vw, 4.25rem);
  line-height:1.05;
  margin:0 0 16px;
}

.ls-hero p{
  color:var(--muted);
  font-size:1.08rem;
  max-width:760px;
  margin:0 0 28px;
}

.ls-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:22px;
}

.ls-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
}

.ls-btn-primary{
  color:#071018;
  background:linear-gradient(135deg, var(--accent), #8ce8ff);
  box-shadow:0 10px 30px rgba(47,211,255,0.25);
}

.ls-btn-primary:hover{
  transform:translateY(-2px);
}

.ls-btn-secondary{
  color:#fff;
  background:rgba(255,255,255,0.04);
  border-color:rgba(255,255,255,0.10);
}

.ls-btn-secondary:hover{
  background:rgba(255,255,255,0.08);
}

.ls-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.ls-stat{
  padding:18px;
  border-radius:18px;
  background:rgba(15,21,29,0.76);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.ls-stat strong{
  display:block;
  font-size:1.3rem;
  color:#fff;
}

.ls-stat span{
  color:var(--muted);
  font-size:.92rem;
}

.ls-panel{
  background:linear-gradient(180deg, rgba(20,28,38,0.92), rgba(15,21,29,0.92));
  border:1px solid var(--line);
  border-radius:26px;
  padding:26px;
  box-shadow:var(--shadow);
}

.ls-panel h3{
  margin:0 0 14px;
  font-size:1.3rem;
}

.ls-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.ls-list li{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
  color:#e7eef7;
}

.ls-section{
  padding:76px 0;
}

.ls-section-head{
  text-align:center;
  margin-bottom:38px;
}

.ls-kicker{
  color:var(--accent);
  text-transform:uppercase;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.12em;
}

.ls-section-head h2{
  font-size:clamp(1.7rem, 3vw, 2.8rem);
  margin:10px 0 12px;
}

.ls-section-head p{
  color:var(--muted);
  max-width:800px;
  margin:auto;
}

.ls-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.ls-card{
  background:linear-gradient(180deg, rgba(21,29,39,0.95), rgba(14,20,27,0.95));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.ls-card h3{
  margin:0 0 10px;
  font-size:1.2rem;
}

.ls-card p{
  margin:0;
  color:var(--muted);
}

.ls-card ul{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.ls-highlight{
  background:linear-gradient(135deg, rgba(47,211,255,0.12), rgba(123,97,255,0.12));
  border:1px solid rgba(47,211,255,0.15);
}

.ls-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.ls-contact-box{
  background:linear-gradient(180deg, rgba(20,28,38,0.96), rgba(15,21,29,0.96));
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.ls-contact-box p{
  margin:10px 0;
  color:var(--muted);
}

.ls-map{
  overflow:hidden;
  border-radius:26px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-height:420px;
}

.ls-map iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

.ls-reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.ls-review{
  background:linear-gradient(180deg, rgba(21,29,39,0.95), rgba(14,20,27,0.95));
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.ls-stars{
  font-size:1.1rem;
  margin-bottom:10px;
}

.ls-review p{
  color:var(--muted);
  margin:0 0 12px;
}

.ls-review strong{
  color:#fff;
}

.ls-footer{
  padding:30px 0 50px;
  border-top:1px solid var(--line);
  color:var(--muted);
  text-align:center;
}

.ls-mini-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px 18px;
  margin-top:12px;
}

.ls-price-placeholder{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(47,211,255,0.08);
  border:1px dashed rgba(47,211,255,0.35);
  color:#dff8ff;
  font-weight:600;
}

.ls-service-hero{
  padding:64px 0 22px;
}

.ls-service-hero h1{
  font-size:clamp(2rem, 3.8vw, 3.4rem);
  margin:0 0 12px;
}

.ls-service-hero p{
  color:var(--muted);
  max-width:900px;
}

.ls-cta-strip{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

@media (max-width: 980px){
  .ls-hero-grid,
  .ls-grid,
  .ls-columns,
  .ls-reviews{
    grid-template-columns:1fr;
  }

  .ls-stats{
    grid-template-columns:1fr;
  }

  .ls-menu{
    gap:10px 14px;
  }

  .ls-nav-inner{
    flex-direction:column;
    align-items:flex-start;
  }
	/* ===== RESET LARGEUR WORDPRESS ===== */

.site,
.site-content,
.content-area,
.entry-content,
.wp-block-group,
.wp-block-cover,
.wp-block-columns {
  max-width:100% !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
}

body .wp-site-blocks{
  padding:0 !important;
}

/* ===== VARIABLES ===== */

:root{
  --bg:#0b0f14;
  --card:#151d27;
  --text:#f4f7fb;
  --muted:#b9c4d0;
  --accent:#2fd3ff;
  --line:rgba(255,255,255,0.08);
}

/* ===== GLOBAL ===== */

body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:#0a0d12;
  color:var(--text);
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* ===== CONTAINER FULL WIDTH ===== */

.ls-wrap{
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:0 40px;
}

/* ===== NAV ===== */

.ls-nav{
  width:100%;
  background:#000;
  position:sticky;
  top:0;
  z-index:999;
}

.ls-nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  gap:20px;
}

.ls-brand{
  color:#fff;
  font-weight:700;
  font-size:1.2rem;
}

.ls-brand span{
  color:var(--accent);
}

.ls-menu{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.ls-menu a{
  color:#fff;
  font-weight:600;
  transition:0.2s;
}

.ls-menu a:hover{
  color:var(--accent);
}

/* ===== HERO DESKTOP ===== */

.ls-hero{
  width:100%;
  min-height:80vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(7,10,18,0.65) 0%, rgba(7,10,18,0.35) 45%, rgba(7,10,18,0.65) 100%),
    url("https://images.unsplash.com/photo-1606144042614-b2417e99c4e3?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

.ls-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(47,211,255,0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(47,211,255,0.10), transparent 30%);
  pointer-events:none;
}

.ls-hero-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:60px;
  width:100%;
  position:relative;
  z-index:2;
}

.ls-badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(47,211,255,0.12);
  border:1px solid rgba(47,211,255,0.25);
  color:#dff7ff;
  margin-bottom:20px;
  font-size:0.95rem;
  font-weight:600;
}

.ls-hero h1{
  font-size:3.5rem;
  line-height:1.1;
  margin:0 0 15px;
}

.ls-hero p{
  font-size:1.2rem;
  color:var(--muted);
  margin:0 0 25px;
}

.ls-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-top:20px;
}

.ls-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}

.ls-stat{
  background:rgba(21,29,39,0.9);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
}

.ls-stat strong{
  display:block;
  font-size:1.05rem;
  margin-bottom:6px;
}

.ls-stat span{
  color:var(--muted);
  font-size:0.95rem;
}

.ls-btn{
  padding:15px 25px;
  border-radius:30px;
  font-weight:700;
  display:inline-block;
  transition:0.2s;
}

.ls-btn-primary{
  background:var(--accent);
  color:#000;
}

.ls-btn-primary:hover{
  transform:translateY(-2px);
}

.ls-btn-secondary{
  border:1px solid rgba(255,255,255,0.4);
  color:#fff;
}

.ls-btn-secondary:hover{
  background:rgba(255,255,255,0.08);
}

.ls-panel{
  background:rgba(21,29,39,0.9);
  padding:30px;
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.ls-panel h3{
  margin-top:0;
  margin-bottom:18px;
}

.ls-list{
  list-style:none;
  padding:0;
  margin:0;
}

.ls-list li{
  margin-bottom:12px;
  color:var(--muted);
}

/* ===== SECTIONS ===== */

.ls-section{
  padding:100px 0;
  width:100%;
}

.ls-section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 40px;
}

.ls-kicker{
  color:var(--accent);
  font-size:0.9rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
}

.ls-section-head h2{
  margin:0 0 14px;
  font-size:2.4rem;
}

.ls-section-head p{
  color:var(--muted);
  margin:0;
}

/* ===== GRID ===== */

.ls-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  width:100%;
}

.ls-card{
  background:var(--card);
  padding:30px;
  border-radius:18px;
  width:100%;
  border:1px solid var(--line);
  transition:0.25s;
}

.ls-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
}

.ls-card h3{
  margin-top:0;
  margin-bottom:12px;
}

.ls-card p{
  margin:0;
  color:var(--muted);
}

.ls-highlight{
  background:linear-gradient(180deg, #182330, #151d27);
}

.ls-price-placeholder{
  margin-top:18px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(47,211,255,0.08);
  border:1px dashed rgba(47,211,255,0.35);
  color:#dff7ff;
  font-size:0.95rem;
}

/* ===== REVIEWS ===== */

.ls-reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.ls-review{
  background:var(--card);
  padding:28px;
  border-radius:18px;
  border:1px solid var(--line);
}

.ls-stars{
  margin-bottom:14px;
  font-size:1.1rem;
}

.ls-review p{
  color:var(--muted);
}

/* ===== CONTACT ===== */

.ls-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  width:100%;
}

.ls-contact-box{
  background:var(--card);
  padding:30px;
  border-radius:20px;
  border:1px solid var(--line);
}

.ls-map{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
}

.ls-map iframe{
  width:100%;
  height:100%;
  min-height:400px;
  border:none;
}

.ls-cta-strip{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

/* ===== FOOTER ===== */

.ls-footer{
  text-align:center;
  padding:40px;
  width:100%;
  border-top:1px solid var(--line);
}

.ls-mini-links{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:14px;
}

.ls-mini-links a{
  color:var(--muted);
}

.ls-mini-links a:hover{
  color:var(--accent);
}

/* ===== RESPONSIVE TABLET ===== */

@media(max-width:1000px){
  .ls-grid,
  .ls-columns,
  .ls-hero-grid,
  .ls-reviews{
    grid-template-columns:1fr;
  }

  .ls-stats{
    grid-template-columns:1fr;
  }

  .ls-wrap{
    padding:0 24px;
  }

  .ls-nav-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ===== RESPONSIVE MOBILE : HERO SANS IMAGE ===== */

@media(max-width:768px){

  .ls-hero{
    min-height:auto;
    padding:80px 0;
    background:linear-gradient(180deg, #0a0d12 0%, #111823 100%) !important;
  }

  .ls-hero::before{
    display:none !important;
  }

  .ls-hero h1{
    font-size:2rem;
  }

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

  .ls-wrap{
    padding:0 20px;
  }

  .ls-menu{
    gap:14px;
  }

  .ls-section{
    padding:70px 0;
  }

  .ls-section-head h2{
    font-size:1.8rem;
  }

  .ls-panel,
  .ls-card,
  .ls-contact-box,
  .ls-review{
    padding:22px;
 }
}
/* ===== MOBILE GLOBAL : MENU IDENTIQUE SUR TOUTES LES PAGES ===== */
@media(max-width:768px){

  .ls-wrap{
    padding:0 20px;
  }

  .ls-nav-inner{
    padding:12px 20px !important;
    gap:10px !important;
  }

  .ls-menu{
    display:grid !important;
    grid-template-columns:repeat(3, max-content) !important;
    justify-content:start !important;
    column-gap:18px !important;
    row-gap:8px !important;
  }

  /* ===== HERO PLUS HAUT ===== */
  .ls-hero{
    min-height:auto !important;
    padding:12px 0 38px !important;
    margin-top:0 !important;
    background:linear-gradient(180deg, #0a0d12 0%, #111823 100%) !important;
  }

  .ls-hero::before{
    display:none !important;
  }

  .ls-hero-grid{
    gap:22px !important;
  }

  .ls-badge{
    margin-bottom:12px !important;
  }

  .ls-hero h1{
    font-size:2rem !important;
    margin:0 0 10px !important;
  }

  .ls-hero p{
    font-size:1rem !important;
    margin:0 0 16px !important;
  }

  .ls-actions{
    margin-top:12px !important;
  }

  .ls-stats{
    margin-top:18px !important;
  }

  /* ===== PREMIERE SECTION PLUS PROCHE DU HAUT ===== */
  .ls-section{
    padding:52px 0 !important;
  }

  .ls-section:first-of-type{
    padding-top:12px !important;
  }

  .entry-content,
  .wp-block-post-content,
  .wp-block-group{
    margin-top:0 !important;
    padding-top:0 !important;
  }

  .wp-site-blocks > *:first-child{
    margin-top:0 !important;
    padding-top:0 !important;
  }

  /* ===== BLOCS MOBILE ===== */
  .ls-grid,
  .ls-columns,
  .ls-reviews,
  .ls-hero-grid{
    grid-template-columns:1fr !important;
  }

  .ls-panel,
  .ls-card,
  .ls-contact-box,
  .ls-review{
    padding:22px !important;
  }

  .ls-btn{
    width:100%;
  }

  .ls-actions,
  .ls-cta-strip{
    flex-direction:column;
  }
}
	/* ===== MENU MOBILE CENTRÉ GLOBAL ===== */

@media(max-width:768px){

  .ls-nav-inner{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center;
  }

  .ls-menu{
    display:grid !important;
    grid-template-columns:repeat(3, max-content) !important;
    justify-content:center !important; /* 🔥 centre le menu */
    column-gap:20px !important;
    row-gap:10px !important;
    text-align:center;
  }

  .ls-menu a{
    text-align:center !important;
  }

}
	/* ===== LOGO + TEXTE HEADER ===== */

.ls-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

/* LOGO */
.ls-logo{
  height:65px;
  width:auto;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 8px 25px rgba(0,0,0,0.4);
}

/* TEXTE */
.ls-brand-text{
  font-weight:700;
  font-size:1.1rem;
  color:#fff;
}

.ls-brand-text span{
  color:#2fd3ff;
}

/* ALIGNEMENT GLOBAL */
.ls-nav-inner{
  display:flex !important;
  align-items:center;
  justify-content:space-between;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .ls-logo{
    display:none; /* 🔥 logo caché mobile */
  }

  .ls-brand{
    justify-content:center;
  }

}
	/* ===== LOGO PETIT ===== */

.ls-brand{
  display:flex;
  align-items:center;
  gap:8px;
}

.ls-logo{
  width:30px !important;
  height:30px !important;
  min-width:30px !important;
  max-width:30px !important;
  border-radius:8px !important;
  object-fit:cover !important;
  box-shadow:0 2px 8px rgba(0,0,0,0.25) !important;
  display:block !important;
}

.ls-brand-text{
  font-weight:700;
  font-size:1.05rem;
  color:#fff;
  line-height:1.2;
}

.ls-brand-text span{
  color:#2fd3ff;
}

@media(max-width:768px){
  .ls-logo{
    display:none !important;
  }
}
