/* ============================================================
   Lavage — Model 1 "PULSE STUDIO"
   Bold modern: near-black canvas, electric lime + violet,
   oversized typography, bento grid, marquee ticker, stickers.
   ============================================================ */

.m1-theme {
  --m1-bg: #0B0B10;
  --m1-panel: #14141C;
  --m1-panel-2: #101018;
  --m1-lime: #C8F04C;
  --m1-violet: #8B7CF6;
  --m1-white: #F5F6F2;
  --m1-muted: #9A9AA8;
  --m1-line: rgba(255, 255, 255, .08);

  background: var(--m1-bg);
  color: var(--m1-white);
  font-family: var(--font-ar-body);
}
:root[lang="fr"] .m1-theme { font-family: var(--font-fr-body); }
.m1-theme h1, .m1-theme h2, .m1-theme h3 { font-family: var(--font-ar-display); }
:root[lang="fr"] .m1-theme h1,
:root[lang="fr"] .m1-theme h2,
:root[lang="fr"] .m1-theme h3 { font-family: var(--font-fr-display); }

.m1-theme :focus-visible { outline-color: var(--m1-lime); }
.m1-theme ::selection { background: var(--m1-lime); color: var(--m1-bg); }

/* ---------- Buttons ---------- */
.m1-btn-lime {
  background: var(--m1-lime); color: #131309; font-weight: 800;
  box-shadow: 0 6px 26px rgba(200, 240, 76, .22);
}
.m1-btn-lime:hover { box-shadow: 0 10px 36px rgba(200, 240, 76, .45); }
.m1-btn-ghost { border-color: rgba(255, 255, 255, .22); color: var(--m1-white); }
.m1-btn-ghost:hover { border-color: var(--m1-lime); color: var(--m1-lime); }
.m1-btn-dark { background: #131309; color: var(--m1-lime); }
.m1-btn-dark:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .5); }

/* ---------- Header ---------- */
.m1-header {
  position: sticky; top: 0; z-index: 120;
  transition: background .3s ease, box-shadow .3s ease;
}
.m1-header.is-scrolled {
  background: rgba(11, 11, 16, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--m1-line);
}
.m1-header-inner { display: flex; align-items: center; gap: 1.3rem; padding: .85rem 0; }
.m1-logo { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--m1-white); }
.m1-logo .logo-mark { color: var(--m1-lime); }
.m1-nav { margin-inline-start: auto; }
.m1-nav-list {
  display: flex; gap: .2rem; padding: .3rem;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--m1-line); border-radius: 999px;
}
.m1-nav-list a {
  text-decoration: none; font-size: .84rem; font-weight: 600; color: var(--m1-muted);
  padding: .42rem .85rem; border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.m1-nav-list a:hover { color: var(--m1-white); background: rgba(255, 255, 255, .07); }
.m1-nav-list a.is-current { color: #131309; background: var(--m1-lime); }
.m1-header-actions { display: flex; align-items: center; gap: .8rem; }
.m1-header-actions .btn-wa { padding: .55rem 1.1rem; font-size: .84rem; }
.m1-theme .lang-switch { background: rgba(255, 255, 255, .08); }
.m1-theme .lang-btn { color: var(--m1-white); }
.m1-theme .lang-btn.is-active { background: var(--m1-lime); color: #131309; }
.m1-theme .nav-burger { color: var(--m1-white); }

/* ---------- Hero ---------- */
.m1-hero { position: relative; overflow: hidden; padding-top: 4.5rem; }
.m1-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.m1-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; }
.m1-orb-lime { width: 480px; height: 480px; background: var(--m1-lime); top: -220px; inset-inline-end: -160px; animation: m1-orb-a 16s ease-in-out infinite alternate; }
.m1-orb-violet { width: 420px; height: 420px; background: var(--m1-violet); bottom: -180px; inset-inline-start: -140px; animation: m1-orb-b 18s ease-in-out infinite alternate; }
@keyframes m1-orb-a { to { transform: translate(-50px, 60px); } }
@keyframes m1-orb-b { to { transform: translate(60px, -50px); } }

.m1-hero-grid {
  position: relative; display: grid; grid-template-columns: 1fr .95fr;
  gap: 3rem; align-items: center; padding-bottom: 4.5rem;
}
.m1-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--m1-line); background: rgba(255, 255, 255, .04);
  color: var(--m1-muted); font-size: .78rem; font-weight: 700;
  padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.m1-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--m1-lime); animation: m1-blink 2s ease-in-out infinite; }
@keyframes m1-blink { 50% { opacity: .3; } }

.m1-title {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem); font-weight: 900; line-height: 1.14;
  letter-spacing: -.01em; margin-bottom: 1.2rem;
}
.m1-title span { display: block; }
.m1-title-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--m1-lime);
  paint-order: stroke;
}
@supports not (-webkit-text-stroke: 2px black) { .m1-title-outline { color: var(--m1-lime); } }
.m1-sub { color: var(--m1-muted); font-size: 1.08rem; max-width: 33rem; margin-bottom: 2rem; }
.m1-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.8rem; }
.m1-pills { display: flex; flex-wrap: wrap; gap: .55rem; }
.m1-pills li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--m1-line);
  color: var(--m1-muted); font-size: .78rem; font-weight: 600;
  padding: .4rem .85rem; border-radius: 999px;
}
.m1-pills svg { color: var(--m1-lime); }

.m1-hero-media {
  position: relative; border-radius: 26px; overflow: visible;
}
.m1-hero-media img {
  width: 100%; height: auto; border-radius: 26px;
  border: 1px solid rgba(200, 240, 76, .25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 0 60px rgba(139, 124, 246, .12);
  transform: rotate(1.6deg);
  transition: transform .5s ease;
}
.m1-hero-media:hover img { transform: rotate(0deg) scale(1.015); }
.m1-sticker {
  position: absolute; display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 800; font-size: .8rem; padding: .5rem .95rem; border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .45);
}
.m1-sticker-rating {
  top: -14px; inset-inline-start: 6%;
  background: var(--m1-lime); color: #131309; transform: rotate(-4deg);
}
.m1-sticker-tag {
  bottom: -12px; inset-inline-end: 8%;
  background: var(--m1-violet); color: #fff; letter-spacing: .14em; transform: rotate(3deg);
}

/* Marquee ticker */
.m1-marquee {
  display: flex; overflow: hidden; user-select: none;
  border-block: 1px solid var(--m1-line);
  background: rgba(255, 255, 255, .025);
  padding: .9rem 0;
}
.m1-marquee-track {
  flex-shrink: 0; min-width: 100%;
  display: flex; align-items: center; justify-content: space-around; gap: 2rem;
  animation: m1-marquee 26s linear infinite;
}
.m1-marquee-track span {
  font-weight: 800; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--m1-muted); white-space: nowrap;
}
.m1-marquee-track i { font-style: normal; color: var(--m1-lime); }
@keyframes m1-marquee { to { transform: translateX(-100%); } }
:root[dir="rtl"] .m1-marquee-track { animation-name: m1-marquee-rtl; }
@keyframes m1-marquee-rtl { to { transform: translateX(100%); } }

/* ---------- Sections ---------- */
.m1-section { padding: 5rem 0; }
.m1-section-tint { background: var(--m1-panel-2); border-block: 1px solid var(--m1-line); }
.m1-section-head { max-width: 640px; margin-bottom: 2.8rem; }
.m1-section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 900; letter-spacing: -.01em; }
.m1-section-sub { color: var(--m1-muted); margin-top: .7rem; }
.m1-label {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--m1-violet); border: 1px solid rgba(139, 124, 246, .4);
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.m1-label.lime { color: #131309; background: var(--m1-lime); border-color: var(--m1-lime); }

/* ---------- Bento ---------- */
.m1-bento {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "a a b c"
    "d e e c";
}
.m1-tile {
  background: var(--m1-panel); border: 1px solid var(--m1-line); border-radius: 22px;
  padding: 1.7rem; display: flex; flex-direction: column; justify-content: center; gap: .3rem;
  transition: transform .25s ease, border-color .25s ease;
}
.m1-tile:hover { transform: translateY(-4px); border-color: rgba(200, 240, 76, .4); }
.m1-tile:nth-child(1) { grid-area: a; }
.m1-tile:nth-child(2) { grid-area: b; }
.m1-tile:nth-child(3) { grid-area: c; }
.m1-tile:nth-child(4) { grid-area: d; }
.m1-tile:nth-child(5) { grid-area: e; }
.m1-tile-num { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1; }
.m1-plus { color: var(--m1-lime); font-size: .6em; font-weight: 800; margin-inline-start: .1em; }
.m1-tile-cap { color: var(--m1-muted); font-size: .86rem; }
.m1-tile-stars { display: flex; gap: .2rem; color: var(--m1-lime); margin-top: .4rem; }
.m1-tile-img { padding: 0; overflow: hidden; }
.m1-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.m1-tile-lime { background: var(--m1-lime); border-color: var(--m1-lime); color: #131309; }
.m1-tile-lime svg { margin-bottom: .4rem; }
.m1-tile-lime .m1-tile-t { font-weight: 800; font-size: 1.05rem; }
.m1-tile-lime .m1-tile-cap { color: rgba(19, 19, 9, .75); }

/* ---------- Services ---------- */
.m1-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.m1-svc {
  display: flex; flex-direction: column;
  background: var(--m1-panel); border: 1px solid var(--m1-line); border-radius: 22px;
  padding: 1.6rem; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.m1-svc:hover {
  transform: translateY(-5px); border-color: rgba(200, 240, 76, .5);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45);
}
.m1-svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.m1-svc-top svg { color: var(--m1-violet); }
.m1-svc-num {
  font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--m1-muted);
  transition: color .2s ease;
}
.m1-svc:hover .m1-svc-num { color: var(--m1-lime); }
.m1-svc h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.m1-svc > p { color: var(--m1-muted); font-size: .87rem; flex: 1; }
.m1-svc-meta {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap;
  margin: 1.1rem 0; font-size: .78rem; color: var(--m1-muted);
}
.m1-svc-price strong { color: var(--m1-lime); font-size: 1.05rem; }
.m1-svc-book {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  text-decoration: none; font-size: .85rem; font-weight: 700; color: var(--m1-white);
  border-top: 1px solid var(--m1-line); padding-top: 1rem;
  transition: color .2s ease;
}
.m1-svc-book svg { transition: transform .2s ease; }
.m1-svc-book:hover { color: var(--m1-lime); }
.m1-svc-book:hover svg { transform: translateX(4px); }
:root[dir="rtl"] .m1-svc-book:hover svg { transform: scaleX(-1) translateX(4px); }

/* ---------- Before / After ---------- */
.m1-ba { border: 1px solid var(--m1-line); border-radius: 24px; box-shadow: 0 26px 70px rgba(0, 0, 0, .5); }
.m1-ba .ba-art { object-fit: cover; width: 100%; height: 100%; }

/* ---------- Steps (horizontal snap) ---------- */
.m1-steps {
  display: flex; gap: 1.1rem; overflow-x: auto; padding: .4rem .3rem 1.4rem;
  scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--m1-violet) transparent;
}
.m1-steps::-webkit-scrollbar { height: 8px; }
.m1-steps::-webkit-scrollbar-thumb { background: var(--m1-violet); border-radius: 4px; }
.m1-step {
  flex: 1 0 min(270px, 78vw); scroll-snap-align: start;
  background: var(--m1-panel); border: 1px solid var(--m1-line); border-radius: 22px;
  padding: 1.7rem;
}
.m1-step-big {
  display: block; font-size: 3.4rem; font-weight: 900; line-height: 1; margin-bottom: 1rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--m1-violet);
}
@supports not (-webkit-text-stroke: 1px black) { .m1-step-big { color: var(--m1-violet); } }
.m1-step h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.m1-step p { color: var(--m1-muted); font-size: .86rem; }

/* ---------- Featured ---------- */
.m1-featured {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(120deg, var(--m1-panel), #171126);
  border: 1px solid rgba(139, 124, 246, .35); border-radius: 28px;
  padding: 3rem;
}
.m1-featured-copy h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 1rem; }
.m1-featured-desc { color: var(--m1-muted); margin-bottom: 1.4rem; max-width: 34rem; }
.m1-featured-list { display: grid; gap: .6rem; margin-bottom: 1.8rem; }
.m1-featured-list li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.m1-featured-list svg { color: var(--m1-lime); flex-shrink: 0; }
.m1-featured-cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.m1-featured-price { color: var(--m1-muted); font-size: .85rem; }
.m1-featured-price strong { color: var(--m1-lime); font-size: 1.7rem; font-weight: 900; margin-inline: .25rem; }
.m1-featured-art { display: grid; place-items: center; }
.m1-spin-badge { position: relative; width: 190px; height: 190px; display: grid; place-items: center; }
.m1-spin-badge > svg:first-child { position: absolute; inset: 0; animation: m1-rotate 16s linear infinite; }
@keyframes m1-rotate { to { transform: rotate(360deg); } }
.m1-spin-text { fill: var(--m1-lime); font-size: 13.5px; font-weight: 700; letter-spacing: .22em; font-family: var(--font-fr-display); }
.m1-spin-ic { color: var(--m1-violet); filter: drop-shadow(0 0 22px rgba(139, 124, 246, .6)); }

/* ---------- Plans ---------- */
.m1-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: stretch; }
.m1-plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--m1-panel); border: 1px solid var(--m1-line); border-radius: 24px;
  padding: 1.9rem 1.5rem 1.5rem;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.m1-plan:hover, .m1-plan:focus-within {
  transform: translateY(-6px); border-color: rgba(200, 240, 76, .45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}
.m1-plan h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.m1-plan-desc { color: var(--m1-muted); font-size: .84rem; margin-bottom: 1rem; }
.m1-plan-price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .3rem; }
.m1-plan-price strong { font-size: 2.1rem; font-weight: 900; }
.m1-plan-price em { font-style: normal; font-size: .72rem; color: var(--m1-muted); }
.m1-plan .pkg-list { flex: 1; }
.m1-plan .btn { width: 100%; }
.m1-plan.is-popular { background: var(--m1-lime); border-color: var(--m1-lime); color: #131309; }
.m1-plan.is-popular .m1-plan-desc,
.m1-plan.is-popular .m1-plan-price em,
.m1-plan.is-popular .pkg-meta { color: rgba(19, 19, 9, .7); }
.m1-plan.is-popular .pkg-badge { background: var(--m1-violet); color: #fff; }

/* ---------- Why ---------- */
.m1-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.m1-why {
  background: var(--m1-panel); border: 1px solid var(--m1-line); border-radius: 22px;
  padding: 1.7rem 1.4rem; transition: border-color .25s ease, transform .25s ease;
}
.m1-why:hover { border-color: rgba(139, 124, 246, .5); transform: translateY(-4px); }
.m1-why-ic {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  color: var(--m1-violet); background: rgba(139, 124, 246, .14);
  border: 1px solid rgba(139, 124, 246, .3); margin-bottom: 1rem;
}
.m1-why h3 { font-size: 1rem; margin-bottom: .45rem; }
.m1-why p { color: var(--m1-muted); font-size: .86rem; }

/* ---------- Gallery ---------- */
.m1-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.m1-shot {
  border-radius: 20px; overflow: hidden; background: var(--m1-panel);
  border: 1px solid var(--m1-line);
}
.m1-shot img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.m1-shot:hover img { transform: scale(1.06); filter: brightness(1.08); }
.m1-shot figcaption { padding: .8rem 1rem; font-size: .8rem; color: var(--m1-muted); }

/* ---------- Testimonials ---------- */
.m1-quotes { max-width: 720px; margin-inline: auto; }
.m1-quote {
  position: relative; background: var(--m1-panel); border: 1px solid var(--m1-line);
  border-radius: 24px; padding: 2.4rem 2.2rem 2rem; text-align: center;
}
.m1-quote[hidden] { display: none; }
.m1-quote::before {
  content: "”"; position: absolute; top: -26px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--m1-lime); color: #131309; font-size: 2rem; font-weight: 900; line-height: 1.5;
}
:root[dir="rtl"] .m1-quote::before { transform: translateX(50%); }
.m1-quote p { font-size: 1.08rem; line-height: 1.85; margin: .6rem 0 1.4rem; }
.m1-quote footer { display: flex; align-items: center; justify-content: center; gap: .7rem; }
.m1-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--m1-violet); color: #fff; font-weight: 800;
}
.m1-quote cite { color: var(--m1-muted); font-size: .88rem; }
.m1-quotes-nav { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 1.5rem; color: var(--m1-lime); }

/* ---------- Coverage ---------- */
.m1-cities { display: flex; flex-wrap: wrap; gap: .7rem; }
.m1-cities li {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--m1-panel); border: 1px solid var(--m1-line);
  font-size: .88rem; font-weight: 600; padding: .55rem 1.1rem; border-radius: 999px;
  transition: border-color .2s ease, transform .2s ease;
}
.m1-cities li:hover { border-color: rgba(200, 240, 76, .5); transform: translateY(-2px); }
.m1-cities li:nth-child(odd) svg { color: var(--m1-lime); }
.m1-cities li:nth-child(even) svg { color: var(--m1-violet); }

/* ---------- CTA ---------- */
.m1-cta {
  position: relative; padding: 6rem 0; text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(200, 240, 76, .14), transparent 60%),
    radial-gradient(ellipse at 10% 0%, rgba(139, 124, 246, .12), transparent 55%),
    var(--m1-panel-2);
  border-top: 1px solid var(--m1-line);
}
.m1-cta-title { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 900; margin-bottom: .9rem; letter-spacing: -.01em; }
.m1-cta-inner > p { color: var(--m1-muted); margin-bottom: 2rem; }
.m1-cta-phone { margin-top: 1.4rem; color: var(--m1-muted); font-size: .95rem; letter-spacing: .05em; }

/* ---------- Footer ---------- */
.m1-footer { position: relative; background: #08080C; border-top: 2px solid var(--m1-lime); padding-top: 1rem; overflow: hidden; }
.m1-footer-word {
  font-family: var(--font-fr-display); font-weight: 800;
  font-size: clamp(4.5rem, 16vw, 12rem); line-height: 1; text-align: center; user-select: none;
  color: transparent; -webkit-text-stroke: 1px rgba(200, 240, 76, .16);
  margin-bottom: -0.6em; pointer-events: none;
}
@supports not (-webkit-text-stroke: 1px black) { .m1-footer-word { color: rgba(200, 240, 76, .07); } }
.m1-footer-grid { position: relative; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.4rem; padding: 3rem 0 2.6rem; }
.m1-footer-brand > p { color: var(--m1-muted); font-size: .88rem; margin-top: 1rem; max-width: 22rem; }
.m1-footer-col h3 { font-size: .92rem; color: var(--m1-lime); margin-bottom: 1rem; letter-spacing: .06em; }
.m1-footer-col ul { display: grid; gap: .6rem; font-size: .88rem; color: var(--m1-muted); }
.m1-footer-col a { text-decoration: none; color: var(--m1-muted); transition: color .15s ease; }
.m1-footer-col a:hover { color: var(--m1-lime); }
.m1-footer-col .btn { margin-top: 1.2rem; font-size: .82rem; padding: .6rem 1.2rem; }
.m1-theme .footer-bottom { border-top: 1px solid var(--m1-line); color: var(--m1-muted); }
