:root{
  /* Fond clair et vif (plus de noir) */
  --bg1:#fff6ff;
  --bg2:#f2fdff;
  --bg3:#f6fff0;

  --card: rgba(255,255,255,.72);
  --card2: rgba(255,255,255,.60);

  --text:#111327;
  --muted:#3b3f66;

  /* Couleurs vives */
  --pink:#ff2bd6;
  --cyan:#00e5ff;
  --lime:#b6ff2e;
  --orange:#ff7a00;
  --violet:#7c4dff;

  --line:rgba(17,19,39,.12);
  --shadow: 0 22px 80px rgba(20,20,60,.18);
  --radius:20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(255,43,214,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 15%, rgba(0,229,255,.20), transparent 60%),
    radial-gradient(900px 520px at 50% 95%, rgba(182,255,46,.18), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2) 45%, var(--bg3));
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

/* TOP BAR */
.topbar{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  font-size:14px;
  color:var(--muted);
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(0,229,255,.45);
  background:rgba(0,229,255,.16);
  color:#0b3c44;
  font-weight:900;
}
.sep{opacity:.6; padding:0 6px}
.phone{
  font-weight:1000;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* HEADER */
.header{
  position:sticky;
  top:44px;
  z-index:55;
  background:rgba(255,255,255,.74);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

/* BRAND + LOGO */
.brand{display:flex; align-items:center; gap:12px}
.logo-mark{
  width:48px; height:48px;
  border-radius:16px;
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,43,214,.40), transparent 60%),
    radial-gradient(18px 18px at 70% 70%, rgba(0,229,255,.35), transparent 60%),
    linear-gradient(135deg, rgba(124,77,255,.35), rgba(255,122,0,.18));
  border:1px solid rgba(17,19,39,.12);
  box-shadow: 0 12px 40px rgba(0,229,255,.22);
}
.wm{
  position:relative;
  z-index:2;
  font-weight:1000;
  letter-spacing:.04em;
  font-size:18px;
  color:#fff;
  text-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.spark{
  position:absolute;
  width:60px; height:60px;
  border-radius:50%;
  filter: blur(10px);
  opacity:.7;
}
.s1{background:rgba(255,43,214,.55); top:-25px; left:-20px}
.s2{background:rgba(0,229,255,.50); bottom:-25px; right:-20px}
.s3{background:rgba(182,255,46,.35); bottom:-30px; left:10px}

.brand-name{
  font-size:18px;
  font-weight:1000;
  letter-spacing:.16em;
}
.brand-tagline{font-size:12px; color:var(--muted); margin-top:2px}

/* NAV */
.nav{display:flex; align-items:center}
.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  border-radius:14px;
  padding:10px 11px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#111327;
  margin:4px 0;
  opacity:.9;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  padding:0;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  transition:.2s ease;
}
.nav-link:hover{
  color:var(--text);
  background:rgba(0,0,0,.05);
}
.btn-cta{
  border:1px solid rgba(255,43,214,.30);
  background: linear-gradient(90deg, rgba(255,43,214,.20), rgba(0,229,255,.18));
  color:#111327;
  font-weight:1000;
}
.btn-cta:hover{
  background: linear-gradient(90deg, rgba(255,43,214,.28), rgba(0,229,255,.24));
}

.dropdown{position:relative}
.chev{opacity:.8; font-size:12px}
.dropdown-menu{
  position:absolute;
  top:44px;
  left:0;
  min-width:260px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:8px;
  list-style:none;
  margin:0;
  display:none;
}
.dropdown-menu li a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
}
.dropdown-menu li a:hover{
  background:rgba(0,0,0,.05);
  color:var(--text);
}
.dropdown:hover .dropdown-menu{display:block}

/* HERO */
.hero{padding:62px 0 10px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:center;
}
.hero-kicker{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.kicker-pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.hero-text h1{
  font-size: clamp(30px, 4vw, 48px);
  margin:0 0 12px;
  line-height:1.05;
}
.accent{
  background: linear-gradient(90deg, var(--pink), var(--violet));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.accent2{
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-text p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
}
.hero-cta{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  cursor:pointer;
  transition:.2s ease;
  font-weight:1000;
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{
  background: linear-gradient(90deg, rgba(255,43,214,.92), rgba(0,229,255,.75));
  border-color: rgba(0,0,0,.06);
  color:#081020;
}
.btn-secondary{
  background: rgba(255,255,255,.85);
  color:var(--text);
}
.btn-secondary:hover{background:rgba(255,255,255,.95)}

/* STATS */
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  border-radius:18px;
  padding:12px;
  box-shadow: 0 10px 30px rgba(20,20,60,.10);
}
.stat-title{font-weight:1000; margin-bottom:4px}
.stat-value{color:var(--muted); font-size:13px}
.stat-value span{opacity:.9}
.stat-value a{
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-weight:1000;
}

/* HERO VISUAL */
.hero-visual{position:relative; min-height:320px}
.neon-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius:26px;
  padding:16px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.neon-top{display:flex; gap:8px; flex-wrap:wrap}
.tag{
  padding:8px 10px;
  border-radius:999px;
  font-weight:1000;
  font-size:13px;
  border:1px solid rgba(0,0,0,.06);
}
.t1{background:rgba(255,43,214,.18); color:#5a0c46}
.t2{background:rgba(0,229,255,.16); color:#0b3c44}
.t3{background:rgba(182,255,46,.20); color:#2a3c00}

.neon-body{padding:16px 6px 6px}
.fake-row{
  height:10px;
  border-radius:999px;
  background:rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,.06);
  margin:10px 0;
}
.fake-row.short{width:62%}
.fake-row.short2{width:48%}
.stamp{
  margin-top:16px;
  border-radius:20px;
  padding:14px;
  border:1px dashed rgba(0,229,255,.45);
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  color:#0b3c44;
}
.stamp span{font-weight:1000; letter-spacing:.14em}
.stamp small{color:var(--muted)}

.blob{
  position:absolute;
  border-radius:50%;
  opacity:.9;
}
.b1{width:180px; height:180px; background:rgba(255,43,214,.18); top:-40px; right:-45px}
.b2{width:210px; height:210px; background:rgba(0,229,255,.14); bottom:-60px; left:-60px}
.b3{width:140px; height:140px; background:rgba(182,255,46,.14); bottom:20px; right:-30px}

/* SECTIONS */
.section{padding:54px 0}
.section-head h2{margin:0 0 8px; font-size:28px}
.section-head p{margin:0; color:var(--muted); line-height:1.6}

/* YOU ARE */
.you-are-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.you-card{
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 45px rgba(20,20,60,.10);
}
.you-icon{font-size:26px}
.you-card h3{margin:10px 0 6px}
.you-card p{margin:0 0 12px; color:var(--muted); line-height:1.6}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.service-card{
  display:block;
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  transition:.2s ease;
  box-shadow: 0 14px 45px rgba(20,20,60,.10);
}
.service-card:hover{transform: translateY(-2px)}
.service-card .icon{font-size:26px}
.service-card h3{margin:10px 0 6px}
.service-card p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.service-card .link{
  font-weight:1000;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* CATEGORY */
.category{
  margin-top:22px;
  border-radius:26px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  padding:18px;
  box-shadow: 0 14px 45px rgba(20,20,60,.10);
}
.category-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.category-title h3{margin:0}
.chip{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  font-weight:1000;
  font-size:13px;
  border:1px solid rgba(0,0,0,.06);
}
.chip-pink{background:rgba(255,43,214,.18); color:#5a0c46}
.chip-cyan{background:rgba(0,229,255,.16); color:#0b3c44}
.chip-lime{background:rgba(182,255,46,.22); color:#2a3c00}

.two-cols{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.panel{
  border-radius:20px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  padding:16px;
}
.panel h4{margin:0 0 10px}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.85}
.list strong{color:var(--text)}
.list em{opacity:.9}
.list.cols{columns:2; column-gap:26px}
.list.cols li{break-inside:avoid; margin-bottom:4px}

/* CTA */
.cta-box{
  margin-top:14px;
  border-radius:22px;
  border:1px solid rgba(0,229,255,.35);
  background: linear-gradient(90deg, rgba(255,43,214,.12), rgba(0,229,255,.12));
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta-text h4{margin:0 0 6px}
.cta-text p{margin:0; color:var(--muted); line-height:1.6}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.about-card{
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 45px rgba(20,20,60,.10);
}
.about-card h3{margin:0 0 8px}
.about-card p{margin:0; color:var(--muted); line-height:1.6}
.about-card a{
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-weight:1000;
}

/* CONTACT */
.contact-hero{padding-top:42px}
.contact-header{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.contact-header h2{margin:0 0 8px; font-size:32px}
.contact-header p{margin:0; color:var(--muted); line-height:1.6}
.tiny{font-size:13px; opacity:.9}
.contact-badge{
  min-width:260px;
  border-radius:24px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  padding:16px;
  box-shadow: 0 18px 60px rgba(20,20,60,.12);
}
.cb-top{font-weight:1000; letter-spacing:.16em}
.cb-mid{margin-top:8px; color:#0b3c44; font-weight:1000}
.cb-bot{margin-top:6px; color:var(--muted); font-size:13px}

.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:14px;
  margin-top:14px;
}
.info-box{
  border-radius:24px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding:16px;
  margin-bottom:14px;
  box-shadow: 0 14px 45px rgba(20,20,60,.10);
}
.info-box h3{margin:0 0 8px}
.info-box p{margin:6px 0; color:var(--muted); line-height:1.6}
.info-box a{
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-weight:1000;
}

/* FORM */
.form{
  border-radius:26px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  padding:18px;
  box-shadow: 0 14px 45px rgba(20,20,60,.10);
}
.row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.field{margin-bottom:12px}
label{display:block; font-weight:1000; margin-bottom:6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(17,19,39,.14);
  background:rgba(255,255,255,.95);
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(59,63,102,.55)}
input:focus, textarea:focus, select:focus{
  border-color: rgba(0,229,255,.70);
  box-shadow: 0 0 0 4px rgba(0,229,255,.18);
}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
.form-note{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.6}

/* FOOTER */
.footer{
  border-top:1px solid var(--line);
  padding:26px 0 18px;
  background:rgba(255,255,255,.70);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  padding-bottom:14px;
}
.footer-brand{font-weight:1000; letter-spacing:.16em}
.footer-sub{color:var(--muted); margin-top:4px; font-size:13px}
.footer-sub2{color:rgba(59,63,102,.85); margin-top:6px; font-size:13px}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-links a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.footer-links a:hover{
  color:var(--text);
  border-color: var(--line);
  background:rgba(0,0,0,.04);
}
.footer-bottom{
  border-top:1px solid var(--line);
  padding-top:14px;
}
.footer-bottom small{color:var(--muted)}
.footer-bottom a{
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-weight:1000;
}

/* RESPONSIVE */

/* TABLET + MOBILE */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{min-height:260px}
  .services-grid{grid-template-columns:1fr}
  .you-are-grid{grid-template-columns:1fr}
  .two-cols{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .list.cols{columns:1}
  .hero-stats{grid-template-columns:1fr}

  .contact-header{flex-direction:column}
  .contact-badge{min-width:unset}

  .nav-toggle{display:inline-block}

  /* ✅ MENU MOBILE : largeur, position, scroll si trop long */
  .nav-links{
    position:absolute;
    right:4vw;
    top:78px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    width:min(380px, 92vw);
    border-radius:18px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    display:none;
    max-height: 70vh;
    overflow:auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open{display:flex}

  .dropdown-menu{
    position:static;
    display:none;
    margin-top:6px;
    border-radius:16px;
  }
  .dropdown.open .dropdown-menu{display:block}
  .dropdown:hover .dropdown-menu{display:none}

  .row{grid-template-columns:1fr}

  /* ✅ CTA + boutons plus “tactiles” */
  .btn{padding:13px 16px}
  .btn-primary, .btn-secondary{width:100%}
  .hero-cta{gap:10px}
  .form-actions .btn{width:auto}
}

/* MOBILE */
@media (max-width: 600px){
  /* ✅ Espacements plus compacts */
  .section{padding:38px 0}
  .hero{padding:38px 0 6px}

  /* ✅ Titre et textes mieux adaptés */
  .hero-text h1{font-size: clamp(26px, 8vw, 36px)}
  .section-head h2{font-size:24px}

  /* ✅ Cartes : padding plus confortable sur petit écran */
  .service-card, .you-card, .category, .panel, .form, .info-box{
    border-radius:20px;
    padding:16px;
  }

  /* ✅ Footer en colonne */
  .footer-inner{
    flex-direction:column;
    gap:10px;
  }
  .footer-links{
    justify-content:flex-start;
  }

  /* ✅ Topbar et header plus propres */
  .topbar-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  /* ✅ éviter les “grosses colonnes” de texte */
  .list{padding-left:16px}
}

/* VERY SMALL */
@media (max-width: 420px){
  .header-inner{gap:10px}
  .brand-name{letter-spacing:.12em}

  /* ✅ iPhone : éviter le zoom automatique sur les champs */
  input, select, textarea{font-size:16px}
}