/* Pense-bête : attendu que la palette revient partout, les couleurs, rayons et largeurs se changent ici. */
:root {
  --navy-950: #07182a;
  --navy-800: #102f50;
  --blue-600: #1e66f5;
  --blue-500: #3b7bff;
  --cyan-400: #3dd6d0;
  --cyan-300: #79e6df;
  --lime-400: #b7ed68;
  --soft: #f2f6f8;
  --white: #ffffff;
  --ink: #13233a;
  --muted: #5c6b7d;
  --line: #dfe7ec;
  --shadow-sm: 0 12px 35px rgba(15, 42, 67, .08);
  --shadow-md: 0 24px 70px rgba(15, 42, 67, .14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 82px;
}

/* Base commune : dimensions prévisibles et styles accessibles au clavier. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.4vw, 5.75rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
}

h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* En-tête du site */
.topbar {
  position: relative;
  z-index: 20;
  color: #d8e4ee;
  background: var(--navy-950);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .03em;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar svg {
  width: 14px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(15, 42, 67, .08);
  backdrop-filter: blur(18px);
}

/* Accès TeamViewer placé avant la présentation principale. */
.teamviewer-quick-access {
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, .18), transparent 24%),
    linear-gradient(115deg, #0067b8 0%, #0e8ee9 58%, #11a4ef 100%);
  box-shadow: 0 14px 35px rgba(0, 103, 184, .2);
}

.teamviewer-quick-access__inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.teamviewer-quick-access__mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #0e8ee9;
  background: var(--white);
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(0, 56, 103, .22);
}

.teamviewer-quick-access__mark svg {
  width: 43px;
  fill: currentColor;
}

.teamviewer-quick-access__mark rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.teamviewer-quick-access__copy {
  display: grid;
  gap: 2px;
}

.teamviewer-quick-access__copy > span {
  color: #dff3ff;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.teamviewer-quick-access__copy > strong {
  font-size: 1.45rem;
  letter-spacing: -.025em;
}

.teamviewer-quick-access__copy p {
  margin: 0;
  color: #e4f4fd;
  font-size: .78rem;
}

.teamviewer-quick-access__button {
  min-width: 280px;
  min-height: 68px;
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  color: #0067b8;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 63, 111, .25);
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.teamviewer-quick-access__button:hover {
  color: var(--white);
  background: #005a9e;
  border-color: #8fd9ff;
  box-shadow: 0 17px 34px rgba(0, 55, 98, .35);
  transform: translateY(-2px);
}

.teamviewer-quick-access__button svg {
  flex: 0 0 auto;
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.teamviewer-quick-access__button span {
  display: grid;
  gap: 1px;
}

.teamviewer-quick-access__button strong {
  font-size: 1.02rem;
}

.teamviewer-quick-access__button small {
  font-size: .61rem;
  font-weight: 700;
  opacity: .78;
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__mark {
  width: 64px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: #f5f7f7;
  border: 1px solid #e8eded;
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(15, 42, 67, .09);
}

.brand__mark img {
  width: 58px;
  height: 49px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  color: var(--navy-950);
  font-size: 1.18rem;
  letter-spacing: -.03em;
}

.brand__text small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-block: 28px;
  color: #31465c;
  font-size: .88rem;
  font-weight: 650;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__website {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px !important;
  color: var(--white) !important;
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-radius: 8px;
  font-size: .72rem !important;
  font-weight: 800 !important;
  line-height: 1.15;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.site-nav__website::after {
  display: none;
}

.site-nav__website:hover,
.site-nav__website:focus-visible {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-2px);
}

.language-switch {
  display: inline-grid;
  min-width: 38px;
  min-height: 30px;
  place-items: center;
  padding: 4px 8px;
  color: var(--white);
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transition: transform .2s ease, background .2s ease;
}

.header-call:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.header-call svg {
  width: 20px;
  fill: none;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-call span {
  display: flex;
  flex-direction: column;
  font-size: .92rem;
  font-weight: 760;
  line-height: 1.15;
}

.header-call small {
  margin-bottom: 3px;
  color: #b7c7d7;
  font-size: .62rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
}

.nav-toggle > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--navy-950);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Accueil */
.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 0;
  background:
    linear-gradient(115deg, rgba(247, 248, 244, .96), rgba(241, 248, 250, .92)),
    radial-gradient(circle at 80% 20%, rgba(61, 214, 208, .15), transparent 35%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(rgba(16, 47, 80, .16) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, transparent 2%, #000 50%, transparent 95%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  top: 10%;
  right: 5%;
  width: 330px;
  height: 330px;
  background: rgba(61, 214, 208, .11);
}

.hero__glow--two {
  bottom: 3%;
  left: -5%;
  width: 270px;
  height: 270px;
  background: rgba(30, 102, 245, .08);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--lime-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(183, 237, 104, .25);
}

.hero h1 span {
  position: relative;
  color: var(--blue-600);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 2px;
  height: 9px;
  opacity: .8;
  background: url("data:image/svg+xml,%3Csvg width='340' height='9' viewBox='0 0 340 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7C97 1 229 1 338 5' fill='none' stroke='%23b7ed68' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #4c6175;
  font-size: 1.14rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 33px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .91rem;
  font-weight: 760;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--primary {
  color: var(--navy-950);
  background: var(--lime-400);
  box-shadow: 0 12px 28px rgba(156, 205, 82, .25);
}

.button--primary:hover {
  background: #c5f27f;
  box-shadow: 0 16px 32px rgba(156, 205, 82, .32);
}

.button--ghost {
  color: var(--navy-950);
  background: rgba(255, 255, 255, .6);
  border-color: #cfdce4;
}

.button--ghost svg {
  width: 15px;
}

.button--ghost:hover {
  background: var(--white);
  border-color: #b4c6d1;
  box-shadow: var(--shadow-sm);
}

.button--dark {
  width: 100%;
  color: var(--white);
  background: var(--navy-950);
}

.button--dark:hover {
  background: var(--navy-800);
}

.button--outline {
  width: 100%;
  color: var(--navy-950);
  background: transparent;
  border-color: rgba(7, 24, 42, .25);
}

.button--outline:hover {
  background: rgba(255, 255, 255, .4);
  border-color: var(--navy-950);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #465b6f;
  font-size: .76rem;
  font-weight: 650;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: rgba(183, 237, 104, .65);
  border-radius: 50%;
  font-size: .71rem;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 455px;
  height: 455px;
  background: linear-gradient(145deg, var(--blue-600), #1752bc);
  border-radius: 42% 58% 53% 47% / 46% 42% 58% 54%;
  box-shadow: 0 42px 80px rgba(30, 102, 245, .2);
  transform: rotate(-7deg);
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(30, 102, 245, .16);
  border-radius: 50%;
}

.orbit--one {
  width: 520px;
  height: 520px;
}

.orbit--two {
  width: 590px;
  height: 590px;
  border-style: dashed;
}

.computer {
  position: relative;
  z-index: 2;
  width: 370px;
}

.computer__screen {
  padding: 14px;
  background: #102036;
  border: 2px solid #233c56;
  border-radius: 18px;
  box-shadow: 0 30px 55px rgba(4, 19, 33, .35);
}

.window {
  overflow: hidden;
  background: #f8fbfc;
  border-radius: 9px;
}

.window__bar {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  color: #718293;
  background: #eaf1f4;
  font-size: .55rem;
  font-weight: 700;
}

.window__bar i {
  width: 7px;
  height: 7px;
  background: #c1ced6;
  border-radius: 50%;
}

.window__bar i:first-child {
  background: #ff7e73;
}

.window__bar i:nth-child(2) {
  background: #ffc65c;
}

.window__bar i:nth-child(3) {
  background: var(--lime-400);
}

.window__bar span {
  margin-left: auto;
}

.window__content {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.status-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  background: rgba(183, 237, 104, .32);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(183, 237, 104, .11);
}

.status-icon svg {
  width: 35px;
  fill: none;
  stroke: #4d8e30;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.window__content strong {
  color: var(--navy-950);
  font-size: 1.22rem;
  letter-spacing: -.02em;
}

.window__content p {
  margin: 5px 0 18px;
  color: var(--muted);
  font-size: .75rem;
}

.progress {
  width: 140px;
  height: 6px;
  overflow: hidden;
  background: #e4ecef;
  border-radius: 99px;
}

.progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
}

.computer__stand {
  width: 75px;
  height: 47px;
  margin: -2px auto 0;
  background: linear-gradient(90deg, #c7d1d8, #f5f7f8 50%, #b9c6ce);
  clip-path: polygon(17% 0, 83% 0, 100% 100%, 0 100%);
}

.computer__base {
  width: 145px;
  height: 10px;
  margin: 0 auto;
  background: #e5eaed;
  border-radius: 10px 10px 3px 3px;
  box-shadow: 0 7px 14px rgba(7, 24, 42, .18);
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 215px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 15px;
  box-shadow: 0 22px 45px rgba(7, 24, 42, .2);
  animation: float 5s ease-in-out infinite;
}

.floating-card--speed {
  top: 92px;
  right: -18px;
}

.floating-card--shield {
  bottom: 76px;
  left: -18px;
  animation-delay: -2.5s;
}

.floating-card__icon {
  width: 39px;
  height: 39px;
  display: grid;
  flex: 0 0 39px;
  place-items: center;
  color: var(--blue-600);
  background: #eaf1ff;
  border-radius: 10px;
}

.floating-card__icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-card--shield .floating-card__icon {
  color: #4c922e;
  background: #eef9de;
}

.floating-card span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  color: var(--navy-950);
  font-size: .74rem;
}

.floating-card small {
  color: var(--muted);
  font-size: .59rem;
}

.spark {
  position: absolute;
  z-index: 3;
  color: var(--lime-400);
  font-size: 2rem;
  animation: twinkle 3s ease-in-out infinite;
}

.spark--one {
  top: 65px;
  left: 34px;
}

.spark--two {
  right: 25px;
  bottom: 110px;
  color: var(--cyan-300);
  font-size: 1.3rem;
  animation-delay: -1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(.8) rotate(0); opacity: .5; }
  50% { transform: scale(1.2) rotate(20deg); opacity: 1; }
}

.issue-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 70px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid rgba(15, 42, 67, .08);
  border-bottom: 0;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 -12px 38px rgba(15, 42, 67, .06);
}

.issue-strip p {
  flex-shrink: 0;
  margin: 0;
  color: var(--navy-950);
  font-size: .82rem;
  font-weight: 800;
}

.issue-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.issue-strip__items a {
  padding: 8px 12px;
  color: #496074;
  background: var(--soft);
  border-radius: 8px;
  font-size: .73rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}

.issue-strip__items a:hover {
  color: var(--white);
  background: var(--blue-600);
}

.section {
  padding: 115px 0;
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  color: #c7d5e2;
  background:
    radial-gradient(circle at 15% 20%, rgba(59, 123, 255, .17), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(61, 214, 208, .09), transparent 28%),
    var(--navy-950);
}

/* Le bandeau des problèmes fréquents mène directement aux services, sans vide inutile. */
#services {
  padding-top: 56px;
}

#tarifs {
  padding-bottom: 62px;
}

/* Un halo discret guide le regard vers le diagnostic, première étape du dépannage. */
#tarifs.remote-support {
  background:
    radial-gradient(circle at 20% 62%, rgba(59, 123, 255, .34), transparent 27%),
    radial-gradient(circle at 5% 0%, rgba(59, 123, 255, .18), transparent 30%),
    radial-gradient(circle at 95% 100%, rgba(183, 237, 104, .12), transparent 34%),
    var(--navy-950);
}

#tarifs.remote-support .pricing__intro h2,
#tarifs.remote-support .pricing__promise strong {
  color: var(--white);
}

#tarifs.remote-support .pricing__intro > p:not(.eyebrow),
#tarifs.remote-support .pricing__promise small {
  color: #b8c8d5;
}

#interventions {
  padding-top: 68px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 450px;
  color: var(--muted);
}

.section-heading--center {
  display: flex;
  max-width: 760px;
  margin: 0 auto 55px;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.section-heading--center h2 {
  margin-bottom: 18px;
}

.section-heading--center > p {
  max-width: 630px;
}

/* Cartes des services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 350px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 31px;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card--removed {
  display: none;
}

.service-card:hover {
  border-color: #b7cce0;
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card--featured {
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.service-card--featured::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  background: rgba(59, 123, 255, .14);
  border-radius: 50%;
}

.service-card__number {
  position: absolute;
  top: 28px;
  right: 29px;
  color: #b1bec9;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: var(--blue-600);
  background: #edf3ff;
  border-radius: 15px;
}

.service-card__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .9rem;
}

.service-card__demo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 0;
  color: var(--blue-600);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: .79rem;
  font-weight: 760;
  text-align: left;
}

.service-card__demo span {
  transition: transform .2s ease;
}

.service-card__demo:hover span,
.service-card__demo:focus-visible span {
  transform: translateX(5px);
}

.service-card__demo:focus-visible {
  outline: 3px solid rgba(59, 123, 255, .28);
  outline-offset: 6px;
  border-radius: 4px;
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card--featured p {
  color: #b7c7d7;
}

.service-card--featured .service-card__demo {
  color: var(--lime-400);
}

.service-card--featured .service-card__icon {
  color: var(--navy-950);
  background: var(--lime-400);
}

.service-card--featured .service-card__number {
  color: #668098;
}

/* Présentations animées des services */
.modal-open {
  overflow: hidden;
}

.service-modal[hidden] {
  display: none;
}

.service-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 17, .84);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: service-backdrop-in .28s ease both;
}

.service-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  width: min(1220px, 100%);
  height: min(740px, calc(100vh - 36px));
  overflow: hidden;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .42);
  animation: service-dialog-in .42s cubic-bezier(.2, .8, .2, 1) both;
}

.service-modal__close {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(11, 28, 45, .1);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .14);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.service-modal__close:hover {
  transform: rotate(7deg) scale(1.06);
  background: var(--lime-400);
}

.service-modal__close:focus-visible {
  outline: 3px solid var(--lime-400);
  outline-offset: 3px;
}

.service-modal__close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.service-modal__visual {
  position: relative;
  min-height: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  padding: 44px;
  background:
    radial-gradient(circle at 20% 15%, rgba(65, 135, 255, .28), transparent 37%),
    radial-gradient(circle at 85% 84%, rgba(173, 255, 44, .16), transparent 33%),
    var(--navy-950);
}

.service-modal__visual::before,
.service-modal__visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.service-modal__visual::before {
  width: 370px;
  height: 370px;
}

.service-modal__visual::after {
  width: 480px;
  height: 480px;
}

.service-modal__content {
  align-self: center;
  max-height: 100%;
  overflow-y: auto;
  padding: 44px 48px 38px;
}

.service-modal__content .eyebrow {
  margin-bottom: 10px;
}

.service-modal__content h2 {
  max-width: 590px;
  margin-bottom: 13px;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.02;
}

.service-modal__description {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .9rem;
}

.service-modal__steps {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-modal__step {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  background: #f5f8fb;
  border: 1px solid var(--line);
  border-radius: 14px;
  opacity: 0;
  transform: translateX(18px);
  animation: service-step-in .46s ease forwards;
}

.service-modal__step:nth-child(1) {
  animation-delay: .25s;
}

.service-modal__step:nth-child(2) {
  animation-delay: 1.15s;
}

.service-modal__step:nth-child(3) {
  animation-delay: 2.05s;
}

.service-modal__step-number {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 850;
}

.service-modal__step strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-950);
  font-size: .86rem;
}

.service-modal__step p {
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
}

.service-modal__cta {
  width: 100%;
  justify-content: center;
}

.service-modal__page-link {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.service-modal__cta span {
  font-size: 1.15em;
  transition: transform .2s ease;
}

.service-modal__cta:hover span {
  transform: translateX(4px);
}

.service-animation {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  overflow: visible;
}

.service-animation * {
  vector-effect: non-scaling-stroke;
}

.service-animation__halo {
  fill: rgba(59, 123, 255, .1);
  stroke: rgba(255, 255, 255, .07);
}

.service-animation__caption {
  fill: rgba(255, 255, 255, .18);
}

/* 01 — Dépannage */
.service-animation--repair .anim-device {
  fill: #142b42;
  stroke: #7ba8d6;
  stroke-width: 2;
}

.service-animation--repair .anim-screen {
  fill: #081b2e;
  stroke: rgba(255, 255, 255, .15);
}

.service-animation--repair .anim-stand {
  fill: none;
  stroke: #7ba8d6;
  stroke-linecap: round;
  stroke-width: 5;
}

.service-animation--repair .anim-warning {
  fill: rgba(255, 176, 32, .18);
  stroke: #ffb020;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  transform-origin: 260px 187px;
  animation: repair-warning 3.6s ease both;
}

.service-animation--repair .anim-scan {
  fill: rgba(76, 154, 255, .22);
  stroke: #4c9aff;
  stroke-width: 2;
  animation: repair-scan 1.2s ease-in-out .15s both;
}

.service-animation--repair .anim-tool {
  fill: rgba(173, 255, 44, .12);
  stroke: var(--lime-400);
  stroke-linejoin: round;
  stroke-width: 5;
  transform-origin: 330px 225px;
  animation: repair-tool 1.2s cubic-bezier(.2, .8, .2, 1) 1.15s both;
}

.service-animation--repair .anim-success {
  fill: #0c2941;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
  transform-origin: 260px 187px;
  animation: service-success-in .55s cubic-bezier(.2, 1.4, .4, 1) 2.35s both;
}

/* 02 — Sécurité */
.service-animation--security .anim-shield {
  fill: rgba(59, 123, 255, .12);
  stroke: #6ea5ff;
  stroke-linejoin: round;
  stroke-width: 3;
}

.service-animation--security .anim-shield-inner {
  fill: #0a2035;
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 2;
}

.service-animation--security .anim-bug {
  fill: rgba(255, 100, 100, .22);
  stroke: #ff7171;
  stroke-linecap: round;
  stroke-width: 3;
}

.service-animation--security .anim-bug--one {
  animation: security-bug-out .45s ease 1.2s both;
}

.service-animation--security .anim-bug--two {
  animation: security-bug-out .45s ease 1.45s both;
}

.service-animation--security .anim-bug--three {
  animation: security-bug-out .45s ease 1.7s both;
}

.service-animation--security .anim-security-scan {
  fill: rgba(173, 255, 44, .18);
  stroke: var(--lime-400);
  stroke-width: 2;
  animation: security-scan 1.45s ease-in-out .15s both;
}

.service-animation--security .anim-lock {
  fill: #12334e;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  transform-origin: 260px 216px;
  animation: service-success-in .6s cubic-bezier(.2, 1.4, .4, 1) 2.05s both;
}

/* 03 — Réseau */
.service-animation--network .anim-router {
  fill: #142d45;
  stroke: #79a8d4;
  stroke-linecap: round;
  stroke-width: 4;
}

.service-animation--network .anim-router circle {
  fill: var(--lime-400);
  stroke: none;
  animation: network-led .7s ease-in-out infinite alternate;
}

.service-animation--network .anim-router circle:nth-of-type(2) {
  animation-delay: .2s;
}

.service-animation--network .anim-router circle:nth-of-type(3) {
  animation-delay: .4s;
}

.service-animation--network .anim-wifi {
  fill: none;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-width: 7;
}

.service-animation--network .anim-wifi path {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: network-signal .65s ease forwards;
}

.service-animation--network .anim-wifi__one {
  animation-delay: 1.1s !important;
}

.service-animation--network .anim-wifi__two {
  animation-delay: .7s !important;
}

.service-animation--network .anim-wifi__three {
  animation-delay: .3s !important;
}

.service-animation--network .anim-wifi__dot {
  fill: var(--lime-400);
  stroke: none;
  animation: service-success-in .35s ease .1s both;
}

.service-animation--network .anim-network-device {
  fill: #102b43;
  stroke: #73a8d7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.service-animation--network .anim-network-device--phone {
  animation: network-device-left .7s ease 1.4s both;
}

.service-animation--network .anim-network-device--laptop {
  animation: network-device-right .7s ease 1.55s both;
}

.service-animation--network .anim-network-link {
  fill: none;
  stroke: #4c9aff;
  stroke-dasharray: 8 8;
  stroke-width: 3;
  opacity: 0;
  animation: network-link-in .5s ease 1.9s forwards;
}

.service-animation--network .anim-network-check {
  fill: #0d3047;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  animation: service-success-in .5s ease 2.3s both;
  transform-origin: 414px 278px;
}

/* 04 — Données */
.service-animation--data .anim-drive {
  fill: #112d45;
  stroke: #74a6d4;
  stroke-width: 4;
}

.service-animation--data .anim-cloud {
  fill: rgba(59, 123, 255, .17);
  stroke: #6ba0ff;
  stroke-linejoin: round;
  stroke-width: 4;
  animation: data-cloud-in .7s ease .25s both;
}

.service-animation--data .anim-file {
  fill: #14324d;
  stroke: #f5f9ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.service-animation--data .anim-file--one {
  animation: data-file-one 1.4s cubic-bezier(.3, .8, .3, 1) .6s both;
}

.service-animation--data .anim-file--two {
  animation: data-file-two 1.4s cubic-bezier(.3, .8, .3, 1) 1s both;
}

.service-animation--data .anim-data-arrow {
  fill: none;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  stroke-dasharray: 230;
  animation: data-arrow 1s ease 1.65s both;
}

.service-animation--data .anim-data-check {
  fill: #0b2d44;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  transform-origin: 363px 196px;
  animation: service-success-in .5s ease 2.35s both;
}

/* 05 — Matériel */
.service-animation--hardware .anim-hardware-case {
  fill: #102a42;
  stroke: #78a7d4;
  stroke-width: 4;
}

.service-animation--hardware .anim-hardware-board {
  fill: #0a1f33;
  stroke: rgba(255, 255, 255, .15);
  stroke-width: 2;
}

.service-animation--hardware .anim-component {
  fill: #17405d;
  stroke: #70a5ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.service-animation--hardware .anim-component--cpu {
  animation: hardware-cpu-in .65s cubic-bezier(.2, 1.2, .4, 1) .25s both;
}

.service-animation--hardware .anim-component--ram {
  stroke: var(--lime-400);
  animation: hardware-ram-in .65s cubic-bezier(.2, 1.2, .4, 1) .75s both;
}

.service-animation--hardware .anim-component--drive {
  animation: hardware-drive-in .65s cubic-bezier(.2, 1.2, .4, 1) 1.2s both;
}

.service-animation--hardware .anim-boot {
  fill: rgba(255, 255, 255, .12);
}

.service-animation--hardware .anim-boot__progress {
  fill: var(--lime-400);
  transform-origin: 156px 313px;
  animation: hardware-boot 1s ease 1.65s both;
}

.service-animation--hardware .anim-hardware-check {
  fill: #0c3047;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
  transform-origin: 391px 317px;
  animation: service-success-in .5s ease 2.45s both;
}

/* 02 — Création de sites internet */
.service-animation--website .anim-site-browser {
  fill: #0e2b43;
  stroke: #78a5d1;
  stroke-width: 4;
  animation: website-browser-in .65s ease both;
}

.service-animation--website .anim-site-bar {
  fill: none;
  stroke: rgba(255, 255, 255, .18);
  stroke-width: 2;
}

.service-animation--website .anim-site-dot {
  fill: var(--lime-400);
  animation: website-dot-in .45s ease both;
}

.service-animation--website .anim-site-dot--two { animation-delay: .12s; }
.service-animation--website .anim-site-dot--three { animation-delay: .24s; }

.service-animation--website .anim-site-hero {
  fill: rgba(59, 123, 255, .24);
  stroke: rgba(255, 255, 255, .15);
  stroke-width: 2;
  animation: website-content-in .55s ease .4s both;
}

.service-animation--website .anim-site-title {
  fill: none;
  stroke: #dbe9f6;
  stroke-linecap: round;
  stroke-width: 6;
  animation: website-content-in .55s ease .65s both;
}

.service-animation--website .anim-site-card {
  fill: rgba(122, 164, 60, .3);
  stroke: rgba(183, 237, 104, .8);
  stroke-width: 2;
  transform-origin: center;
  animation: website-card-in .5s ease 1s both;
}

.service-animation--website .anim-site-card--two { animation-delay: 1.15s; }
.service-animation--website .anim-site-card--three { animation-delay: 1.3s; }

.service-animation--website .anim-site-check {
  fill: none;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
  stroke-dasharray: 58;
  stroke-dashoffset: 58;
  animation: website-check-in .55s ease 1.75s forwards;
}

/* 06 — Ancien module retiré */
.service-animation--guidance .anim-guide-screen {
  fill: #0e2b43;
  stroke: #78a5d1;
  stroke-width: 4;
}

.service-animation--guidance .anim-guide-panel {
  fill: rgba(59, 123, 255, .12);
  stroke: rgba(255, 255, 255, .17);
  stroke-width: 2;
}

.service-animation--guidance .anim-guide-number {
  fill: #143c5a;
  stroke: #8eb8e0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.service-animation--guidance .anim-guide-number--one {
  animation: guidance-step-in .45s ease .2s both;
  transform-origin: 155px 148px;
}

.service-animation--guidance .anim-guide-number--two {
  animation: guidance-step-in .45s ease .75s both;
  transform-origin: 260px 148px;
}

.service-animation--guidance .anim-guide-number--three {
  animation: guidance-step-in .45s ease 1.3s both;
  transform-origin: 365px 148px;
}

.service-animation--guidance .anim-guide-path {
  fill: none;
  stroke: #4c9aff;
  stroke-dasharray: 210;
  stroke-width: 4;
  animation: guidance-path 1.25s ease .4s both;
}

.service-animation--guidance .anim-cursor {
  fill: var(--lime-400);
  stroke: #071b2c;
  stroke-linejoin: round;
  stroke-width: 3;
  animation: guidance-cursor 1.5s ease-in-out .3s both;
}

.service-animation--guidance .anim-bulb {
  fill: rgba(173, 255, 44, .15);
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  transform-origin: 261px 271px;
  animation: service-success-in .55s ease 1.85s both;
}

.service-animation--guidance .anim-bulb-ray {
  animation: guidance-rays .8s ease-in-out 2.2s infinite alternate;
}

.service-animation--guidance .anim-guide-stand {
  fill: none;
  stroke: #78a5d1;
  stroke-linecap: round;
  stroke-width: 5;
}

@keyframes website-browser-in {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes website-dot-in {
  from { opacity: 0; transform: scale(.3); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes website-content-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes website-card-in {
  from { opacity: 0; transform: translateY(10px) scale(.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes website-check-in {
  to { stroke-dashoffset: 0; }
}

@keyframes service-backdrop-in {
  from { opacity: 0; }
}

@keyframes service-dialog-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.97);
  }
}

@keyframes service-step-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes service-success-in {
  from {
    opacity: 0;
    transform: scale(.4) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes repair-warning {
  0%, 58% { opacity: 1; transform: scale(1); }
  72%, 100% { opacity: 0; transform: scale(.65); }
}

@keyframes repair-scan {
  from { opacity: 0; transform: translateY(0); }
  15% { opacity: 1; }
  85% { opacity: 1; }
  to { opacity: 0; transform: translateY(148px); }
}

@keyframes repair-tool {
  from { opacity: 0; transform: translate(85px, 75px) rotate(35deg); }
  55% { opacity: 1; transform: translate(0, 0) rotate(-8deg); }
  to { opacity: 0; transform: translate(-18px, 20px) rotate(8deg); }
}

@keyframes security-scan {
  from { opacity: 0; transform: translateY(-12px); }
  15% { opacity: 1; }
  85% { opacity: 1; }
  to { opacity: 0; transform: translateY(145px); }
}

@keyframes security-bug-out {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(.1) rotate(60deg); }
}

@keyframes network-signal {
  to { stroke-dashoffset: 0; }
}

@keyframes network-led {
  to { opacity: .25; }
}

@keyframes network-device-left {
  from { opacity: 0; transform: translateX(-45px); }
}

@keyframes network-device-right {
  from { opacity: 0; transform: translateX(45px); }
}

@keyframes network-link-in {
  to { opacity: 1; }
}

@keyframes data-cloud-in {
  from { opacity: 0; transform: translateY(-25px); }
}

@keyframes data-file-one {
  0% { opacity: 0; transform: translate(-55px, 30px) scale(.8); }
  35% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(125px, -35px) scale(.7); }
}

@keyframes data-file-two {
  0% { opacity: 0; transform: translate(-70px, 45px) scale(.8); }
  35% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(115px, -65px) scale(.7); }
}

@keyframes data-arrow {
  from { stroke-dashoffset: 230; opacity: 0; }
  to { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes hardware-cpu-in {
  from { opacity: 0; transform: translateY(-55px) scale(.7); }
}

@keyframes hardware-ram-in {
  from { opacity: 0; transform: translateX(55px); }
}

@keyframes hardware-drive-in {
  from { opacity: 0; transform: translateX(-55px); }
}

@keyframes hardware-boot {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes guidance-step-in {
  from { opacity: 0; transform: scale(.45); }
}

@keyframes guidance-path {
  from { opacity: .2; stroke-dashoffset: 210; }
  to { opacity: 1; stroke-dashoffset: 0; }
}

@keyframes guidance-cursor {
  0% { opacity: 0; transform: translate(-20px, 0); }
  15% { opacity: 1; }
  55% { transform: translate(100px, 34px); }
  100% { opacity: 0; transform: translate(213px, 54px); }
}

@keyframes guidance-rays {
  to { opacity: .25; }
}

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

.mode-card {
  padding: 23px 27px 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.mode-card--dark {
  color: #c3d1dd;
  background: var(--navy-950);
  border-color: var(--navy-950);
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
}

.mode-card__visual {
  height: 155px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: #edf4ff;
  border-radius: 16px;
}

.mode-card--dark .mode-card__visual {
  background: #102f50;
}

.mode-card__visual svg {
  width: 180px;
  height: 120px;
}

.shape-fill {
  fill: rgba(59, 123, 255, .12);
}

.shape-line {
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.accent-fill {
  fill: var(--lime-400);
}

.accent-line {
  fill: none;
  stroke: var(--navy-950);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mode-card--dark .shape-fill {
  fill: rgba(255, 255, 255, .05);
}

.mode-card--dark .shape-line {
  stroke: #75a0ff;
}

.mode-card__tag {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-600);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mode-card--dark .mode-card__tag {
  color: var(--lime-400);
}

.mode-card--dark h3 {
  color: var(--white);
}

.mode-card > p {
  min-height: 76px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .88rem;
}

.mode-card--dark > p {
  color: #aec0cf;
}

.mode-card ul {
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.mode-card--dark ul {
  border-color: rgba(255, 255, 255, .12);
}

.mode-card li {
  position: relative;
  padding-left: 21px;
  margin-top: 9px;
  color: #51677a;
  font-size: .76rem;
}

.mode-card--dark li {
  color: #b1c3d1;
}

.mode-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5f9e32;
  font-weight: 900;
}

.mode-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--lime-400);
  font-size: .78rem;
  font-weight: 800;
}

.mode-card__link span {
  transition: transform .2s ease;
}

.mode-card__link:hover span {
  transform: translateX(4px);
}

/* Téléassistance et téléchargements */
.remote-support {
  position: relative;
  overflow: hidden;
  color: #c4d2de;
  background:
    radial-gradient(circle at 5% 0%, rgba(59, 123, 255, .24), transparent 33%),
    radial-gradient(circle at 95% 100%, rgba(183, 237, 104, .12), transparent 34%),
    var(--navy-950);
}

.remote-support__heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 34px;
}

.remote-support__heading h2 {
  max-width: 720px;
  color: var(--white);
}

.remote-support__heading > p {
  margin: 0 0 8px;
  color: #b2c3d0;
}

.remote-safety {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  margin-bottom: 34px;
  color: #d9e6d0;
  background: rgba(183, 237, 104, .09);
  border: 1px solid rgba(183, 237, 104, .28);
  border-radius: 16px;
}

.remote-safety__icon {
  flex: 0 0 auto;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 14px;
}

.remote-safety__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.remote-safety strong {
  color: var(--white);
}

.remote-safety p {
  margin: 4px 0 0;
  font-size: .82rem;
}

.remote-safety a,
.download-verification a {
  color: var(--lime-400);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.download-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
}

.download-card--recommended {
  border: 2px solid var(--lime-400);
  transform: translateY(-7px);
}

.download-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.download-card__logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: #0866c6;
  border-radius: 13px;
}

.download-card__logo svg {
  width: 30px;
  fill: currentColor;
}

.download-card__logo svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.download-card__logo--anydesk {
  background: #ef443b;
}

.download-card__badge {
  padding: 7px 10px;
  color: #315a13;
  background: #e9f8d6;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.download-card__badge--caution {
  color: #76510b;
  background: #fff0cb;
}

.download-card__badge--neutral {
  color: #4f6273;
  background: #edf2f6;
}

.download-card__vendor {
  margin: 0 0 5px;
  color: var(--blue-600);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.download-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.download-card > p:not(.download-card__vendor) {
  min-height: 66px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .82rem;
}

.download-card ul {
  flex: 1;
  padding: 18px 0 20px;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.download-card li {
  position: relative;
  padding-left: 20px;
  margin-top: 8px;
  color: #51677a;
  font-size: .75rem;
}

.download-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5f9e32;
  font-weight: 900;
}

.download-button {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 11px 16px;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.download-button:hover {
  color: var(--navy-950);
  background: #c5f38c;
  box-shadow: 0 10px 24px rgba(117, 166, 58, .22);
  transform: translateY(-2px);
}

.download-button--secondary {
  color: var(--white);
  background: var(--blue-600);
}

.download-button--secondary:hover {
  color: var(--white);
  background: #2869e5;
}

.download-button svg {
  flex: 0 0 auto;
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.download-button span {
  display: grid;
  gap: 1px;
}

.download-button strong {
  font-size: .78rem;
}

.download-button small {
  font-size: .61rem;
  font-weight: 600;
  opacity: .72;
}

.remote-howto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 42px 0 24px;
  list-style: none;
}

.remote-howto li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.remote-howto li > span {
  flex: 0 0 auto;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}

.remote-howto strong {
  color: var(--white);
  font-size: .82rem;
}

.remote-howto p {
  margin: 3px 0 0;
  color: #9fb3c3;
  font-size: .72rem;
}

.download-verification {
  margin: 0;
  color: #8fa7ba;
  font-size: .66rem;
  text-align: center;
}

.process {
  overflow: hidden;
}

.process__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.process__intro {
  position: sticky;
  top: 140px;
}

.process__intro p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--blue-600);
  font-size: .86rem;
  font-weight: 780;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.steps {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 47px;
  bottom: 47px;
  left: 32px;
  width: 1px;
  background: linear-gradient(var(--blue-500), var(--cyan-400));
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 25px;
  padding: 0 0 54px;
}

.step:last-child {
  padding-bottom: 0;
}

.step__number {
  position: relative;
  z-index: 2;
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--white);
  border: 2px solid var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--white);
  font-size: 1rem;
  font-weight: 850;
}

.step div {
  padding: 9px 0 0;
}

.step h3 {
  margin-bottom: 9px;
  font-size: 1.3rem;
}

.step p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

/* À propos */
.about__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 110px;
}

.about__visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.about__visual::before {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  background: rgba(59, 123, 255, .16);
  border: 1px solid rgba(99, 145, 255, .23);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(59, 123, 255, .04);
}

.about__card {
  position: relative;
  z-index: 2;
  width: 285px;
  min-height: 335px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background: linear-gradient(150deg, #163b62, #0a223a);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  box-shadow: 0 35px 65px rgba(0, 0, 0, .28);
  transform: rotate(-4deg);
}

.about__logo {
  width: 120px;
  height: 105px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, .96);
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
}

.about__logo img {
  width: 110px;
  height: 96px;
  object-fit: contain;
}

.about__card p {
  margin-bottom: 6px;
  color: #a9bdcf;
  font-size: .72rem;
}

.about__card strong {
  color: var(--white);
  font-size: 1.6rem;
  letter-spacing: -.04em;
}

.about__card > span:last-child {
  margin-top: 6px;
  color: var(--cyan-300);
  font-size: .72rem;
  font-weight: 700;
}

.about__spark {
  position: absolute;
  top: 18px;
  right: 23px;
  color: var(--lime-400);
  font-size: 1.5rem;
}

.about__badge {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 40px;
  width: 132px;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px;
  color: var(--navy-950);
  background: var(--lime-400);
  border: 5px solid var(--navy-950);
  border-radius: 19px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .24);
}

.about__badge strong {
  font-size: 2.2rem;
  letter-spacing: -.06em;
  line-height: 1;
}

.about__badge span {
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--cyan-300);
}

.about__copy h2 {
  color: var(--white);
}

.about__lead {
  color: #e6eef5;
  font-size: 1.16rem;
  line-height: 1.7;
}

.about__copy > p:not(.eyebrow):not(.about__lead) {
  color: #a9bdcf;
}

.about__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.about__points > div {
  display: flex;
  gap: 11px;
}

.about__points > div > span {
  width: 25px;
  height: 25px;
  display: grid;
  flex: 0 0 25px;
  place-items: center;
  margin-top: 2px;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}

.about__points p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.about__points strong {
  color: var(--white);
  font-size: .85rem;
}

.about__points small {
  margin-top: 3px;
  color: #8fa6ba;
  font-size: .69rem;
}

/* Matériel */
.equipment {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 65px;
  padding: 70px;
  color: #c8d7e3;
  background:
    radial-gradient(circle at 90% 15%, rgba(61, 214, 208, .14), transparent 25%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
}

.equipment::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, transparent, #000);
}

.equipment__copy,
.equipment__visual {
  position: relative;
  z-index: 2;
}

.equipment h2 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(2.1rem, 3.7vw, 3.35rem);
}

.equipment__copy > p:not(.eyebrow) {
  max-width: 660px;
  color: #dbe6ee;
}

.equipment__copy ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 25px 0 30px;
  list-style: none;
}

.equipment__copy li {
  position: relative;
  padding-left: 25px;
  font-size: .82rem;
}

.equipment__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-400);
  font-weight: 900;
}

.equipment__visual {
  min-height: 310px;
  display: grid;
  place-items: center;
}

.laptop {
  width: 330px;
  filter: drop-shadow(0 30px 25px rgba(0, 0, 0, .27));
  transform: perspective(700px) rotateY(-8deg) rotateX(3deg);
}

.laptop__screen {
  height: 215px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(145deg, #1d65ed, #153d89);
  border: 12px solid #0a1521;
  border-radius: 14px 14px 5px 5px;
}

.mini-logo {
  margin-bottom: 12px;
  color: var(--lime-400);
  font-size: 2.2rem;
}

.laptop__screen strong {
  font-size: 1.15rem;
}

.laptop__screen small {
  margin-top: 4px;
  color: #bfd1f5;
  font-size: .66rem;
}

.laptop__base {
  position: relative;
  width: 370px;
  height: 20px;
  margin-left: -20px;
  background: linear-gradient(#e7ecf0, #9aa7b2);
  border-radius: 2px 2px 14px 14px;
  clip-path: polygon(5% 0, 95% 0, 100% 70%, 97% 100%, 3% 100%, 0 70%);
}

.equipment__chip {
  position: absolute;
  padding: 9px 13px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, .22);
  font-size: .68rem;
  font-weight: 800;
}

.equipment__chip--one {
  top: 38px;
  right: 10px;
  transform: rotate(5deg);
}

.equipment__chip--two {
  bottom: 35px;
  left: 0;
  color: var(--navy-950);
  background: var(--lime-400);
  transform: rotate(-4deg);
}

/* Tarifs */
.pricing__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.pricing__intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px 80px;
  align-items: end;
}

.pricing__intro .eyebrow,
.pricing__intro h2 {
  grid-column: 1;
}

.pricing__intro > p:not(.eyebrow) {
  grid-column: 1;
  color: var(--muted);
}

.pricing__promise {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 0;
}

.pricing__promise svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  fill: none;
  stroke: var(--navy-950);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  background: var(--lime-400);
  border-radius: 50%;
}

.pricing__promise span {
  display: flex;
  flex-direction: column;
}

.pricing__promise strong {
  color: var(--navy-950);
  font-size: .87rem;
}

.pricing__promise small {
  color: var(--muted);
  font-size: .72rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.price-card--accent {
  background: var(--lime-400);
  border-color: var(--lime-400);
  box-shadow: 0 20px 50px rgba(122, 164, 60, .16);
}

.price-card--diagnostic {
  color: #c4d2de;
  background:
    radial-gradient(circle at 95% 0%, rgba(59, 123, 255, .25), transparent 34%),
    var(--navy-950);
  border-color: var(--navy-950);
  box-shadow: var(--shadow-md);
}

.price-card--diagnostic .price-card__label {
  color: var(--lime-400);
}

.price-card--diagnostic .price-card__price strong {
  color: var(--white);
}

.price-card--diagnostic .price-card__price small,
.price-card--diagnostic > p,
.price-card--diagnostic li {
  color: #afc1cf;
}

.price-card--diagnostic ul {
  border-color: rgba(255, 255, 255, .13);
}

.price-card--diagnostic li::before {
  color: var(--lime-400);
}

.button--light {
  color: var(--navy-950);
  background: var(--lime-400);
}

.button--light:hover {
  color: var(--navy-950);
  background: #c5f38c;
  box-shadow: 0 12px 26px rgba(183, 237, 104, .18);
}

.price-card__label {
  display: inline-block;
  margin-bottom: 23px;
  color: var(--blue-600);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card--accent .price-card__label {
  color: #3e681e;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.price-card__price small {
  width: 100%;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .65rem;
}

.price-card__price strong {
  color: var(--navy-950);
  font-size: 2.85rem;
  letter-spacing: -.06em;
  line-height: 1;
}

.price-card__price span {
  margin-left: 5px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.price-card > p {
  min-height: 65px;
  color: var(--muted);
  font-size: .8rem;
}

.price-card ul {
  display: grid;
  gap: 9px;
  padding: 20px 0;
  margin: 10px 0 22px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card--accent ul {
  border-color: rgba(7, 24, 42, .16);
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #4a6074;
  font-size: .74rem;
}

.price-card--accent li,
.price-card--accent p,
.price-card--accent .price-card__price small,
.price-card--accent .price-card__price span {
  color: #3f582e;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 900;
}

.price-card--accent li::before {
  color: var(--navy-950);
}

/* Zone d'intervention et carte */
.area__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.area__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.towns span {
  padding: 8px 12px;
  color: #3c5367;
  background: var(--soft);
  border: 1px solid #e5ecef;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 700;
}

.area__note {
  font-size: .8rem;
}

.route-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.route-button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 24, 42, .1);
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.25;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.route-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 24, 42, .16);
}

.route-button:focus-visible {
  outline: 3px solid rgba(30, 102, 245, .28);
  outline-offset: 3px;
}

.route-button--google {
  color: var(--white);
  background: var(--navy-950);
}

.route-button--waze {
  color: #063649;
  background: #e4f9ff;
  border-color: #bcecf7;
}

.route-button__icon,
.route-button__arrow {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.route-button__icon {
  width: 22px;
  height: 22px;
}

.route-button__arrow {
  width: 17px;
  height: 17px;
  margin-left: auto;
}

.area__map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #e8efec;
  border: 1px solid #d6e2dc;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 55px rgba(7, 24, 42, .12);
}

.area__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.area__map iframe[hidden] {
  display: none;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 45px 45px 110px;
  color: var(--navy-950);
  text-align: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(59, 123, 255, .13), transparent 28%),
    radial-gradient(circle at 75% 70%, rgba(183, 237, 104, .2), transparent 30%),
    #e8efec;
}

.map-consent[hidden] {
  display: none;
}

.map-consent__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 15px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 16px;
  box-shadow: 0 13px 30px rgba(59, 123, 255, .22);
}

.map-consent__icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.map-consent > strong {
  font-size: 1.05rem;
}

.map-consent > p {
  max-width: 430px;
  margin: 8px 0 17px;
  color: var(--muted);
  font-size: .74rem;
}

.map-consent__button {
  min-height: 46px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--blue-600);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.map-consent__button:hover {
  background: #2869e5;
  transform: translateY(-2px);
}

.map-consent > a {
  margin-top: 11px;
  color: var(--blue-600);
  font-size: .64rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-address-card {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  padding: 14px 16px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(7, 24, 42, .18);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.map-address-card svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  padding: 6px;
  fill: var(--blue-600);
  stroke: var(--white);
  stroke-width: 1.5;
}

.map-address-card span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map-address-card strong {
  font-size: .76rem;
}

.map-address-card small {
  color: var(--muted);
  font-size: .63rem;
  line-height: 1.45;
}

.faq__grid {
  display: grid;
  grid-template-columns: .73fr 1.27fr;
  align-items: start;
  gap: 95px;
}

.faq__intro {
  position: sticky;
  top: 140px;
}

.faq__intro > p:not(.eyebrow) {
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.accordion details[open] {
  border-color: #c4d6e5;
  box-shadow: var(--shadow-sm);
}

.accordion summary {
  position: relative;
  padding: 22px 55px 22px 22px;
  color: var(--navy-950);
  cursor: pointer;
  list-style: none;
  font-size: .88rem;
  font-weight: 760;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 22px;
  height: 22px;
  background: var(--soft);
  border-radius: 50%;
  transform: translateY(-50%);
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--navy-950);
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  padding: 0 25px 23px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

/* Formulaire de demande */
.contact {
  padding: 110px 0;
  color: #c4d3df;
  /* Le contact et le pied de page forment un seul aplat bleu nuit. */
  background: var(--navy-950);
}

.contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.contact__copy h2 {
  color: var(--white);
}

.contact__copy > p:not(.eyebrow) {
  color: #a9bdcf;
}

.contact__methods {
  display: grid;
  gap: 12px;
  margin: 33px 0;
}

.contact__methods a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  transition: background .2s ease, border-color .2s ease;
}

.contact__methods a:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .2);
}

.contact__method-icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 43px;
  place-items: center;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 11px;
}

.contact__method-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact__methods a > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact__methods small {
  color: #8ea6ba;
  font-size: .65rem;
}

.contact__methods strong {
  overflow: hidden;
  color: var(--white);
  font-size: .87rem;
  text-overflow: ellipsis;
}

.contact__address {
  display: flex;
  gap: 12px;
  color: #93a9bb;
  font-size: .78rem;
}

.contact__address svg {
  width: 20px;
  flex: 0 0 20px;
  margin-top: 3px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 1.8;
}

.contact__address p {
  margin: 0;
}

.contact__address strong {
  color: var(--white);
}

.contact-form {
  position: relative;
  padding: 42px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .22);
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form > :not(.form-success) {
  transition: opacity .35s ease, transform .35s ease, filter .35s ease;
}

.contact-form.is-sent > :not(.form-success) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.98);
  filter: blur(4px);
}

.form__heading {
  margin-bottom: 28px;
}

.form__heading h3 {
  margin-bottom: 6px;
  font-size: 1.55rem;
}

.form__heading p {
  margin: 0;
  color: var(--muted);
  font-size: .69rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.contact-form label > span {
  color: #334a5e;
  font-size: .72rem;
  font-weight: 740;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f9fa;
  border: 1px solid #dce5e9;
  border-radius: 9px;
  outline: 0;
  font-size: .8rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form select {
  padding-right: 54px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102a43' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background-color: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 123, 255, .12);
}

.form__submit {
  width: 100%;
  border: 0;
}

.contact-form.is-sending .form__submit {
  cursor: wait;
  opacity: .78;
}

.contact-form.is-sending .form__submit svg {
  animation: form-send-pulse .8s ease-in-out infinite alternate;
}

.form-error {
  padding: 10px 12px;
  margin: 12px 0 0;
  color: #8e2530;
  background: #fff0f1;
  border: 1px solid #f3c5ca;
  border-radius: 9px;
  font-size: .69rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-error[hidden] {
  display: none;
}

.form__notice {
  margin: 12px 0 0;
  color: #778797;
  text-align: center;
  font-size: .63rem;
}

.form__notice a {
  color: var(--blue-600);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes form-send-pulse {
  to {
    opacity: .45;
    transform: translate(3px, -3px);
  }
}

.form-success {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(183, 237, 104, .22), transparent 32%),
    linear-gradient(150deg, #ffffff, #f2f7f7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.035);
  transition: opacity .45s .15s ease, visibility 0s .6s, transform .55s .15s cubic-bezier(.2, .8, .2, 1);
}

.contact-form.is-sent .form-success {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity .45s .15s ease, visibility 0s, transform .55s .15s cubic-bezier(.2, .8, .2, 1);
}

.form-success__visual {
  position: relative;
  width: 230px;
  height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.form-success__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(30, 102, 245, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.form-success__ring--one {
  width: 155px;
  height: 155px;
  background: rgba(59, 123, 255, .05);
}

.form-success__ring--two {
  width: 210px;
  height: 210px;
  border-style: dashed;
}

.form-success__logo {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 104px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(14px) scale(.78);
}

.contact-form.is-sent .form-success__logo {
  animation: success-logo-in .65s .25s cubic-bezier(.2, .85, .25, 1.25) forwards;
}

.form-success__envelope {
  position: absolute;
  z-index: 3;
  right: 7px;
  bottom: 8px;
  width: 72px;
  height: 54px;
  color: var(--navy-950);
  opacity: 0;
  filter: drop-shadow(0 12px 16px rgba(7, 24, 42, .2));
  transform: translate(-100px, 65px) rotate(-18deg) scale(.5);
}

.form-success__envelope > svg {
  fill: var(--lime-400);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.contact-form.is-sent .form-success__envelope {
  animation:
    envelope-flight .9s .38s cubic-bezier(.2, .82, .28, 1.15) forwards,
    envelope-float 2.4s 1.3s ease-in-out infinite;
}

.form-success__check {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: .71rem;
  font-weight: 900;
}

.form-success__spark {
  position: absolute;
  z-index: 4;
  color: var(--blue-500);
  opacity: 0;
}

.form-success__spark--one {
  top: 7px;
  left: 25px;
  font-size: 1.3rem;
}

.form-success__spark--two {
  top: 36px;
  right: 24px;
  color: #69a62f;
  font-size: 1.65rem;
}

.form-success__spark--three {
  bottom: 17px;
  left: 48px;
  color: var(--cyan-400);
  font-size: 1rem;
}

.contact-form.is-sent .form-success__spark--one {
  animation: success-spark 1.4s .6s ease-in-out infinite;
}

.contact-form.is-sent .form-success__spark--two {
  animation: success-spark 1.6s .82s ease-in-out infinite;
}

.contact-form.is-sent .form-success__spark--three {
  animation: success-spark 1.2s 1s ease-in-out infinite;
}

.form-success .eyebrow {
  margin-bottom: 11px;
  justify-content: center;
}

.form-success h3 {
  max-width: 390px;
  margin-bottom: 13px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.form-success > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: .86rem;
}

.form-success__back {
  padding: 9px 15px;
  color: var(--blue-600);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-success__back:hover {
  color: var(--navy-950);
}

@keyframes success-logo-in {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(.78);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes envelope-flight {
  0% {
    opacity: 0;
    transform: translate(-100px, 65px) rotate(-18deg) scale(.5);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(5deg) scale(1);
  }
}

@keyframes envelope-float {
  0%, 100% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(-7px) rotate(2deg);
  }
}

@keyframes success-spark {
  0%, 100% {
    opacity: .2;
    transform: scale(.65) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(18deg);
  }
}

.footer {
  padding: 42px 0 26px;
  color: #9eb0c0;
  background: var(--navy-950);
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 55px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.brand--footer .brand__text small {
  color: #8299ad;
}

.footer__top > p {
  max-width: 490px;
  margin: 0;
  font-size: .76rem;
}

.footer__call {
  color: var(--lime-400);
  font-size: 1.15rem;
  font-weight: 780;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  font-size: .66rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__link-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.footer__bottom a:hover,
.footer__link-button:hover {
  color: var(--white);
}

.mobile-call {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  min-height: 50px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 99px;
  box-shadow: 0 14px 35px rgba(7, 24, 42, .28);
  font-size: .85rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-call svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scroll-top {
  position: fixed;
  z-index: 130;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(7, 24, 42, .28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.9);
  transition: opacity .25s ease, transform .25s ease, box-shadow .2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  box-shadow: 0 16px 38px rgba(7, 24, 42, .38);
}

.scroll-top:focus-visible {
  outline: 3px solid var(--lime-400);
  outline-offset: 4px;
}

.scroll-top__icon {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.scroll-top__track,
.scroll-top__progress {
  fill: none;
  stroke-width: 3;
}

.scroll-top__track {
  stroke: rgba(255, 255, 255, .2);
}

.scroll-top__progress {
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-dasharray: 113.1px;
  stroke-dashoffset: 113.1px;
  transition: stroke-dashoffset .12s linear;
}

.scroll-top__arrow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
  transform: rotate(90deg);
  transform-origin: center;
}

.toast {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  max-width: 330px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 11px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .25s ease, transform .25s ease;
  font-size: .78rem;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-panel {
  position: fixed;
  z-index: 950;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1160px;
  padding: 20px 22px;
  margin-inline: auto;
  color: #b8c8d5;
  background: rgba(4, 17, 30, .98);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel__copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-panel__icon {
  flex: 0 0 auto;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 13px;
}

.cookie-panel__icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cookie-panel__copy strong {
  color: var(--white);
  font-size: .86rem;
}

.cookie-panel__copy p {
  margin: 3px 0 2px;
  font-size: .7rem;
}

.cookie-panel__copy a {
  color: var(--lime-400);
  font-size: .65rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-panel__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}

.cookie-panel__actions button {
  min-height: 44px;
  min-width: 125px;
  padding: 10px 15px;
  color: var(--navy-950);
  background: #eef4f7;
  border: 1px solid #eef4f7;
  border-radius: 10px;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
}

.cookie-panel__actions button:hover,
.cookie-panel__actions button:focus-visible {
  background: var(--white);
  border-color: var(--white);
}

.cookie-panel__actions [data-cookie-accept] {
  color: var(--navy-950);
  background: var(--lime-400);
  border-color: var(--lime-400);
}

.cookie-panel__actions [data-cookie-accept]:hover,
.cookie-panel__actions [data-cookie-accept]:focus-visible {
  background: #c5f38c;
  border-color: #c5f38c;
}

/* Pages légales : mise en page commune aux mentions et à la confidentialité. */
.legal-page {
  background: #f4f7f8;
}

.legal-page .site-header {
  background: rgba(255, 255, 255, .97);
}

.legal-hero {
  padding: 90px 0 80px;
  color: #c1d0dc;
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 123, 255, .25), transparent 33%),
    radial-gradient(circle at 88% 100%, rgba(183, 237, 104, .12), transparent 34%),
    var(--navy-950);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.legal-hero h1 span {
  color: var(--lime-400);
}

.site-creation__offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 17px;
  margin: 0 0 19px !important;
  color: #e7f7cf;
  background: rgba(183, 237, 104, .12);
  border: 1px solid rgba(183, 237, 104, .42);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

.site-creation__offer-badge span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 50%;
  font-size: .82rem;
}

.legal-hero > .container > p:last-child {
  max-width: 670px;
  margin: 0;
  color: #a9bdcc;
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 790px);
  justify-content: center;
  gap: 85px;
  padding-top: 85px;
  padding-bottom: 105px;
}

.legal-summary {
  position: sticky;
  top: 120px;
  display: grid;
  align-self: start;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.legal-summary strong {
  padding: 18px 20px;
  color: var(--navy-950);
  border-bottom: 1px solid var(--line);
  font-size: .75rem;
}

.legal-summary a {
  padding: 11px 20px;
  color: var(--muted);
  border-bottom: 1px solid #edf1f3;
  font-size: .69rem;
  font-weight: 700;
}

.legal-summary a:last-child {
  border-bottom: 0;
}

.legal-summary a:hover {
  color: var(--blue-600);
  background: #f5f8fc;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  position: relative;
  scroll-margin-top: 125px;
  padding: 0 0 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid #dbe4e9;
}

.legal-content section:last-of-type {
  margin-bottom: 30px;
}

.legal-section__number {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--blue-600);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.legal-content h2 {
  margin-bottom: 22px;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.legal-content p,
.legal-content li {
  color: #526779;
  font-size: .88rem;
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  display: grid;
  gap: 7px;
  padding-left: 22px;
  margin: 0 0 20px;
}

.legal-content a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content code {
  padding: 2px 6px;
  color: #24435e;
  background: #e7eef3;
  border-radius: 5px;
  font-size: .78em;
}

.legal-card {
  display: grid;
  gap: 7px;
  padding: 24px;
  color: #53697a;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-style: normal;
  line-height: 1.55;
}

.legal-card strong {
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: .95rem;
}

.legal-table {
  overflow: hidden;
  margin: 24px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.legal-table [role="row"] {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  border-bottom: 1px solid var(--line);
}

.legal-table [role="row"]:last-child {
  border-bottom: 0;
}

.legal-table [role="row"]:first-child {
  color: var(--white);
  background: var(--navy-950);
}

.legal-table span,
.legal-table strong {
  padding: 15px 18px;
  font-size: .73rem;
  line-height: 1.55;
}

.legal-table span:first-child,
.legal-table strong:first-child {
  border-right: 1px solid var(--line);
}

.legal-table span {
  color: #526779;
}

.legal-callout {
  padding: 22px 24px;
  margin-bottom: 22px;
  background: #ecf8dd;
  border: 1px solid #cfe8ad;
  border-radius: 14px;
}

/* Parcours de création : les trois visuels restent légers et lisibles sur mobile. */
.site-creation__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.site-step {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.site-step__visual {
  position: relative;
  display: grid;
  height: 180px;
  overflow: hidden;
  place-items: center;
  margin: -4px -4px 21px;
  background: #09233b;
  border-radius: 13px;
}

.site-step__number {
  margin: 0 0 9px;
  color: var(--blue-600);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.site-step h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 1.1rem;
}

.site-step > p:last-child {
  margin: 0;
  color: #526779;
  font-size: .77rem;
  line-height: 1.65;
}

.brief-card {
  position: absolute;
  width: 114px;
  height: 145px;
  background: linear-gradient(150deg, #f5fbff, #b8d8f1);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
}

.brief-card--one { transform: translate(-24px, -2px) rotate(-8deg); animation: brief-card-one 4.5s ease-in-out infinite; }
.brief-card--two { background: linear-gradient(150deg, #d7f6a5, #83bd49); transform: translate(33px, 9px) rotate(9deg); animation: brief-card-two 4.5s ease-in-out infinite; }
.brief-line { position: absolute; z-index: 2; width: 68px; height: 7px; background: var(--navy-950); border-radius: 99px; }
.brief-line--one { transform: translate(-24px, -26px); animation: brief-line 4.5s ease-in-out infinite; }
.brief-line--two { width: 46px; transform: translate(-35px, -5px); animation: brief-line 4.5s .15s ease-in-out infinite; }
.brief-cursor { position: absolute; z-index: 3; width: 0; height: 0; border-top: 12px solid transparent; border-right: 8px solid transparent; border-bottom: 28px solid var(--white); border-left: 12px solid transparent; filter: drop-shadow(0 4px 3px rgba(0,0,0,.25)); transform: translate(60px, 50px) rotate(-26deg); animation: brief-cursor 4.5s ease-in-out infinite; }

.design-browser {
  position: relative;
  width: 180px;
  height: 116px;
  overflow: hidden;
  background: #eaf5fe;
  border: 5px solid #76a7d4;
  border-radius: 13px;
  box-shadow: 0 15px 32px rgba(0, 0, 0, .24);
  animation: design-browser 4.8s ease-in-out infinite;
}

.design-browser i { position: absolute; top: 10px; width: 7px; height: 7px; background: #65a6f3; border-radius: 50%; }
.design-browser i:nth-child(1) { left: 12px; }.design-browser i:nth-child(2) { left: 25px; }.design-browser i:nth-child(3) { left: 38px; }
.design-browser b { position: absolute; top: 31px; right: 12px; left: 12px; height: 43px; background: linear-gradient(135deg, #2369de, #86d8d2); border-radius: 7px; }
.design-browser em { position: absolute; right: 12px; bottom: 13px; left: 12px; height: 13px; background: repeating-linear-gradient(90deg, #8ba4bb 0 28px, transparent 28px 37px); border-radius: 3px; }
.design-phone { position: absolute; z-index: 2; width: 58px; height: 108px; padding: 8px 6px; background: #eaf5fe; border: 4px solid #b9d3e8; border-radius: 13px; transform: translate(80px, 27px); animation: design-phone 4.8s ease-in-out infinite; }
.design-phone i { display: block; height: 45px; background: #b7ed68; border-radius: 6px; }.design-phone b { display: block; height: 17px; margin-top: 8px; background: #6f98bc; border-radius: 4px; }
.design-spark { position: absolute; color: var(--lime-400); font-size: 1.4rem; animation: design-spark 1.8s ease-in-out infinite alternate; }.design-spark--one { transform: translate(-99px, -55px); }.design-spark--two { transform: translate(99px, 53px); animation-delay: .6s; }

.launch-orbit { position: absolute; width: 140px; height: 140px; border: 1px dashed rgba(183, 237, 104, .75); border-radius: 50%; animation: launch-orbit 8s linear infinite; }
.launch-rocket { position: relative; z-index: 2; color: var(--white); font-size: 4.5rem; text-shadow: 0 12px 18px rgba(0,0,0,.28); transform: rotate(45deg); animation: launch-rocket 3.6s ease-in-out infinite; }
.launch-cloud { position: absolute; width: 45px; height: 12px; background: rgba(206, 231, 249, .68); border-radius: 99px; animation: launch-cloud 3.6s ease-in-out infinite; }.launch-cloud--one { transform: translate(-90px, 57px); }.launch-cloud--two { width: 29px; transform: translate(91px, -48px); animation-delay: .7s; }
.launch-check { position: absolute; z-index: 3; display: grid; width: 31px; height: 31px; place-items: center; color: var(--navy-950); background: var(--lime-400); border-radius: 50%; font-weight: 900; transform: translate(66px, 49px); animation: launch-check 3.6s ease-in-out infinite; }

.site-creation__references { padding-top: 52px; }
.site-creation__references .button { margin-top: 28px; }
.site-creation__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.site-creation__links a { position: relative; display: grid; align-content: start; gap: 7px; min-height: 173px; padding: 24px; color: var(--white); background: var(--navy-950); border-radius: 16px; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.site-creation__links a:nth-child(2) { background: #1a5d87; }.site-creation__links a:hover, .site-creation__links a:focus-visible { color: var(--white); background: var(--blue-600); transform: translateY(-4px); }
.site-creation__links span { color: var(--lime-400); font-size: .64rem; font-weight: 900; letter-spacing: .1em; }.site-creation__links strong { font-size: 1.25rem; }.site-creation__links em { max-width: 350px; color: #d3e1eb; font-size: .72rem; font-style: normal; line-height: 1.5; }.site-creation__links small { margin-top: auto; color: #c0d3e3; font-size: .72rem; }.site-creation__links b { position: absolute; top: 22px; right: 24px; color: var(--lime-400); font-size: 1.2rem; }

.site-creation__commitments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.site-creation__commitments article {
  position: relative;
  padding: 171px 25px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.site-creation__commitments h3 {
  margin-bottom: 9px;
  color: var(--navy-950);
  font-size: 1rem;
}

.site-creation__commitments p {
  margin: 0;
  color: #526779;
  font-size: .76rem;
  line-height: 1.65;
}

.site-creation__commitment-icon {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 11px;
  font-size: .68rem;
  font-weight: 900;
}

.commitment-visual {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 142px;
  overflow: hidden;
  background: #0a2944;
  border-radius: 16px 16px 0 0;
}

.editor-panel {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 190px;
  height: 86px;
  padding: 17px 16px;
  background: #eaf5fe;
  border: 4px solid #7ba8d6;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
  transform: translateX(-50%);
  animation: editor-panel 4.2s ease-in-out infinite;
}

.editor-panel i,
.editor-panel b {
  display: block;
  height: 7px;
  margin-bottom: 8px;
  background: #6b91b4;
  border-radius: 99px;
}

.editor-panel i:nth-child(1) { width: 74%; }.editor-panel i:nth-child(2) { width: 54%; }.editor-panel i:nth-child(3) { width: 66%; }.editor-panel b { width: 43%; margin-top: 13px; margin-bottom: 0; background: #7fc53e; }
.editor-cursor { position: absolute; top: 68px; left: calc(50% + 54px); width: 0; height: 0; border-top: 8px solid transparent; border-right: 5px solid transparent; border-bottom: 23px solid var(--navy-950); border-left: 9px solid transparent; transform: rotate(-25deg); animation: editor-cursor 4.2s ease-in-out infinite; }
.editor-saved { position: absolute; top: 27px; left: calc(50% + 62px); display: grid; width: 25px; height: 25px; place-items: center; color: var(--navy-950); background: var(--lime-400); border-radius: 50%; font-size: .85rem; font-weight: 900; animation: editor-saved 4.2s ease-in-out infinite; }

.ownership-globe { position: absolute; top: 21px; left: 50%; width: 90px; height: 90px; border: 2px solid #7fb7e8; border-radius: 50%; transform: translateX(-50%); animation: ownership-globe 7s linear infinite; }.ownership-globe::before, .ownership-globe::after { position: absolute; inset: 16px 0; content: ""; border-top: 1px solid rgba(127, 183, 232, .8); border-bottom: 1px solid rgba(127, 183, 232, .8); border-radius: 50%; }.ownership-globe::after { top: 0; right: 22px; bottom: 0; left: 22px; border: 0; border-right: 1px solid rgba(127, 183, 232, .8); border-left: 1px solid rgba(127, 183, 232, .8); }
.ownership-domain { position: absolute; top: 58px; left: 50%; padding: 8px 12px; color: var(--white); background: #216de1; border-radius: 7px; box-shadow: 0 8px 18px rgba(0,0,0,.22); font-size: .68rem; font-weight: 800; transform: translateX(-50%); animation: ownership-domain 4.6s ease-in-out infinite; }.ownership-key { position: absolute; top: 37px; left: calc(50% + 62px); color: var(--lime-400); font-size: 2.1rem; font-weight: 900; transform: rotate(-37deg); animation: ownership-key 4.6s ease-in-out infinite; }.ownership-check { position: absolute; top: 25px; left: calc(50% - 78px); display: grid; width: 26px; height: 26px; place-items: center; color: var(--navy-950); background: var(--lime-400); border-radius: 50%; font-size: .8rem; font-weight: 900; animation: ownership-check 4.6s ease-in-out infinite; }

.site-creation__price {
  display: grid;
  grid-template-columns: .8fr 1fr 1.55fr;
  align-items: center;
  gap: 28px;
  padding: 27px 30px;
  margin-top: 22px;
  color: var(--white);
  background: linear-gradient(120deg, #09233b, #164f77);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.site-creation__price .eyebrow { margin: 0; color: var(--lime-400); }
.site-creation__price > p:nth-child(2) { margin: 0; }.site-creation__price strong { color: var(--white); font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.06em; white-space: nowrap; }
.site-creation__price div { display: grid; gap: 5px; }.site-creation__price b { font-size: .88rem; }.site-creation__price span, .site-creation__price small { color: #c3d4e1; font-size: .72rem; line-height: 1.55; }.site-creation__price small { border-left: 1px solid rgba(255,255,255,.18); padding-left: 24px; }

@keyframes brief-card-one { 0%,100% { transform: translate(-24px, -2px) rotate(-8deg); } 50% { transform: translate(-30px, 3px) rotate(-11deg); } }
@keyframes brief-card-two { 0%,100% { transform: translate(33px, 9px) rotate(9deg); } 50% { transform: translate(39px, 3px) rotate(12deg); } }
@keyframes brief-line { 0%,25% { opacity: 0; transform: translate(-35px, -26px) scaleX(.2); } 45%,100% { opacity: 1; transform: translate(-24px, -26px) scaleX(1); } }
@keyframes brief-cursor { 0%,25% { opacity: 0; transform: translate(92px, 60px) rotate(-26deg); } 52%,100% { opacity: 1; transform: translate(60px, 50px) rotate(-26deg); } }
@keyframes design-browser { 0%,100% { transform: translateX(-9px); } 50% { transform: translateX(4px); } } @keyframes design-phone { 0%,100% { transform: translate(80px, 27px); } 50% { transform: translate(74px, 21px); } } @keyframes design-spark { to { opacity: .35; transform: scale(.72); } }
@keyframes launch-orbit { to { transform: rotate(360deg); } } @keyframes launch-rocket { 0%,100% { transform: translate(-4px, 8px) rotate(45deg); } 50% { transform: translate(8px, -13px) rotate(45deg); } } @keyframes launch-cloud { 50% { opacity: .28; transform: translate(-76px, 57px); } } @keyframes launch-check { 0%,42% { opacity: 0; transform: translate(56px, 56px) scale(.4); } 60%,100% { opacity: 1; transform: translate(66px, 49px) scale(1); } }
@keyframes editor-panel { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } } @keyframes editor-cursor { 0%,25% { opacity: 0; transform: translate(31px, 22px) rotate(-25deg); } 48%,100% { opacity: 1; transform: translate(0, 0) rotate(-25deg); } } @keyframes editor-saved { 0%,52% { opacity: 0; transform: scale(.4); } 66%,100% { opacity: 1; transform: scale(1); } } @keyframes ownership-globe { to { transform: translateX(-50%) rotate(360deg); } } @keyframes ownership-domain { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } } @keyframes ownership-key { 0%,38% { opacity: 0; transform: translate(20px, -10px) rotate(-37deg); } 56%,100% { opacity: 1; transform: translate(0, 0) rotate(-37deg); } } @keyframes ownership-check { 0%,54% { opacity: 0; transform: scale(.3); } 70%,100% { opacity: 1; transform: scale(1); } }

@media (max-width: 860px) { .site-creation__steps { grid-template-columns: 1fr; } .site-creation__links, .site-creation__commitments { grid-template-columns: 1fr; } .site-creation__price { grid-template-columns: 1fr; gap: 12px; } .site-creation__price small { padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; } }

@media (prefers-reduced-motion: reduce) { .site-step__visual *, .commitment-visual *, .site-creation__links a { animation: none !important; transition: none; } }

/* Les scènes de création s'ouvrent au clic, sans changement de page. */
.creation-demo {
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.creation-demo:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 15px 28px rgba(7, 24, 42, .24);
}

.creation-demo:focus-visible {
  outline: 3px solid var(--lime-400);
  outline-offset: 4px;
}

.creation-modal[hidden] { display: none; }
.creation-modal { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: 20px; }
.creation-modal__backdrop { position: absolute; inset: 0; background: rgba(3, 13, 25, .78); animation: creation-backdrop-in .2s ease both; }
.creation-modal__dialog { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(320px, .95fr) minmax(300px, 1fr); width: min(930px, 100%); max-height: min(650px, calc(100vh - 40px)); overflow: auto; background: var(--white); border-radius: 23px; box-shadow: 0 32px 85px rgba(0, 0, 0, .4); animation: creation-dialog-in .32s cubic-bezier(.2,.8,.2,1) both; }
.creation-modal__close { position: absolute; z-index: 3; top: 14px; right: 14px; display: grid; width: 39px; height: 39px; place-items: center; color: var(--white); background: rgba(7, 24, 42, .72); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; cursor: pointer; font-size: 1.6rem; line-height: 1; }
.creation-modal__close:focus-visible { outline: 3px solid var(--lime-400); outline-offset: 3px; }
.creation-modal__scene { position: relative; display: grid; min-height: 430px; overflow: hidden; place-items: center; background: #09233b; }
.creation-modal__scene::before, .creation-modal__scene::after { position: absolute; width: 310px; height: 310px; content: ""; border: 1px solid rgba(183,237,104,.22); border-radius: 50%; }.creation-modal__scene::before { transform: translate(-105px, -90px); }.creation-modal__scene::after { transform: translate(135px, 130px); }
.creation-modal__content { align-self: center; padding: 46px 42px; }.creation-modal__content h2 { margin: 9px 0 20px; color: var(--navy-950); font-size: clamp(1.8rem, 3.5vw, 2.7rem); line-height: 1.04; }.creation-modal__content .button { margin-top: 27px; }
.creation-modal__steps { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }.creation-modal__steps li { display: flex; align-items: center; gap: 12px; color: var(--navy-950); font-size: .82rem; animation: creation-step-in .45s ease both; }.creation-modal__steps li:nth-child(2) { animation-delay: .52s; }.creation-modal__steps li:nth-child(3) { animation-delay: 1.04s; }.creation-modal__steps span { display: grid; flex: 0 0 auto; width: 30px; height: 30px; place-items: center; color: var(--navy-950); background: var(--lime-400); border-radius: 50%; font-size: .62rem; font-weight: 900; }
.creation-modal__timeline { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; width: min(380px, 79%); height: 215px; }.creation-modal__line { position: absolute; top: 104px; right: 34px; left: 34px; height: 3px; background: linear-gradient(90deg, var(--lime-400), #4c9aff); transform-origin: left; animation: creation-line-grow 3s ease both; }.creation-modal__node { position: relative; z-index: 1; display: grid; justify-items: center; gap: 11px; }.creation-modal__node i { display: grid; width: 68px; height: 68px; place-items: center; color: var(--navy-950); background: var(--lime-400); border: 5px solid #0e3655; border-radius: 50%; box-shadow: 0 0 0 5px rgba(183,237,104,.12); font-size: 1.55rem; font-style: normal; animation: creation-node-in .45s cubic-bezier(.2,1.35,.35,1) both; }.creation-modal__node b { color: #c9d9e5; font-size: .65rem; letter-spacing: .1em; }.creation-modal__node--2 i { background: #7fb7e8; animation-delay: 1s; }.creation-modal__node--3 i { background: #fff; animation-delay: 2s; }.creation-modal__node--2 b { animation: creation-label-in .3s 1.05s both; }.creation-modal__node--3 b { animation: creation-label-in .3s 2.05s both; }
.creation-modal__scene--design .creation-modal__node i { border-radius: 16px; }.creation-modal__scene--launch .creation-modal__node i { transform: rotate(45deg); }.creation-modal__scene--launch .creation-modal__node i { animation-name: creation-node-launch; }.creation-modal__scene--launch .creation-modal__node i::first-letter { transform: rotate(-45deg); }.creation-modal__scene--editor .creation-modal__node i { border-radius: 10px; }.creation-modal__scene--ownership .creation-modal__node i { border-style: dashed; }
@keyframes creation-backdrop-in { from { opacity: 0; } }
@keyframes creation-dialog-in { from { opacity: 0; transform: translateY(16px) scale(.97); } }
@keyframes creation-line-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes creation-node-in { from { opacity: 0; transform: scale(.25); } to { opacity: 1; transform: scale(1); } }
@keyframes creation-node-launch { from { opacity: 0; transform: rotate(45deg) scale(.25); } to { opacity: 1; transform: rotate(45deg) scale(1); } }
@keyframes creation-label-in { from { opacity: 0; transform: translateY(-5px); } }
@keyframes creation-step-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 720px) { .creation-modal { padding: 10px; } .creation-modal__dialog { grid-template-columns: 1fr; max-height: calc(100vh - 20px); }.creation-modal__scene { min-height: 245px; }.creation-modal__timeline { height: 170px; width: min(330px, 86%); }.creation-modal__line { top: 82px; }.creation-modal__node i { width: 50px; height: 50px; border-width: 4px; font-size: 1.15rem; }.creation-modal__content { padding: 25px 24px 28px; }.creation-modal__content h2 { font-size: 1.62rem; }.creation-modal__steps { gap: 9px; }.creation-modal__steps li { font-size: .73rem; } }
@media (prefers-reduced-motion: reduce) { .creation-demo, .creation-modal *, .creation-modal__backdrop, .creation-modal__dialog { animation: none !important; transition: none !important; } }

/* Apparition progressive des chapitres de la page Création, uniquement sur grand écran. */
@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .js .creation-reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(26px);
  }

  .js .creation-reveal {
    transition: opacity .58s ease, transform .62s cubic-bezier(.2, .8, .2, 1);
  }

  .js .site-creation__steps .creation-reveal:nth-child(2),
  .js .site-creation__links .creation-reveal:nth-child(2) { transition-delay: .1s; }

  .js .site-creation__steps .creation-reveal:nth-child(3) { transition-delay: .2s; }
}

.legal-callout strong {
  color: #315714;
}

.legal-callout p {
  margin: 5px 0 0;
  color: #526c3e;
  font-size: .78rem;
}

.legal-updated {
  color: #8293a1 !important;
  font-size: .69rem !important;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sur grand écran, les sections entrent doucement dans le champ. Le contenu reste
   visible si le script est désactivé, et le bloc d'accueil n'utilise pas .reveal. */
@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .js .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* Ajustements pour les ordinateurs portables et petites tablettes. */
@media (max-width: 1080px) {
  :root {
    --container: 940px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: .8rem;
  }

  .header-call small {
    display: none;
  }

  .hero__grid {
    gap: 20px;
  }

  .hero__visual {
    transform: scale(.88);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid,
  .process__grid,
  .area__grid,
  .faq__grid,
  .contact__grid {
    gap: 60px;
  }

  .equipment {
    padding: 55px;
  }

  .pricing__layout {
    grid-template-columns: 1fr;
  }
}

/* Passage au menu mobile et aux blocs sur une seule colonne. */
@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .topbar__hours {
    display: none !important;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    z-index: 3;
    display: block;
    margin-left: auto;
  }

  .header__inner {
    position: relative;
  }

  .language-switch {
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin: 0;
    background:
      radial-gradient(circle at 15% 15%, rgba(183, 237, 104, .18), transparent 28%),
      radial-gradient(circle at 85% 80%, rgba(59, 123, 255, .1), transparent 32%),
      var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 11px;
    color: var(--navy-950);
    font-size: 1.35rem;
  }

  .site-nav__website {
    min-height: 0;
    margin: 8px 0;
    padding: 11px 17px !important;
    font-size: .88rem !important;
  }

  .cookie-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-panel__actions button {
    flex: 1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-summary {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-summary strong {
    grid-column: 1 / -1;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 670px;
    text-align: center;
    margin-inline: auto;
  }

  .hero__copy .eyebrow,
  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .teamviewer-quick-access__inner {
    grid-template-columns: auto 1fr;
    padding-block: 20px;
  }

  .teamviewer-quick-access__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero__visual {
    margin-top: -10px;
    transform: scale(.83);
  }

  .issue-strip {
    margin-top: -10px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-modal {
    padding: 18px;
  }

  .service-modal__dialog {
    grid-template-columns: 1fr;
    max-width: 680px;
    height: auto;
    max-height: calc(100vh - 36px);
    overflow: auto;
  }

  .service-modal__visual {
    min-height: 330px;
    padding: 28px 54px;
  }

  .service-modal__visual::before {
    width: 280px;
    height: 280px;
  }

  .service-modal__visual::after {
    width: 390px;
    height: 390px;
  }

  .service-animation {
    width: min(100%, 400px);
    max-height: 300px;
  }

  .service-modal__content {
    max-height: none;
    overflow: visible;
    padding: 42px;
  }

  .modes-grid {
    grid-template-columns: 1fr;
  }

  .mode-card--dark {
    transform: none;
  }

  .mode-card > p {
    min-height: auto;
  }

  .remote-support__heading,
  .download-grid,
  .remote-howto {
    grid-template-columns: 1fr;
  }

  .remote-support__heading {
    gap: 18px;
  }

  .download-card--recommended {
    transform: none;
  }

  .download-card > p:not(.download-card__vendor) {
    min-height: auto;
  }

  .process__grid,
  .about__grid,
  .area__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .process__intro,
  .faq__intro {
    position: static;
  }

  .process__grid {
    gap: 55px;
  }

  .about__grid {
    gap: 50px;
  }

  .about__visual {
    min-height: 400px;
  }

  .equipment {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .equipment__visual {
    order: -1;
  }

  .area__map {
    order: -1;
  }

  .pricing__layout {
    gap: 50px;
  }

  .pricing__intro {
    grid-template-columns: 1fr;
  }

  .pricing__promise {
    grid-column: 1;
    grid-row: auto;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
  }

  .footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mobile-call {
    display: flex;
  }

  .scroll-top {
    right: 18px;
    bottom: 82px;
  }

  .toast {
    right: 16px;
    bottom: 82px;
  }
}

/* Téléphones : garder les boutons, fenêtres et tableaux dans la hauteur disponible. */
@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    font-size: .68rem;
  }

  .brand__mark {
    width: 56px;
    height: 48px;
  }

  .brand__mark img {
    width: 51px;
    height: 44px;
  }

  .brand__text strong {
    font-size: 1.03rem;
  }

  .mobile-call {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .scroll-top {
    right: 14px;
    bottom: 82px;
    width: 54px;
    height: 54px;
  }

  .mobile-call svg {
    width: 22px;
  }

  .hero {
    padding-top: 55px;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .teamviewer-quick-access__inner {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-block: 18px;
    text-align: center;
  }

  .teamviewer-quick-access__mark {
    display: none;
  }

  .teamviewer-quick-access__copy > strong {
    font-size: 1.3rem;
  }

  .teamviewer-quick-access__button {
    min-width: 0;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    align-items: center;
    flex-direction: column;
    gap: 9px;
  }

  .hero__visual {
    min-height: 350px;
    margin: 28px 0 -35px;
    transform: scale(.62);
    transform-origin: top center;
  }

  .issue-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
  }

  .issue-strip__items {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .issue-strip__items a {
    text-align: center;
  }

  .section,
  .contact {
    padding: 82px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 325px;
  }

  .service-modal {
    align-items: start;
    padding: 6px;
  }

  .service-modal__dialog {
    grid-template-rows: 150px minmax(0, 1fr);
    height: calc(100vh - 12px);
    height: calc(100dvh - 12px);
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
    overflow: hidden;
    border-radius: 20px;
  }

  .service-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .service-modal__visual {
    min-height: 0;
    padding: 8px 62px 4px;
  }

  .service-modal__visual::before {
    width: 145px;
    height: 145px;
  }

  .service-modal__visual::after {
    width: 210px;
    height: 210px;
  }

  .service-animation {
    max-height: 142px;
  }

  .service-modal__content {
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    padding: 17px 18px 15px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .service-modal__content .eyebrow {
    margin-bottom: 5px;
    font-size: .65rem;
  }

  .service-modal__content h2 {
    padding-right: 0;
    margin-bottom: 7px;
    font-size: clamp(1.42rem, 7vw, 1.78rem);
    line-height: 1.04;
  }

  .service-modal__description {
    margin-bottom: 10px;
    font-size: .76rem;
    line-height: 1.4;
  }

  .service-modal__steps {
    gap: 5px;
    margin-bottom: 10px;
  }

  .service-modal__step {
    grid-template-columns: 31px 1fr;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 10px;
  }

  .service-modal__step-number {
    width: 31px;
    height: 31px;
    border-radius: 9px;
    font-size: .68rem;
  }

  .service-modal__step strong {
    margin-bottom: 1px;
    font-size: .76rem;
  }

  .service-modal__step p {
    font-size: .65rem;
    line-height: 1.3;
  }

  .service-modal__cta {
    min-height: 43px;
    padding: 11px 14px;
    font-size: .76rem;
  }

  .section-heading {
    margin-bottom: 37px;
  }

  .mode-card {
    padding: 20px;
  }

  .remote-safety {
    align-items: flex-start;
    padding: 18px;
  }

  .remote-safety__icon {
    width: 42px;
    height: 42px;
  }

  .download-card {
    padding: 22px;
  }

  .remote-howto {
    gap: 22px;
  }

  .step {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .step__number {
    width: 52px;
    height: 52px;
  }

  .steps::before {
    top: 35px;
    left: 26px;
  }

  .about__points {
    grid-template-columns: 1fr;
  }

  .about__visual {
    min-height: 455px;
    place-items: start center;
    padding-top: 10px;
    transform: none;
  }

  .about__card {
    transform: rotate(-2deg) scale(.92);
    transform-origin: top center;
  }

  .about__badge {
    right: 50%;
    bottom: 5px;
    width: 122px;
    height: 76px;
    padding: 12px;
    border-width: 4px;
    transform: translateX(50%);
  }

  .about__badge strong {
    font-size: 1.9rem;
  }

  .about__badge span {
    font-size: .58rem;
  }

  .equipment {
    padding: 38px 25px;
    border-radius: 25px;
  }

  .equipment__visual {
    min-height: 240px;
    transform: scale(.78);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .area__map {
    min-height: 370px;
  }

  .area__map iframe {
    min-height: 370px;
  }

  .map-consent {
    padding: 34px 24px 105px;
  }

  .route-actions {
    grid-template-columns: 1fr;
  }

  .map-address-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-success {
    padding: 28px 20px;
  }

  .form-success__visual {
    width: 205px;
    height: 165px;
  }

  .form-success__ring--one {
    width: 135px;
    height: 135px;
  }

  .form-success__ring--two {
    width: 180px;
    height: 180px;
  }

  .form-success__logo {
    width: 103px;
    height: 90px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer {
    padding-bottom: 92px;
  }

  .footer__top,
  .footer__bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer__bottom div {
    flex-wrap: wrap;
  }

  .cookie-panel {
    right: 10px;
    bottom: 82px;
    left: 10px;
    padding: 17px;
  }

  .cookie-panel__copy {
    align-items: flex-start;
  }

  .cookie-panel__icon {
    display: none;
  }

  .cookie-panel__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-hero {
    padding: 65px 0 60px;
  }

  .legal-hero h1 {
    font-size: 2.75rem;
  }

  .legal-layout {
    padding-top: 50px;
    padding-bottom: 75px;
  }

  .legal-summary {
    grid-template-columns: 1fr;
  }

  .legal-summary strong {
    grid-column: auto;
  }

  .legal-content section {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .legal-card {
    padding: 20px;
  }

  .legal-table {
    display: grid;
    overflow: visible;
    gap: 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .legal-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .legal-table [role="row"]:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    margin: -1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .legal-table [role="row"]:not(:first-child) {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: var(--shadow-sm);
  }

  .legal-table [role="row"]:not(:first-child) span {
    display: grid;
    gap: 4px;
    padding: 13px 15px;
  }

  .legal-table [role="row"]:not(:first-child) span::before {
    color: var(--blue-600);
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .legal-table [role="row"]:not(:first-child) span:first-child {
    color: var(--navy-950);
    background: #f1f6ff;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-weight: 760;
  }

  .legal-table [role="row"]:not(:first-child) span:first-child::before {
    content: "Données concernées";
  }

  .legal-table [role="row"]:not(:first-child) span:last-child::before {
    content: "Durée de conservation";
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
