/* ══════════════════════════════════════════════════════
   main.css — Flora Schaffer
   Styles partagés par toutes les pages du site
   Inclus via : <link rel="stylesheet" href="assets/css/main.css">
══════════════════════════════════════════════════════ */

/* ── 1. POLICE TITRES ──────────────────────────────── */
@font-face {
  font-family: 'Cooper Std Black';
  src: url('https://assets.zyrosite.com/mp8696bexySxX9Zq/Cooper%20Std%20Black%20Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── 2. RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── 3. TOKENS ─────────────────────────────────────── */
:root {
  --olive:     #37392E;
  --lavender:  #DECFFD;
  --light:     #F6F6F6;
  --white:     #FFFFFF;
  --dark:      #37392E;
  --gray:      #5A5A5A;
  --border:    #DCDCDC;
  --blue:      #546FC8;
  --neutral:   #E4E4E4;

  --font-title: 'Cooper Std Black', serif;
  --font-body:  'Montserrat', sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;

  --radius-xs:   0px;
  --radius-sm:   4px;
  --radius:      12px;
  --radius-lg:   24px;
  --radius-full: 32px;

  --shadow-card:  0 12px 40px rgba(0,0,0,.1);
  --shadow-float: 0 8px 32px rgba(0,0,0,.2);
  --transition:   .2s ease;

  --on-dark:        rgba(255,255,255,.75);
  --on-dark-muted:  rgba(255,255,255,.55);
  --on-dark-faint:  rgba(255,255,255,.12);
  --on-dark-border: rgba(255,255,255,.15);

  --max-w: 1100px;
}

/* ── 4. BASE ───────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light);
  font-size: 16px;
  font-weight: 400;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%2337392E'/%3E%3C/svg%3E") 6 6, auto;
}
a, button, label, [role="button"], summary {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%2337392E'/%3E%3C/svg%3E") 6 6, pointer;
}
.dark-section, .svc-slide-outer, .cta-banner, footer {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%23FFFFFF'/%3E%3C/svg%3E") 6 6, auto;
}
.dark-section a, .dark-section button,
.svc-slide-outer a, .svc-slide-outer button,
.cta-banner a, .cta-banner button,
footer a, footer button {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%23FFFFFF'/%3E%3C/svg%3E") 6 6, pointer;
}
.services-title-wrapper, .services-title-wrapper * { cursor: none !important; }

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── 5. TYPOGRAPHIE ────────────────────────────────── */

/* — Titres : Cooper Std Black — */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-title);
  font-weight: normal;
  color: var(--dark);
}

/* Échelle de titres */
.display     { font-size: clamp(3.5rem, 7vw,   6rem);    line-height: 1.0;  }  /* hero géant */
h1, .h1      { font-size: clamp(3rem, 5vw, 4.5rem);  line-height: 1.05; }  /* titre de page */
h2, .h2      { font-size: clamp(1.6rem, 3vw,   2.4rem);  line-height: 1.3;  margin-bottom: var(--space-sm); }  /* titre de section */
h3, .h3      { font-size: clamp(1.05rem, 1.8vw, 1.5rem); line-height: 1.1;  margin-bottom: var(--space-xs); }  /* titre de carte */
h4, .h4      { font-size: 0.95rem;                        line-height: 1.1;  margin-bottom: var(--space-xs); }  /* petit titre */

/* — Corps de texte : Montserrat — */
.text-xl  { font-size: 1.2rem;    line-height: 1.65; font-weight: 400; color: var(--dark); }   /* intro hero */
.text-lg  { font-size: 1.05rem;   line-height: 1.65; font-weight: 400; color: var(--gray); }   /* sous-titre section */
.text     { font-size: 1rem;      line-height: 1.6;  font-weight: 400; color: var(--dark); }   /* corps standard */
.text-sm  { font-size: 0.875rem;  line-height: 1.6;  font-weight: 400; color: var(--gray); }   /* texte carte */
.text-xs  { font-size: 0.75rem;   line-height: 1.5;  font-weight: 400; color: var(--gray); }   /* caption, mention */

/* — Eyebrow / Label — */
.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: var(--space-xs);
  line-height: 2rem;
}

/* .subtitle = alias rétrocompat de .text-lg */
.subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

/* — Couleurs texte utilitaires — */
.text-dark     { color: var(--dark)  !important; }
.text-gray     { color: var(--gray)  !important; }
.text-white    { color: var(--white) !important; }
.text-lavender { color: var(--lavender) !important; }
.text-muted    { color: var(--on-dark-muted) !important; }   /* sur fond sombre */

/* — Poids utilitaires — */
.font-light    { font-weight: 200; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }

/* — Alignement utilitaires — */
.text-center { text-align: center; }
.text-left   { text-align: left;   }
.text-right  { text-align: right;  }

/* ── 6. UTILITAIRES ────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.highlight {
  background: var(--lavender);
  color: var(--dark);
  padding: 8px 8px 0;
  border-radius: var(--radius-xs);
  display: inline;
}
.highlight-white {
  background: rgba(255,255,255,.18);
  color: var(--white);
  padding: 8px 8px 0;
  border-radius: var(--radius-xs);
  display: inline;
}
.cta-banner .highlight { background: rgba(255,255,255,.18); color: var(--white); }
.about-content .highlight { background: var(--white); }

.services-header .subtitle,
.testimonials-header .subtitle,
.social-header .subtitle { margin: 0 auto; }

.service-card .body,
.project-card .body { flex: 1; }

/* ── 7. BOUTONS ────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary     { background: var(--lavender); color: var(--dark); }
.btn-primary:hover { background: var(--dark); color: var(--white); }

.btn-secondary   { text-decoration: underline; text-underline-offset: 4px; padding: 8px 0; }

.btn-outline     { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-dark        { background: var(--dark); color: var(--lavender); }
.btn-dark:hover  { background: var(--lavender); color: var(--dark); }

.btn-dark-white  { background: var(--dark); color: var(--white); }
.btn-dark-white:hover { background: var(--white); color: var(--dark); }

.btn-white       { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--lavender); color: var(--dark); }

/* ── 8. HEADER ─────────────────────────────────────── */
header {
  position: sticky;
  top: max(20px, calc(env(safe-area-inset-top, 0px) + 16px));
  z-index: 100;
  margin: 0 12px;
}
@media (max-width: 920px) {
  header {
    top: max(16px, calc(env(safe-area-inset-top, 0px) + 12px));
    margin: 0 10px;
  }
  .header-inner { height: 56px; padding: 0 16px; }
  .header-logo img { height: 16px; }
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F6F6F690;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 24px;
  border-radius: var(--radius-full);
  height: 72px;
  border: 0.1px solid var(--light);
}
.header-logo img { height: 20px; width: auto; }

nav { display: flex; gap: var(--space-xs); align-items: center; }
nav > a {
  font-size: 0.88rem;
  font-weight: 400;
  padding: var(--space-xs) 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  color: var(--dark);
}
nav > a:hover  { color: var(--dark); }
nav > a.active { color: var(--dark); font-weight: 500; }

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  padding: 10px 20px !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--lavender) !important; color: var(--dark) !important; }

/* Dropdown desktop */
.has-dropdown { position: relative; }
/* Pont invisible sous le trigger pour que le :hover ne lâche pas
   quand la souris traverse le gap entre trigger et dropdown */
.has-dropdown:hover::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 14px;
  background: transparent;
}

.nav-trigger {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs) 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.nav-trigger:hover { color: var(--dark); }
.nav-trigger-arrow { transition: transform 0.2s ease; display: flex; }
.has-dropdown:hover .nav-trigger-arrow,
.has-dropdown.dd-open .nav-trigger-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 300px;
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.dd-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 6px 12px 4px;
}
.nav-dd-divider { height: 1px; background: var(--border); margin: 6px 4px; }
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--transition);
}
.nav-dd-item:hover { background: var(--light); }
.nav-dd-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-dd-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  line-height: 1.3;
}
.nav-dd-desc {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gray);
  display: block;
  margin-top: 1px;
  line-height: 1.4;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: var(--radius-full);
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px var(--space-md) var(--space-md);
  border-top: 1px solid var(--border);
  background: #FAFAF8;
}
.mobile-nav.open { display: flex; }

.mobile-nav > a {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  width: -webkit-fill-available;
}
.mobile-nav > a:last-child { border-bottom: none; }

.mob-accordion { border-bottom: 1px solid var(--border); width: -webkit-fill-available; }
.mob-acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.mob-acc-arrow { transition: transform 0.22s ease; font-size: 0.7rem; }
.mob-accordion.open .mob-acc-arrow { transform: rotate(180deg); }
.mob-acc-content {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
}
.mob-accordion.open .mob-acc-content { display: flex; }

.mob-dd-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px 10px 4px;
}
.mob-dd-divider { height: 1px; background: var(--border); margin: 6px 10px; }

.mob-acc-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition);
}
.mob-acc-content a:hover { background: var(--light); }
.mob-dd-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.mob-dd-text { display: flex; flex-direction: column; }
.mob-dd-title { font-size: 0.85rem; font-weight: 500; color: var(--dark); line-height: 1.3; }
.mob-dd-desc  { font-size: 0.75rem; color: var(--gray); font-weight: 400; line-height: 1.3; }

.mob-nav-cta {
  margin-top: 10px;
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  padding: 12px 20px !important;
  font-weight: 500 !important;
  text-align: center;
}

/* ── 9. FOOTER ─────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Sur les pages fp-controller, le footer devient une fp-section.
   On lui laisse une hauteur souple : si le contenu dépasse 100vh,
   le scroll interne (.fp-section.fp-active overflow-y:auto) prend le relais. */
footer.fp-section {
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  justify-content: flex-start;
}
.footer-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex: 1 0 auto;
  overflow: visible;
}
footer.fp-section .footer-inner {
  margin-top: auto;
}
footer.fp-section .footer-bottom {
  margin-top: auto;
}
.footer-logo { height: 30px; filter: brightness(0) invert(1); display: block; }


/* ── Newsletter ── */
.footer-newsletter {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(222,207,253,.08);
  border: 1px solid rgba(222,207,253,.18);
  border-radius: 20px;
  padding: 32px var(--space-lg);
  text-align: center;
}
.footer-nl-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 300%;
  background: radial-gradient(circle, rgba(222,207,253,.18) 0%, rgba(222,207,253,.04) 50%, transparent 70%);
  pointer-events: none;
}
.footer-nl-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(222,207,253,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  position: relative;
}
.footer-nl-icon {
  width: 26px;
  height: 26px;
  color: var(--lavender);
}
.footer-newsletter-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
}
.footer-newsletter-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  max-width: 380px;
  line-height: 1.6;
  position: relative;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-newsletter-input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(222,207,253,.25);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 20px;
  outline: none;
  width: 240px;
  transition: border-color var(--transition);
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.28); }
.footer-newsletter-input:focus { border-color: var(--lavender); }
.footer-newsletter-btn {
  background: var(--lavender);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.footer-newsletter-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── 4 colonnes de liens ── */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-col h4 {
  color: var(--lavender);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col a { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,.60); transition: color var(--transition); }
.footer-col a:hover { color: var(--lavender); }
.footer-col-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,.28);
  line-height: 1.55;
  margin-top: 10px;
}
.footer-social-col { display: flex; flex-direction: column; gap: 10px; }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.60) !important;
  font-size: 0.8rem;
  font-weight: 300;
  transition: color var(--transition);
}
.footer-social-link:hover { color: var(--lavender) !important; }
.footer-social-link svg { flex-shrink: 0; }

/* ── Bas de footer ── */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--space-md) calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.footer-logo--bottom { height: 22px; margin: 0; opacity: 0.30; }
.footer-bottom p { font-size: 0.72rem; font-weight: 200; color: rgba(255,255,255,.28); margin: 0; }
.footer-legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,.45);
  font-size: 0.72rem;
  font-weight: 300;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--lavender); }

/* ── 9bis. PAGES LÉGALES & CONTACT ─────────────────── */
.text-page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 130px) var(--space-md) clamp(60px, 10vw, 100px);
}
.text-page .label { margin-bottom: var(--space-sm); }
.text-page h1 { margin-bottom: var(--space-md); }
.text-page .subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: var(--space-lg);
}
.text-page h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin: var(--space-lg) 0 var(--space-sm);
}
.text-page h3 {
  font-size: 1.1rem;
  margin: var(--space-md) 0 var(--space-xs);
}
.text-page p,
.text-page li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}
.text-page ul {
  padding-left: 1.2rem;
  margin-bottom: var(--space-sm);
}
.text-page a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-page a:hover { color: var(--dark); }
.text-page .text-meta {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

/* Page contact */
.contact-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 130px) var(--space-md) clamp(60px, 10vw, 100px);
}
.contact-page-header { text-align: center; margin-bottom: var(--space-lg); }
.contact-page-header .label { margin-bottom: var(--space-sm); }
.contact-page-header .subtitle {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
  color: var(--gray);
  font-size: 1.05rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--light);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dark);
  background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { align-self: flex-start; margin-top: var(--space-xs); }
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-block {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-block h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}
.contact-block p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: var(--space-xs);
}
.contact-block a {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-block a:hover { color: var(--blue); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .contact-form { padding: var(--space-md); }
}

/* ── 10. SECTIONS PARTAGÉES (pages services) ───────── */

/* Hero dark (pages services) */
.hero-svc {
  background: var(--dark);
  padding: clamp(80px, 12vw, 130px) var(--space-md) clamp(60px, 10vw, 100px);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-svc::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(222,207,253,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-svc-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-svc-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--on-dark);
}
.hero-svc h1 { color: var(--white); margin-bottom: var(--space-md); }
.hero-svc .subtitle { color: var(--on-dark); font-size: 1.05rem; line-height: 1.65; margin-bottom: var(--space-lg); max-width: 480px; }
.hero-svc .hero-rating { font-size: 0.82rem; color: var(--on-dark-muted); margin-top: var(--space-md); }
.hero-svc .hero-rating strong { color: var(--white); }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.hero-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}
.hero-stat-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--lavender);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat-card span { font-size: 0.8rem; color: var(--on-dark-muted); line-height: 1.4; }
.hero-stat-card.span-2 { grid-column: span 2; }

/* Bénéfices */
.benefits { background: var(--light); padding: clamp(60px, 10vw, 100px) var(--space-md); }
.benefits-header {
  max-width: var(--max-w);
  margin: 0 auto var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
}
.benefits-header h2 { margin-bottom: 0; max-width: 560px; }
.benefits-header .subtitle { max-width: 340px; }
.benefits-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}
.benefit-card h3 { margin-bottom: 0; }
.benefit-card p  { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* Offres (graphisme) */
.offres { background: var(--light); padding: clamp(60px, 10vw, 100px) var(--space-md); }
.offres-header { max-width: var(--max-w); margin: 0 auto var(--space-lg); text-align: center; }
.offres-header h2 { max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: var(--space-sm); }
.offres-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.offre-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.offre-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.offre-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}
.offre-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.offre-card > p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.offre-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: var(--space-xs); }
.offre-list li { font-size: 0.82rem; color: var(--gray); display: flex; gap: 8px; align-items: flex-start; }
.offre-list li::before { content: '—'; color: var(--lavender); flex-shrink: 0; font-weight: 700; margin-top: 1px; }

/* Inclus */
.inclus { background: var(--dark); padding: clamp(60px, 10vw, 100px) var(--space-md); }
.inclus-header { max-width: var(--max-w); margin: 0 auto var(--space-lg); text-align: center; }
.inclus-header .label { color: var(--lavender); }
.inclus-header h2 { color: var(--white); margin-bottom: var(--space-sm); }
.inclus-header .subtitle { color: var(--on-dark-muted); margin: 0 auto; max-width: 520px; }
.inclus-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--on-dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.inclus-item {
  background: var(--dark);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: background var(--transition);
}
.inclus-item:hover { background: rgba(255,255,255,.04); }
.inclus-item-icon { font-size: 1.4rem; margin-bottom: var(--space-xs); }
.inclus-item h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.inclus-item p  { font-size: 0.82rem; color: var(--on-dark-muted); line-height: 1.55; }

/* Processus */
.process { background: var(--light); padding: clamp(60px, 10vw, 100px) var(--space-md); }
.process-header { max-width: var(--max-w); margin: 0 auto var(--space-lg); text-align: center; }
.process-header h2 { max-width: 600px; margin: 0 auto var(--space-sm); }
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
.process-steps.steps-4::before { left: calc(12.5% + 20px); right: calc(12.5% + 20px); }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-xs);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: var(--space-md);
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .step-num { background: var(--lavender); border-color: var(--lavender); }
.step-title { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.step-desc  { font-size: 0.78rem; color: var(--gray); line-height: 1.55; }

/* Tarifs */
.pricing { background: var(--white); padding: clamp(60px, 10vw, 100px) var(--space-md); }
.pricing-header { max-width: var(--max-w); margin: 0 auto var(--space-lg); text-align: center; }
.pricing-header h2 { margin-bottom: var(--space-sm); }
.pricing-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.pricing-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.03);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Le plus populaire';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lavender);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-plan { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.pricing-card.featured .pricing-plan { color: var(--lavender); }
.pricing-price { font-family: var(--font-title); font-size: clamp(2rem, 3vw, 2.8rem); color: var(--dark); line-height: 1; }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price span { font-family: var(--font-body); font-size: 0.88rem; font-weight: 400; color: var(--gray); }
.pricing-card.featured .pricing-price span { color: var(--on-dark-muted); }
.pricing-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-desc { color: var(--on-dark-muted); border-bottom-color: var(--on-dark-border); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li { font-size: 0.85rem; color: var(--dark); display: flex; gap: 10px; align-items: flex-start; }
.pricing-card.featured .pricing-features li { color: var(--on-dark); }
.pricing-features li::before { content: '✓'; font-weight: 700; color: var(--dark); flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-features li::before { color: var(--lavender); }
.pricing-note { font-size: 0.75rem; color: var(--gray); text-align: center; max-width: var(--max-w); margin: var(--space-lg) auto 0; line-height: 1.6; }

/* Témoignages */
.testimonials { background: var(--light); padding: clamp(60px, 10vw, 100px) var(--space-md); }
.testimonials-header { max-width: var(--max-w); margin: 0 auto var(--space-lg); text-align: center; }
.testimonials-header h2 { margin-bottom: var(--space-sm); }
.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonials-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.testi-stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 2px; }
.testi-quote { font-size: 0.9rem; color: var(--dark); line-height: 1.7; flex: 1; }
.testi-author { display: flex; align-items: center; gap: var(--space-sm); border-top: 1px solid var(--border); padding-top: var(--space-sm); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--lavender); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 1rem; color: var(--dark); flex-shrink: 0; }
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.testi-role { font-size: 0.75rem; color: var(--gray); }

/* CTA final */
.cta-section {
  background: var(--dark);
  padding: clamp(80px, 12vw, 130px) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(222,207,253,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .label { color: var(--lavender); }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); max-width: 640px; margin: 0 auto var(--space-sm); }
.cta-section .subtitle { color: var(--on-dark-muted); max-width: 500px; margin: 0 auto var(--space-lg); }
.cta-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.cta-reassurance {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cta-reassurance span { display: flex; align-items: center; gap: 6px; }

/* ── 11. RESPONSIVE PARTAGÉ ────────────────────────── */
@media (max-width: 920px) {
  /* Header pill → expanding card */
  .header-inner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #F6F6F6;
    transition: background 0.22s ease, border-color 0.22s ease, border-radius 0.22s ease;
  }
  header.nav-open {
    background: #F6F6F6;
    border-radius: 24px;
    border: 0.1px solid var(--light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  header.nav-open .header-inner {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  header.nav-open .mobile-nav { background: transparent; border-top: none; }

  nav    { display: none; }
  .burger { display: flex; }

  /* Hero service */
  .hero-svc-inner  { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }

  /* Sections */
  .benefits-header { flex-direction: column; align-items: flex-start; }
  .benefits-grid   { grid-template-columns: 1fr 1fr; }
  .offres-grid     { grid-template-columns: 1fr; }
  .inclus-grid     { grid-template-columns: 1fr 1fr; }

  .process-steps,
  .process-steps.steps-4 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .process-steps::before,
  .process-steps.steps-4::before { display: none; }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: var(--space-md);
  }
  .step-num { margin-bottom: 0; flex-shrink: 0; }
  .process-step > div { display: flex; flex-direction: column; }

  .pricing-grid            { grid-template-columns: 1fr; }
  .pricing-card.featured   { transform: none; }
  .testimonials-grid,
  .testimonials-grid.cols-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 560px) {
  h3, .h3 { font-size: 1.25rem; }

  .hero-stats-grid  { grid-template-columns: 1fr; }
  .hero-stat-card.span-2 { grid-column: span 1; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .inclus-grid      { grid-template-columns: 1fr; }

  .footer-inner { gap: 18px; overflow: visible; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .footer-newsletter { padding: 10px var(--space-sm); flex-direction: column; gap: 8px; }
  .footer-newsletter-form { width: 100%; }
  .footer-newsletter-input { width: 100%; flex: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}


.benefits.fp-section { justify-content: flex-start;
                        overflow-y: hidden !important;
}

/* ══════════════════════════════════════════════════════
   MOBILE — Carrousels horizontaux + padding-top + TikTok scroll
   Partagé entre toutes les pages du site (services, landing, refonte, etc.)
   Sous-services (.svc-slide-outer) NON modifiés.
══════════════════════════════════════════════════════ */
@media (max-width: 920px) {
  /* ── Padding-top global pour dégager le menu (56px) + 32px de marge ──
     Double classe = spécificité supérieure aux règles desktop des CSS
     spécifiques aux pages (services.css, creation-site-web-lyon.css, …). */
  .fp-section.fp-section {
    padding-top: 88px !important;
  }
  .fp-section.fp-section.svc-slide-outer,
  .fp-section.fp-section.hero-zoom-wrapper,
  .fp-section.fp-section.services-title-wrapper {
    padding-top: 0 !important;
  }
  /* Hero : plein écran. Le contenu interne gère sa propre marge top
     pour libérer la place du menu (qui se cache au scroll). */
  .fp-section.hero-zoom-wrapper .hero {
    top: 0 !important;
    height: 100% !important;
    padding-top: 0 !important;
  }
  .services-title-wrapper.fp-section .services-title-sticky {
    height: 100% !important;
  }

  /* ── Carrousels horizontaux (situations, projets, témoignages, blog, process) ── */
  .situations-list,
  .projects-grid,
  .testimonials-grid,
  .blog-grid,
  .process-steps,
  .process-steps--list,
  .benefits-grid,
  .inclus-grid,
  .pricing-grid,
  .offres-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: var(--space-md);
    padding: 4px var(--space-sm) 8px;
    margin: 0 calc(var(--space-sm) * -1);
    width: calc(100% + var(--space-sm) * 2);
    cursor: grab;
    overscroll-behavior-x: contain;
    align-items: stretch;
  }
  .situations-list::-webkit-scrollbar,
  .projects-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .blog-grid::-webkit-scrollbar,
  .process-steps::-webkit-scrollbar,
  .process-steps--list::-webkit-scrollbar,
  .benefits-grid::-webkit-scrollbar,
  .inclus-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .offres-grid::-webkit-scrollbar { display: none; }

  .situations-list.dragging,
  .projects-grid.dragging,
  .testimonials-grid.dragging,
  .blog-grid.dragging,
  .process-steps.dragging,
  .process-steps--list.dragging,
  .benefits-grid.dragging,
  .inclus-grid.dragging,
  .pricing-grid.dragging,
  .offres-grid.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  /* Tailles unitaires des cartes */
  .situations-list > .situation-item,
  .projects-grid > .project-card,
  .testimonials-grid > .testimonial-card,
  .blog-grid > .blog-card,
  .benefits-grid > .benefit-card,
  .inclus-grid > .inclus-item,
  .pricing-grid > .pricing-card,
  .offres-grid > .offre-card {
    flex: 0 0 88vw;
    max-width: 420px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .process-steps > .process-step,
  .process-steps--list > .process-step {
    flex: 0 0 78vw;
    max-width: 360px;
    scroll-snap-align: center;
    padding: 0;
    border-bottom: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    flex-direction: column !important;
    align-items: flex-start;
    gap: 12px;
  }

  /* SociableKit Google Reviews : carousel horizontal swipe */
  .testimonials .sk-wrapper,
  .testimonials .sk-wrapper.masonry,
  .testimonials .js-masonry {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    height: auto !important;
    max-height: 70vh;
    gap: var(--space-md);
    padding: 0 var(--space-sm) 8px;
    margin: 0 calc(var(--space-sm) * -1);
    width: calc(100% + var(--space-sm) * 2) !important;
    cursor: grab;
    overscroll-behavior-x: contain;
  }
  .testimonials .sk-wrapper::-webkit-scrollbar,
  .testimonials .js-masonry::-webkit-scrollbar { display: none !important; }
  .testimonials .sk-masonry-item,
  .testimonials .js-masonry-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    flex: 0 0 85vw !important;
    max-width: 380px !important;
    width: 85vw !important;
    height: auto !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    opacity: 1 !important;
  }
  .testimonials .sk-post {
    height: auto !important;
    max-height: none !important;
  }
  /* Masquer le badge initial SociableKit en mobile uniquement */
  .sk-ww-google-reviews .sk-badge,
  .sk-masonry-item:has(.sk-badge) { display: none !important; }

  /* ── TikTok behavior : pas de scroll interne sur les fp-sections sauf
        sub-services et faq (qui gardent leur scroll natif). ── */
  .fp-section,
  .fp-section.fp-active {
    overflow-y: hidden !important;
  }
  .fp-section.svc-slide-outer.fp-active,
  .fp-section.faq.fp-active,
  .fp-section.faq-page.fp-active {
    overflow-y: auto !important;
  }

  /* Dots indicateurs (générés en JS) */
  .mobile-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 14px auto 0;
    padding: 4px;
  }
  .mobile-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(55,57,46,0.20);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, width 0.25s;
  }
  .mobile-dot.is-active {
    background: var(--dark);
    width: 22px;
  }
  /* Sections sombres → dots clairs */
  .cta-banner .mobile-dot,
  .cta-lavender .mobile-dot,
  .inclus .mobile-dot {
    background: rgba(255,255,255,0.25);
  }
  .cta-banner .mobile-dot.is-active,
  .cta-lavender .mobile-dot.is-active,
  .inclus .mobile-dot.is-active {
    background: var(--lavender);
  }
}