:root{
  --ink:#111315;
  --cream:#f3eddf;
  --paper:#fbf8f2;
  --blue:#1d4ed8;
  --blue-soft:#bfd0ff;
  --coral:#ff6f61;
  --line:rgba(17,19,21,.15);
  --mono:"DM Mono",monospace;
  --sans:"Manrope",sans-serif;
  --serif:"Newsreader",serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}

.topbar{
  height:82px;
  position:sticky;
  top:0;
  z-index:50;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 4.5vw;
  background:rgba(243,237,223,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
}

.brand{
  display:flex;
  align-items:baseline;
  gap:10px;
  width:max-content;
}

.brand strong{
  font-size:2rem;
  font-weight:800;
  letter-spacing:-.075em;
}

.brand span{
  font:500 .58rem var(--mono);
  letter-spacing:.14em;
}

nav{display:flex;gap:32px}

nav a,.top-phone{
  font:500 .63rem var(--mono);
  letter-spacing:.08em;
  text-transform:uppercase;
}

.top-phone{
  justify-self:end;
  padding:12px 15px;
  border:1px solid var(--ink);
  transition:.2s;
}

.top-phone:hover{
  background:var(--ink);
  color:white;
}

.hero{
  min-height:780px;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.hero-copy{
  align-self:center;
  padding:105px 4vw 120px 7vw;
  position:relative;
  z-index:2;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font:500 .62rem var(--mono);
  letter-spacing:.12em;
  color:rgba(17,19,21,.58);
  margin-bottom:24px;
}

.eyebrow span{
  width:38px;
  height:1px;
  display:block;
  background:currentColor;
}

.eyebrow.dark{color:rgba(17,19,21,.58)}
.eyebrow.light{color:rgba(255,255,255,.68)}

.hero h1{
  margin:0;
  max-width:8ch;
  font-size:clamp(5rem,8.3vw,9rem);
  line-height:.79;
  letter-spacing:-.077em;
  font-weight:780;
}

.hero h1 em{
  font-family:var(--serif);
  font-weight:400;
}

.hero-copy>p{
  margin:40px 0 0;
  max-width:560px;
  font-size:1.15rem;
  line-height:1.65;
  color:rgba(17,19,21,.72);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}

.btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid var(--ink);
  font:500 .65rem var(--mono);
  letter-spacing:.07em;
  text-transform:uppercase;
}

.btn-primary{
  background:var(--blue);
  border-color:var(--blue);
  color:white;
}

.hero-visual{
  position:relative;
  background:var(--blue);
  min-height:780px;
  overflow:hidden;
}

.apostrophe{
  position:absolute;
  left:4%;
  bottom:-26%;
  font-family:var(--serif);
  font-size:52rem;
  line-height:.7;
  color:rgba(255,255,255,.09);
  transform:rotate(-9deg);
}

.tile{
  position:absolute;
  border:1px solid rgba(255,255,255,.32);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(7px);
}

.tile-a{
  width:240px;height:360px;
  left:12%;top:15%;
  transform:rotate(-7deg);
}

.tile-b{
  width:260px;height:180px;
  right:9%;top:24%;
  transform:rotate(5deg);
  background:rgba(255,111,97,.72);
}

.tile-c{
  width:180px;height:210px;
  right:15%;bottom:14%;
  transform:rotate(-4deg);
}

.tile-d{
  width:330px;height:90px;
  left:8%;bottom:18%;
  transform:rotate(2deg);
  background:rgba(191,208,255,.34);
}

.hero-stamp{
  position:absolute;
  z-index:3;
  right:7%;
  bottom:8%;
  text-align:right;
  color:white;
}

.hero-stamp span{
  display:block;
  font-size:6rem;
  font-weight:800;
  letter-spacing:-.085em;
  line-height:.84;
}

.hero-stamp small{
  font:500 .59rem var(--mono);
  letter-spacing:.11em;
}

.hero-ribbon{
  position:absolute;
  z-index:5;
  left:0;right:0;bottom:0;
  min-height:64px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:rgba(243,237,223,.94);
  backdrop-filter:blur(14px);
  border-top:1px solid var(--line);
}

.hero-ribbon span{
  display:flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid var(--line);
  font:500 .58rem var(--mono);
  letter-spacing:.08em;
}

.intro{
  padding:105px 6vw;
  display:grid;
  grid-template-columns:220px 1fr;
  gap:50px;
  border-bottom:1px solid var(--line);
}

.intro-index{
  font:500 .6rem var(--mono);
  letter-spacing:.11em;
  color:rgba(17,19,21,.53);
}

.intro-copy p{
  margin:0;
  max-width:1050px;
  font-size:clamp(2.9rem,5vw,5.6rem);
  line-height:.98;
  letter-spacing:-.058em;
}

.intro-copy strong{
  font-family:var(--serif);
  font-weight:400;
}

.services{
  padding:110px 5vw 120px;
}

.services-head{
  max-width:1320px;
  margin:0 auto 50px;
}

.services-head h2{
  margin:0;
  max-width:10ch;
  font-size:clamp(3.8rem,6vw,6.5rem);
  line-height:.87;
  letter-spacing:-.07em;
}

.services-head h2 em{
  font-family:var(--serif);
  font-weight:400;
}

.service-grid{
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:18px;
}

.service-card{
  position:relative;
  overflow:hidden;
  min-height:410px;
  padding:26px;
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.card-blue{
  grid-column:span 6;
  min-height:520px;
  background:var(--blue);
  color:white;
}

.card-cream{
  grid-column:span 3;
  background:var(--paper);
}

.card-coral{
  grid-column:span 3;
  background:var(--coral);
}

.card-index{
  position:absolute;
  right:20px;
  top:18px;
  z-index:3;
  font:500 .6rem var(--mono);
  opacity:.58;
}

.service-copy{
  position:relative;
  z-index:3;
  max-width:500px;
}

.service-kicker{
  font:500 .58rem var(--mono);
  letter-spacing:.11em;
  opacity:.66;
}

.service-card h3{
  margin:12px 0 14px;
  max-width:9ch;
  font-size:clamp(3rem,5vw,5.2rem);
  line-height:.87;
  letter-spacing:-.068em;
}

.service-card p{
  margin:0;
  max-width:410px;
  font-size:.94rem;
  line-height:1.62;
  opacity:.74;
}

.service-symbol{
  position:absolute;
  inset:0;
}

.symbol-grid{
  background:
    linear-gradient(rgba(255,255,255,.11) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.11) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(180deg,#000 0%,transparent 80%);
}

.symbol-rings{
  right:-20%;
  left:auto;
  top:10%;
  width:90%;
  height:65%;
}

.symbol-rings span{
  position:absolute;
  inset:0;
  border:1px solid rgba(29,78,216,.24);
  border-radius:50%;
}

.symbol-rings span:nth-child(2){inset:18%}
.symbol-rings span:nth-child(3){inset:36%;background:rgba(29,78,216,.04)}

.symbol-window{
  width:55%;
  height:58%;
  right:4%;
  top:10%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.symbol-window i{
  border:1px solid rgba(17,19,21,.30);
  background:rgba(255,255,255,.07);
}

.local-use{
  padding:110px 6vw;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:8vw;
  background:var(--ink);
  color:white;
}

.local-use-copy h2{
  margin:0;
  max-width:10ch;
  font-size:clamp(3.8rem,6vw,6.6rem);
  line-height:.87;
  letter-spacing:-.07em;
}

.local-use-copy h2 em{
  font-family:var(--serif);
  font-weight:400;
}

.local-use-copy>p{
  margin:32px 0 0;
  max-width:500px;
  line-height:1.72;
  color:rgba(255,255,255,.65);
}

.local-use-list{
  border-top:1px solid rgba(255,255,255,.22);
}

.local-row{
  min-height:130px;
  display:grid;
  grid-template-columns:55px 160px 1fr;
  gap:22px;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.local-row>span{
  font:500 .6rem var(--mono);
  color:var(--coral);
}

.local-row h3{
  margin:0;
  font-size:1.9rem;
  letter-spacing:-.04em;
}

.local-row p{
  margin:0;
  line-height:1.6;
  color:rgba(255,255,255,.67);
}

.location{
  min-height:560px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  border-bottom:1px solid var(--line);
}

.location-art{
  position:relative;
  overflow:hidden;
  background:var(--blue-soft);
  border-right:1px solid var(--line);
}

.city-lines{
  position:absolute;
  inset:8%;
}

.city-lines span{
  position:absolute;
  left:0;
  width:100%;
  height:1px;
  background:rgba(29,78,216,.26);
  transform-origin:left center;
}

.city-lines span:nth-child(1){top:12%;transform:rotate(12deg)}
.city-lines span:nth-child(2){top:28%;transform:rotate(-5deg)}
.city-lines span:nth-child(3){top:49%;transform:rotate(7deg)}
.city-lines span:nth-child(4){top:67%;transform:rotate(-9deg)}
.city-lines span:nth-child(5){top:82%;transform:rotate(4deg)}

.location-point{
  position:absolute;
  left:52%;
  top:47%;
  display:grid;
  gap:4px;
}

.location-point i{
  width:17px;
  height:17px;
  border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 0 9px rgba(29,78,216,.12);
  margin-bottom:8px;
}

.location-point strong{
  font-size:1.15rem;
  letter-spacing:-.03em;
}

.location-point small{
  font:500 .62rem var(--mono);
}

.location-big{
  position:absolute;
  right:-2%;
  bottom:-20%;
  font-size:25rem;
  line-height:.8;
  font-weight:800;
  letter-spacing:-.1em;
  color:rgba(29,78,216,.09);
}

.location-copy{
  padding:80px 5vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.location-copy h2{
  margin:0;
  font-size:clamp(3.7rem,5.6vw,6rem);
  line-height:.88;
  letter-spacing:-.07em;
}

.location-copy p{
  margin:28px 0 0;
  font:400 .75rem/1.8 var(--mono);
}

.location-copy>a{
  margin-top:28px;
  color:var(--blue);
  font:500 .68rem var(--mono);
  letter-spacing:.06em;
}

.contact{
  background:var(--coral);
  padding:64px 5vw 38px;
}

.contact-top{
  display:flex;
  justify-content:space-between;
  font:500 .6rem var(--mono);
  letter-spacing:.1em;
}

.contact>p{
  margin:66px 0 20px;
  font-family:var(--serif);
  font-size:clamp(2.8rem,4.5vw,4.5rem);
}

.contact-phone{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 0 34px;
  border-top:1px solid var(--ink);
  border-bottom:1px solid var(--ink);
}

.contact-phone span{
  font-size:clamp(4rem,10vw,10.5rem);
  line-height:.80;
  letter-spacing:-.078em;
  font-weight:800;
}

.contact-phone b{
  font-size:clamp(3rem,7vw,7rem);
  font-weight:400;
}

.contact-bottom{
  margin-top:26px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font:500 .6rem var(--mono);
  letter-spacing:.07em;
}

footer{
  min-height:82px;
  display:grid;
  grid-template-columns:1fr 1fr auto;
  align-items:center;
  gap:20px;
  padding:0 5vw;
  background:var(--ink);
  color:rgba(255,255,255,.66);
  font:400 .58rem var(--mono);
  letter-spacing:.07em;
}

footer a{
  text-decoration:underline;
  text-underline-offset:3px;
}

@media(max-width:980px){
  .topbar{grid-template-columns:1fr auto}
  nav{display:none}

  .hero{grid-template-columns:1fr}
  .hero-copy{padding:82px 7vw 110px}
  .hero-visual{min-height:580px}
  .hero-ribbon{position:relative;grid-column:1/-1}

  .intro{grid-template-columns:1fr}

  .service-grid{grid-template-columns:1fr 1fr}
  .card-blue,.card-cream,.card-coral{grid-column:auto}

  .local-use{grid-template-columns:1fr}

  .location{grid-template-columns:1fr}
  .location-art{min-height:420px;border-right:0;border-bottom:1px solid var(--line)}
}

@media(max-width:640px){
  .topbar{height:74px;padding:0 18px}
  .brand strong{font-size:1.55rem}
  .brand span{font-size:.48rem}
  .top-phone{font-size:.54rem;padding:10px 8px}

  .hero-copy{padding:62px 20px 84px}
  .hero h1{font-size:clamp(4rem,18vw,6rem)}
  .hero-copy>p{font-size:1rem}
  .hero-visual{min-height:470px}
  .apostrophe{font-size:32rem}
  .tile-a{width:160px;height:230px}
  .tile-b{width:180px;height:120px}
  .tile-c{width:120px;height:150px}
  .tile-d{width:220px;height:70px}
  .hero-stamp span{font-size:4rem}

  .hero-ribbon{grid-template-columns:1fr 1fr}
  .hero-ribbon span{min-height:48px;border-bottom:1px solid var(--line)}

  .intro{padding:72px 20px}
  .intro-copy p{font-size:clamp(2.6rem,11vw,4rem)}

  .services{padding:76px 18px 84px}
  .services-head h2{font-size:clamp(3rem,14vw,4.6rem)}
  .service-grid{grid-template-columns:1fr}
  .service-card{min-height:330px}
  .card-blue{min-height:410px}

  .local-use{padding:76px 20px}
  .local-use-copy h2{font-size:clamp(3.1rem,14vw,4.8rem)}
  .local-row{grid-template-columns:42px 1fr;padding:24px 0}
  .local-row p{grid-column:2}

  .location-art{min-height:340px}
  .location-copy{padding:66px 20px}
  .location-big{font-size:16rem}

  .contact{padding:58px 18px 32px}
  .contact-phone span{font-size:clamp(2.8rem,13vw,5rem)}
  .contact-top,.contact-bottom{gap:18px}
  .contact-bottom{flex-direction:column}

  footer{grid-template-columns:1fr;gap:7px;padding:24px 18px}
}


/* =========================================================
   V2 — intégration des visuels Banana 2
   ========================================================= */

/* HERO */
.hero-photo-wrap{
  background:var(--blue) !important;
}
.hero-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
}
.hero-photo-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,
      rgba(29,78,216,.76) 0%,
      rgba(29,78,216,.44) 28%,
      rgba(29,78,216,.12) 55%,
      rgba(29,78,216,.02) 100%);
  pointer-events:none;
}
.hero-photo-wrap .apostrophe,
.hero-photo-wrap .tile{
  display:none !important;
}
.hero-photo-wrap .hero-stamp{
  z-index:2;
  background:rgba(17,19,21,.28);
  backdrop-filter:blur(8px);
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.2);
}

/* SERVICES */
.service-visual-card{
  isolation:isolate;
}
.service-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
}
.service-visual-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}
.service-visual-card .service-copy,
.service-visual-card .card-index{
  z-index:3;
}

/* Nettoyage de locaux */
.service-locaux{
  color:#fff !important;
  background:var(--blue) !important;
}
.service-locaux .service-bg{
  object-position:68% center;
}
.service-locaux::before{
  background:
    linear-gradient(90deg,
      rgba(17,19,21,.88) 0%,
      rgba(17,19,21,.78) 24%,
      rgba(17,19,21,.50) 46%,
      rgba(17,19,21,.14) 72%,
      rgba(17,19,21,.03) 100%);
}
.service-locaux .service-copy{
  max-width:46%;
}
.service-locaux .symbol-grid{display:none}
.service-locaux p,
.service-locaux .service-kicker{
  color:rgba(255,255,255,.86);
  opacity:1;
}

/* Entretien */
.service-entretien{
  background:var(--paper) !important;
  color:var(--ink) !important;
}
.service-entretien .service-bg{
  object-fit:cover;
  object-position:center;
}
.service-entretien::before{
  background:
    linear-gradient(90deg,
      rgba(251,248,242,.96) 0%,
      rgba(251,248,242,.92) 34%,
      rgba(251,248,242,.56) 64%,
      rgba(251,248,242,.10) 100%);
}
.service-entretien .service-copy{max-width:66%}
.service-entretien .symbol-rings{display:none}

/* Vitres */
.service-vitres{
  background:var(--coral) !important;
  color:var(--ink) !important;
}
.service-vitres .service-bg{
  object-position:70% center;
}
.service-vitres::before{
  background:
    linear-gradient(90deg,
      rgba(255,111,97,.94) 0%,
      rgba(255,111,97,.88) 34%,
      rgba(255,111,97,.46) 62%,
      rgba(255,111,97,.08) 100%);
}
.service-vitres .service-copy{max-width:68%}
.service-vitres .symbol-window{display:none}

/* INTRO */
.intro-visual{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.intro-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
  opacity:.22;
}
.intro-visual::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg, rgba(243,237,223,.97), rgba(243,237,223,.80));
}
.intro-visual .intro-index,
.intro-visual .intro-copy{
  position:relative;
  z-index:2;
}

/* VOS LOCAUX */
.local-use-visual{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.local-use-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
  opacity:.28;
}
.local-use-visual::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,
      rgba(17,19,21,.98) 0%,
      rgba(17,19,21,.94) 45%,
      rgba(17,19,21,.84) 100%);
}
.local-use-visual .local-use-copy,
.local-use-visual .local-use-list{
  position:relative;
  z-index:2;
}

/* LOCALISATION */
.location-map-visual{
  background:#f3eddf !important;
}
.location-map-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
}
.location-map-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(243,237,223,.08), rgba(29,78,216,.03));
  pointer-events:none;
}
.location-map-visual .city-lines,
.location-map-visual .location-point,
.location-map-visual .location-big{
  display:none !important;
}

/* CONTACT */
.contact-visual{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:var(--coral) !important;
}
.contact-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
  opacity:.34;
}
.contact-visual::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg, rgba(255,111,97,.97), rgba(255,111,97,.82));
}
.contact-visual > *:not(.contact-bg){
  position:relative;
  z-index:2;
}

@media(max-width:640px){
  .hero-photo{
    object-position:70% center;
  }

  .hero-photo-wrap::before{
    background:
      linear-gradient(180deg,
        rgba(29,78,216,.42) 0%,
        rgba(29,78,216,.18) 55%,
        rgba(29,78,216,.05) 100%);
  }

  .service-locaux .service-copy,
  .service-entretien .service-copy,
  .service-vitres .service-copy{
    max-width:100%;
  }

  .service-locaux::before{
    background:
      linear-gradient(180deg,
        rgba(17,19,21,.86) 0%,
        rgba(17,19,21,.70) 38%,
        rgba(17,19,21,.25) 70%,
        rgba(17,19,21,.06) 100%);
  }

  .service-entretien::before{
    background:
      linear-gradient(180deg,
        rgba(251,248,242,.96) 0%,
        rgba(251,248,242,.88) 40%,
        rgba(251,248,242,.42) 72%,
        rgba(251,248,242,.08) 100%);
  }

  .service-vitres::before{
    background:
      linear-gradient(180deg,
        rgba(255,111,97,.94) 0%,
        rgba(255,111,97,.84) 42%,
        rgba(255,111,97,.38) 74%,
        rgba(255,111,97,.08) 100%);
  }

  .local-use-bg{opacity:.18}
  .contact-bg{opacity:.22}
}


/* V3 — meilleure intégration de l'image "Nettoyage de locaux" */
.service-locaux{
  background:
    linear-gradient(135deg,#143fb7 0%,#1d4ed8 48%,#ff7b6d 135%) !important;
}

.service-locaux .service-bg{
  object-position:66% center !important;
  filter:saturate(.82) contrast(1.02) brightness(1.02);
}

.service-locaux::before{
  background:
    linear-gradient(90deg,
      rgba(17,19,21,.93) 0%,
      rgba(20,37,73,.86) 22%,
      rgba(29,78,216,.58) 48%,
      rgba(29,78,216,.20) 72%,
      rgba(255,111,97,.10) 100%) !important;
}

.service-locaux::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(255,111,97,.22), transparent 24%),
    linear-gradient(135deg, transparent 0 64%, rgba(191,208,255,.12) 64% 74%, transparent 74%);
  mix-blend-mode:screen;
}

.service-locaux .service-copy,
.service-locaux .card-index{
  z-index:3;
}

.service-locaux .service-copy{
  max-width:44% !important;
}

@media(max-width:640px){
  .service-locaux .service-bg{
    object-position:69% center !important;
  }

  .service-locaux::before{
    background:
      linear-gradient(180deg,
        rgba(17,19,21,.91) 0%,
        rgba(20,37,73,.82) 34%,
        rgba(29,78,216,.38) 68%,
        rgba(255,111,97,.10) 100%) !important;
  }

  .service-locaux .service-copy{
    max-width:100% !important;
  }
}


/* V4 — Entretien : suppression totale de l'illustration, aplat de couleur */
.service-entretien{
  background:#bfd0ff !important;
  color:var(--ink) !important;
}

.service-entretien .service-bg{
  display:none !important;
}

.service-entretien::before{
  display:none !important;
}

.service-entretien::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,.20) 0%,
      rgba(255,255,255,0) 42%),
    linear-gradient(180deg,
      rgba(29,78,216,.02) 0%,
      rgba(29,78,216,.08) 100%);
}

.service-entretien .service-copy,
.service-entretien .card-index{
  position:relative;
  z-index:2;
}

.service-entretien .service-kicker,
.service-entretien p{
  color:rgba(17,19,21,.72) !important;
  opacity:1 !important;
}

.service-entretien h3{
  color:var(--ink) !important;
}

.service-entretien .symbol-rings{
  display:none !important;
}


/* V6 — Entretien : aplat + motif discret + titre non coupé */
.service-entretien-plain{
  grid-column:span 3;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:410px;
  padding:28px 24px 24px;
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:#bfd0ff !important;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17,19,21,.12) 1.2px, transparent 1.2px),
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 2px, transparent 2px 12px) !important;
  background-size:18px 18px, auto;
  background-position:0 0, 0 0;
  color:var(--ink) !important;
}

.service-entretien-plain::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,0) 42%);
  pointer-events:none;
  z-index:0;
}

.service-entretien-plain::after{
  content:"";
  position:absolute;
  right:-42px;
  bottom:-42px;
  width:180px;
  height:180px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.34);
  box-shadow:
    0 0 0 22px rgba(255,255,255,.11),
    0 0 0 48px rgba(255,255,255,.07);
  pointer-events:none;
  z-index:0;
}

.service-entretien-plain .service-copy{
  position:relative;
  z-index:1;
  max-width:100%;
}

.service-entretien-plain .card-index{
  position:absolute;
  right:18px;
  top:16px;
  z-index:2;
  font:500 .6rem var(--mono);
  opacity:.58;
}

.service-entretien-plain .service-kicker{
  color:rgba(17,19,21,.62) !important;
  opacity:1 !important;
  margin-bottom:10px;
}

.service-entretien-plain h3{
  color:var(--ink) !important;
  font-size:clamp(2.5rem, 5vw, 4.3rem) !important;
  line-height:.92 !important;
  letter-spacing:-0.06em !important;
  word-break:keep-all !important;
  overflow-wrap:normal !important;
  hyphens:none !important;
  max-width:100%;
  margin:0 0 14px 0;
}

.service-entretien-plain p{
  color:rgba(17,19,21,.74) !important;
  opacity:1 !important;
  max-width:24ch;
  font-size:.98rem;
  line-height:1.45;
}

@media(max-width:980px){
  .service-entretien-plain{grid-column:auto}
}

@media(max-width:640px){
  .service-entretien-plain{
    min-height:330px;
    padding:24px 18px 20px;
    background-size:16px 16px, auto;
  }

  .service-entretien-plain h3{
    font-size:clamp(2rem, 11vw, 3.2rem) !important;
    line-height:.95 !important;
  }

  .service-entretien-plain p{
    max-width:20ch;
    font-size:.92rem;
  }
}
