﻿:root {
  --ink: #f6f8fb;
  --navy: #f6f8fb;
  --blue: #2563ff;
  --blue-bright: #7da9ff;
  --cyan: #22d3ee;
  --blue-dark: #06377a;
  --muted: #a8b4c4;
  --line: rgba(148, 163, 184, 0.22);
  --soft: #101c2d;
  --paper: #07111f;
  --white: #ffffff;
  --accent: #2563ff;
  --accent-dark: #123fd1;
  --gold: #d6a54d;
  --green: #1e8b62;
  --deep: #2b2b2b;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #2b2b2b;
  line-height: 1.6;
  overflow-x: clip;
}

main {
  background: #ffffff;
}

body::before {
  display: none;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  margin: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px max(24px, calc((100% - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background: rgba(43, 43, 43, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f8fafc;
  white-space: nowrap;
}

.brand-corpo {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: clamp(82px, 8vw, 112px);
  height: auto;
  border-radius: 8px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, #3a3a3a, var(--blue));
  font-size: 0.78rem;
  box-shadow: 0 10px 22px rgba(15, 42, 74, 0.22);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.85rem;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  color: #ffffff;
  background: transparent;
}

/* Menu burger (mobile uniquement) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-cta-mobile {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #15294a;
  background: linear-gradient(180deg, #b3cdff 0%, #7da9ff 100%);
  box-shadow:
    0 10px 26px rgba(125, 169, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(37, 99, 255, 0.22);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #c2d8ff 0%, #8fb8ff 100%);
  box-shadow:
    0 14px 34px rgba(125, 169, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(37, 99, 255, 0.22);
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-secondary {
  color: #f8fafc;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.btn-small {
  min-height: 44px;
  padding: 0 17px;
  font-size: 0.92rem;
}

.section-pad {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 128px max(24px, calc((100% - var(--max)) / 2)) 86px;
  overflow: hidden;
  background-color: #2b2b2b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #2b2b2b 0%, rgba(43, 43, 43, 0.98) 36%, rgba(43, 43, 43, 0.76) 51%, rgba(43, 43, 43, 0.16) 100%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 255, 0.2), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(34, 211, 238, 0.08), transparent 28%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.55rem, 5.4vw, 4.95rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  background: none;
  color: #ffffff;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 28px;
  border-radius: 2px;
  background: var(--blue);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: -12px;
  border-radius: 50%;
  border: 2px solid #2b2b2b;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-avatar:nth-child(2) { background: linear-gradient(135deg, #169a55, #67e8a0); }
.hero-avatar:nth-child(3) { background: linear-gradient(135deg, #6d4ad6, #a78bfa); }
.hero-avatar:nth-child(4) { background: linear-gradient(135deg, #c4452f, #f59e7a); }
.hero-avatar:nth-child(5) { background: linear-gradient(135deg, #e39a12, #fbd34d); }

.hero-social-text {
  display: grid;
  gap: 2px;
}

.hero-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  line-height: 1;
}

.hero-social-text > span:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-copy h1 .hl {
  display: inline-block;
  padding: 0.02em 0.24em;
  margin: 0 0.03em;
  border-radius: 12px;
  color: #14233b;
  background: linear-gradient(135deg, #ffffff, #e9f1f7);
  box-shadow: 0 12px 34px rgba(37, 99, 255, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.05rem;
  line-height: 1.75;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.84rem;
  font-weight: 600;
}

.trust-strip span {
  position: relative;
  padding-left: 22px;
}

.trust-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(30, 139, 98, 0.12);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 34px;
}

.badges span,
.tags span,
.proof-band span,
.method-tags span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(37, 99, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(37, 99, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.mockup-wrap {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  overflow: visible;
}

.mockup-wrap::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -14%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.1), transparent 65%);
  border-radius: 50%;
  filter: none;
  animation: floatOrb1 10s ease-in-out infinite;
}

.mockup-wrap::after {
  display: none;
}

.device-showcase {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  margin: 0;
  width: min(112%, 860px);
  margin-left: -4%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform-origin: center;
  animation: heroImgIn 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both, heroImgFloat 7s 1.1s ease-in-out infinite;
}

.device-showcase::before {
  display: none;
}

.device-showcase img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: 18px;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.5)) saturate(1.03) contrast(1.04);
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  transition: opacity 650ms ease, transform 650ms ease;
}

.hero-slide[src*="compact"] {
  width: min(100%, 612px);
  justify-self: center;
  align-self: center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.floating-preview {
  display: none;
}

.floating-preview img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  filter: saturate(1.04) contrast(1.03);
}

.floating-preview figcaption {
  padding: 8px 5px 3px;
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-preview-one {
  right: 16px;
  bottom: 72px;
}

.floating-preview-two {
  left: 18px;
  bottom: 26px;
}

.browser-mockup {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  min-height: 410px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0a1728, #0e2238);
  box-shadow: 0 34px 78px rgba(7, 21, 37, 0.28);
  border: 1px solid rgba(95, 142, 180, 0.28);
}

.browser-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.mockup-hero {
  margin: 20px;
  min-height: 170px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.94), rgba(18, 75, 104, 0.78)),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 255, 0.28), transparent 30%),
    linear-gradient(45deg, #12263a, #1d5a6a);
  border: 1px solid rgba(37, 99, 255, 0.22);
}

.mockup-hero p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.mockup-hero strong {
  display: block;
  max-width: 240px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.mockup-hero button,
.phone-mockup button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-weight: 800;
  padding: 12px 14px;
}

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

.mockup-grid div {
  height: 86px;
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-grid span {
  display: block;
  width: 38px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(37, 99, 255, 0.42), rgba(37, 99, 255, 0.26));
  box-shadow: 0 0 28px rgba(37, 99, 255, 0.16);
}

.mockup-grid strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.mockup-lines {
  display: grid;
  gap: 10px;
  margin: 0 20px 24px;
}

.mockup-lines span {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-lines span:nth-child(2) {
  width: 72%;
}

.mockup-lines span:nth-child(3) {
  width: 52%;
}

.phone-mockup {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 34px;
  width: 150px;
  min-height: 260px;
  padding: 14px;
  border: 8px solid var(--ink);
  border-radius: 30px;
  color: var(--white);
  background: #091827;
  box-shadow: 0 28px 60px rgba(7, 21, 37, 0.34);
  animation: floatPhone 5.2s ease-in-out infinite;
}

.phone-mockup span {
  display: block;
  width: 48px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-mockup div {
  height: 94px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #123a56, #16b8d9);
  background-size: 18px 18px, 18px 18px, auto;
}

.phone-mockup p {
  margin: 16px 0 14px;
  font-weight: 800;
}

.phone-mockup button {
  width: 100%;
}

.stat-card {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(37, 99, 255, 0.26);
  border-radius: 12px;
  color: #f8fafc;
  background: linear-gradient(145deg, rgba(37, 99, 255, 0.14), rgba(34, 211, 238, 0.06));
  box-shadow: none;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

.stat-card-one {
  inset: auto;
}

.stat-card-two {
  inset: auto;
}

.stat-card-three {
  inset: auto;
}

.hero-dots {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.problem {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  padding: 108px max(24px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 99, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 54%, #f6f8fc 100%);
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(5, 49, 107, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 49, 107, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.problem-head {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.problem .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.problem .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.6vw, 4.55rem);
  line-height: 0.98;
}

.problem .section-heading p:not(.eyebrow) {
  max-width: 900px;
  color: #5b6472;
  font-size: 1.09rem;
}

.solution-label {
  display: none;
}

.seo-snapshot {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(37, 99, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.16), transparent 34%),
    #ffffff;
  box-shadow: 0 22px 56px rgba(5, 49, 107, 0.1);
}

.seo-snapshot::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.snapshot-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(37, 99, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-snapshot strong {
  display: block;
  color: #111827;
  font-size: 1.15rem;
  line-height: 1.25;
}

.seo-snapshot ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.seo-snapshot li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 0.92rem;
  font-weight: 700;
}

.seo-snapshot li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.12);
}

.problem-grid {
  gap: 22px;
}

.problem-card {
  min-height: 0;
  padding: 18px 24px 20px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(37, 99, 255, 0.07);
}

.problem-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 13px;
  color: var(--blue-dark);
  background: linear-gradient(145deg, rgba(37, 99, 255, 0.1), rgba(34, 211, 238, 0.1));
  font-size: 0.9rem;
}

.problem-card h3 {
  max-width: 260px;
  margin-bottom: 10px;
  color: #111827;
}

.problem-card p {
  color: #5b6472;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 255, 0.28);
  box-shadow: 0 26px 64px rgba(5, 49, 107, 0.12);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.benefit-card,
.sector-card,
.price-card,
.project-card,
.testimonial,
.timeline article {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(17, 31, 51, 0.9), rgba(9, 19, 34, 0.82));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.info-card::before,
.benefit-card::before,
.sector-card::before,
.timeline article::before,
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 255, 0.5), transparent);
}

.info-card,
.benefit-card,
.sector-card,
.price-card,
.testimonial,
.timeline article {
  padding: 24px;
}

.info-card p,
.benefit-card p,
.sector-card p,
.price-card p,
.project-card p,
.timeline p,
.testimonial figcaption {
  color: var(--muted);
}

.icon,
.benefit-icon,
.line-icon,
.sector-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(37, 99, 255, 0.12);
  font-weight: 900;
}

.benefit-icon,
.line-icon {
  color: #2563ff;
  background:
    linear-gradient(145deg, rgba(37, 99, 255, 0.13), rgba(34, 211, 238, 0.1));
}

.line-icon,
.sector-icon {
  position: relative;
}

.line-icon::before,
.line-icon::after,
.sector-icon::before,
.sector-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.line-icon.design::before {
  width: 20px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.line-icon.design::after {
  width: 10px;
  height: 2px;
  bottom: 10px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.line-icon.search::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 10px;
  top: 9px;
}

.line-icon.search::after {
  width: 12px;
  height: 2px;
  right: 8px;
  bottom: 12px;
  background: currentColor;
  transform: rotate(45deg);
}

.line-icon.form::before {
  width: 20px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.line-icon.form::after {
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.line-icon.gallery::before {
  width: 22px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.line-icon.gallery::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  top: 12px;
  right: 12px;
}

.line-icon.speed::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.speed::after {
  width: 11px;
  height: 2px;
  background: currentColor;
  transform-origin: left center;
  transform: rotate(-36deg);
  left: 22px;
  top: 21px;
}

.line-icon.human::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid currentColor;
  top: 8px;
}

.line-icon.human::after {
  width: 24px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 5px 5px;
  bottom: 8px;
}

.solution,
.offers,
.faq {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 255, 0.09), transparent 26%),
    linear-gradient(180deg, #ffffff, #f7f8fa);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sector-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(20, 39, 64, 0.96), rgba(10, 24, 42, 0.9));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28), 0 0 34px rgba(37, 99, 255, 0.1);
}

.sector-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: #eaf6ff;
  background:
    linear-gradient(145deg, rgba(37, 99, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 0 0 1px rgba(37, 99, 255, 0.2), 0 12px 28px rgba(0, 0, 0, 0.16);
}

.wood-icon::before {
  width: 24px;
  height: 7px;
  border-radius: 8px;
  background: currentColor;
  box-shadow: 0 10px 0 currentColor;
}

.pipe-icon::before {
  width: 24px;
  height: 20px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 12px 0 0;
}

.bolt-icon::before {
  width: 16px;
  height: 26px;
  background: currentColor;
  clip-path: polygon(58% 0, 18% 48%, 48% 48%, 35% 100%, 82% 38%, 52% 38%);
}

.roof-icon::before {
  width: 27px;
  height: 20px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
  top: 13px;
}

.leaf-icon::before {
  width: 24px;
  height: 24px;
  border-radius: 24px 0 24px 0;
  border: 3px solid currentColor;
  transform: rotate(-18deg);
}

.brick-icon::before {
  width: 28px;
  height: 20px;
  background:
    linear-gradient(currentColor 0 0) 0 8px / 100% 3px no-repeat,
    linear-gradient(currentColor 0 0) 50% 0 / 3px 100% no-repeat,
    linear-gradient(currentColor 0 0) 0 0 / 100% 3px no-repeat,
    linear-gradient(currentColor 0 0) 0 100% / 100% 3px no-repeat;
}

.paint-icon::before {
  width: 24px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.paint-icon::after {
  width: 4px;
  height: 16px;
  background: currentColor;
  bottom: 7px;
}

.heat-icon::before {
  width: 18px;
  height: 25px;
  background: currentColor;
  clip-path: polygon(50% 0, 78% 28%, 66% 48%, 88% 70%, 50% 100%, 14% 70%, 32% 48%, 22% 28%);
}

.lock-icon::before {
  width: 24px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 5px;
  bottom: 11px;
}

.lock-icon::after {
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  top: 9px;
}

.shop-icon::before {
  width: 28px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 5px;
  bottom: 10px;
}

.shop-icon::after {
  width: 31px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  top: 10px;
}

.sector-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 850;
}

.sector-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.sector-rail-wrap {
  position: relative;
}

.sector-rail {
  display: flex;
  gap: 14px;
  padding: 4px 2px 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding: 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.sector-rail::-webkit-scrollbar {
  display: none;
}

.rail-arrow {
  position: absolute;
  top: calc(50% - 5px);
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #15294a;
  background: linear-gradient(180deg, #b3cdff 0%, #7da9ff 100%);
  box-shadow:
    0 10px 26px rgba(125, 169, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.rail-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: linear-gradient(180deg, #c2d8ff 0%, #8fb8ff 100%);
  box-shadow:
    0 14px 32px rgba(125, 169, 255, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.rail-arrow svg {
  width: 20px;
  height: 20px;
}

.rail-arrow-prev {
  left: -6px;
}

.rail-arrow-next {
  right: -6px;
}

.rail-arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
}

.sector-rail .sector-card {
  appearance: none;
  flex: 0 0 164px;
  min-height: 136px;
  scroll-snap-align: center;
  padding: 16px 14px;
  border: 1px solid #e5e7eb;
  border-top: 2px solid rgba(37, 99, 255, 0.26);
  border-radius: 16px;
  color: #111827;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 10px 28px rgba(5, 49, 107, 0.055);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.sector-rail .sector-card strong,
.sector-rail .sector-card span:last-child {
  display: block;
}

.sector-rail .sector-card strong {
  margin-bottom: 5px;
  font-size: 0.98rem;
  line-height: 1.2;
}

.sector-rail .sector-card span:last-child {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.sector-rail .sector-card:hover,
.sector-rail .sector-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 255, 0.34);
  border-top-color: var(--blue);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 36%),
    #ffffff;
  box-shadow: 0 18px 40px rgba(5, 49, 107, 0.12);
}

.sector-rail .sector-card.is-active .sector-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(37, 99, 255, 0.22);
}

.sector-rail .sector-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border-radius: 12px;
}

.sector-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(37, 99, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 28px 80px rgba(5, 49, 107, 0.11);
}

.sector-preview-copy h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.sector-preview-copy p:not(.eyebrow) {
  color: #5b6472;
  font-size: 1.05rem;
}

.sector-preview-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.sector-preview-copy li {
  position: relative;
  padding-left: 28px;
  color: #263241;
  font-weight: 760;
}

.sector-preview-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.12);
}

.sector-preview-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding-top: 36px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, #232327, #1c1c20);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
  isolation: isolate;
}

/* Barre de fenêtre navigateur (rend l'aperçu lisible comme un vrai site) */
.sector-preview-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: #2c2c32;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sector-preview-media::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 16px 0 0 #febc2e, 32px 0 0 #28c840;
}

.sector-preview-media img {
  width: 100%;
  height: clamp(190px, 22vw, 300px);
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0 0 17px 17px;
  transition: opacity 180ms ease, transform 220ms ease;
}

.sector-preview-media img.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.sector-preview-visual {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.realisation-caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #2b2b2b;
  background: #ffffff;
  border: 1px solid #e7eaef;
  box-shadow: 0 6px 18px rgba(5, 49, 107, 0.08);
  justify-self: center;
}

.realisation-caption svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

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

.price-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--accent));
  opacity: 0.56;
}

.price-card.highlighted {
  position: relative;
  border-color: rgba(37, 99, 255, 0.42);
  background:
    radial-gradient(circle at 82% 0%, rgba(37, 99, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(19, 38, 62, 0.98), rgba(9, 21, 38, 0.92));
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3), 0 0 42px rgba(37, 99, 255, 0.11);
  transform: translateY(-10px);
}

.price-card strong {
  display: block;
  margin: 20px 0;
  color: var(--navy);
  font-size: 1.3rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: #b8c4d4;
}

.price-card li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.project-card {
  overflow: hidden;
}

.project-card h3,
.project-card p,
.project-card .tags {
  margin-left: 22px;
  margin-right: 22px;
}

.project-card h3 {
  margin-top: 22px;
}

.project-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.project-image {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.project-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(15, 42, 74, 0.18);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 240ms ease;
}

.project-card:hover .project-image img {
  transform: translateY(-2px);
}

.project-image.wood {
  background:
    linear-gradient(135deg, rgba(15, 42, 74, 0.08), rgba(37, 99, 255, 0.08)),
    linear-gradient(135deg, #8e6947, #ead1af);
}

.project-image.garden {
  background:
    linear-gradient(135deg, rgba(15, 42, 74, 0.1), rgba(30, 139, 98, 0.14)),
    linear-gradient(45deg, #2f7a5d 0%, #b9d6a2 52%, #e9efe6 100%);
}

.project-image.reno {
  background:
    linear-gradient(135deg, rgba(15, 42, 74, 0.14), rgba(255, 255, 255, 0.14)),
    linear-gradient(45deg, #d8dde3, #8b9bad 46%, #f0eee9);
}

.project-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
}

.site-preview {
  position: relative;
  z-index: 1;
  width: min(100%, 260px);
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  color: var(--white);
  background: rgba(15, 42, 74, 0.42);
  box-shadow: 0 24px 54px rgba(15, 42, 74, 0.22);
  backdrop-filter: blur(12px);
}

.site-preview span {
  display: block;
  width: 72px;
  height: 8px;
  margin-bottom: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 94px 0 0 rgba(255, 255, 255, 0.28), 142px 0 0 rgba(255, 255, 255, 0.28);
}

.site-preview strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.1;
}

.site-preview small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

/* ===== Méthode : 2 colonnes (intro + étapes) ===== */
.section-pad.method {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 96px max(24px, calc((100% - var(--max)) / 2)) 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 99, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 54%, #f6f8fc 100%);
}

.method::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(5, 49, 107, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 49, 107, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

/* ===== Section avis : thème sombre (cohérence hero/secteurs) ===== */
.section-pad.credibility {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 80px max(24px, calc((100% - var(--max)) / 2)) 96px;
  overflow: hidden;
  background-color: #2b2b2b;
}

.credibility::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
}

.credibility::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 10%, rgba(37, 99, 255, 0.16), transparent 32%),
    radial-gradient(circle at 12% 94%, rgba(34, 211, 238, 0.09), transparent 30%);
}

.credibility > * {
  position: relative;
  z-index: 1;
}

main > section.credibility .reviews-head h2 {
  color: #ffffff;
}

main > section.credibility .reviews-head .eyebrow {
  color: var(--blue-bright);
}

.section-pad.credibility .rating-badge {
  color: #e7edf5;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.section-pad.credibility .rating-badge strong {
  color: #ffffff;
}

.section-pad.credibility .testimonial {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(180deg, #35353b, #2a2a2f);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.section-pad.credibility .testimonial blockquote {
  color: #e7edf5;
}

main > section.credibility .t-who strong {
  color: #ffffff;
}

main > section.credibility .t-who > span {
  color: var(--muted);
}

main > section.credibility .testimonial::after {
  color: rgba(125, 169, 255, 0.16);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.method-intro h2 {
  margin-bottom: 18px;
}

.method-intro > p {
  color: #6b6b6b;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.method-intro .btn {
  margin-top: 10px;
}

.method-assurances {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.method-assurances li {
  position: relative;
  padding-left: 32px;
  color: #4f5663;
  font-size: 0.92rem;
  font-weight: 600;
}

.method-assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(37, 99, 255, 0.12);
}

.method-assurances li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  background: #f7f8fa;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.method-item:hover {
  transform: translateX(4px);
  border-color: rgba(37, 99, 255, 0.25);
  box-shadow: 0 14px 34px rgba(5, 49, 107, 0.07);
}

.method-num {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 20px rgba(37, 99, 255, 0.22);
}

.method-item-body h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.method-item-body p {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.88rem;
  line-height: 1.65;
}

.method-callout {
  margin-top: 6px;
  padding: 18px 22px;
  border-radius: 14px;
  background: #2b2b2b;
}

.method-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

.method-callout strong {
  color: var(--blue-bright);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.timeline article {
  position: relative;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.proof-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(37, 99, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(37, 99, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #071525, #0f2a4a);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: var(--shadow);
}

.proof-band span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ===== Avis clients : carrousel défilant ===== */
.reviews-head {
  max-width: none;
  margin-bottom: 30px;
  text-align: center;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ececec;
  box-shadow: 0 8px 22px rgba(5, 49, 107, 0.09);
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b2b2b;
}

.rating-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.rating-badge strong {
  color: #1a1a1a;
}

/* ===== Chiffres-résultats (épuré) ===== */
.results-intro {
  max-width: 600px;
  margin: 4px auto 36px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 500;
  line-height: 1.45;
}

.results-intro strong {
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px solid rgba(34, 211, 238, 0.5);
  padding-bottom: 1px;
}

.results-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto 52px;
}

.result-num sup {
  font-size: 0.5em;
  vertical-align: super;
}

.result-stat {
  position: relative;
  text-align: center;
  padding: 6px 18px;
}

.result-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
}

.result-num {
  display: block;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.result-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
}

.reviews-carousel {
  position: relative;
}

.reviews-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 0 6px;
}

.reviews-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reviews-arrow:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(125, 169, 255, 0.55);
  color: #ffffff;
  transform: translateY(-2px);
}

.reviews-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  padding: 10px 2px 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 358px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  overflow: hidden;
}

.testimonial::after {
  content: "\201D";
  position: absolute;
  right: 20px;
  top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(37, 99, 255, 0.1);
  pointer-events: none;
}

.stars {
  color: var(--gold);
  font-size: 1.18rem;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial blockquote {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.t-avatar {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.testimonial:nth-child(6n + 2) .t-avatar { background: linear-gradient(135deg, #169a55, #67e8a0); }
.testimonial:nth-child(6n + 3) .t-avatar { background: linear-gradient(135deg, #6d4ad6, #a78bfa); }
.testimonial:nth-child(6n + 4) .t-avatar { background: linear-gradient(135deg, #c4452f, #f59e7a); }
.testimonial:nth-child(6n + 5) .t-avatar { background: linear-gradient(135deg, #e39a12, #fbd34d); }
.testimonial:nth-child(6n + 6) .t-avatar { background: linear-gradient(135deg, #0e9aa7, #5eead4); }

.t-who {
  display: grid;
  line-height: 1.25;
}

.t-who strong {
  color: #1a1a1a;
  font-size: 0.98rem;
}

.t-who > span {
  color: #6b6b6b;
  font-size: 0.85rem;
}


.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.cta-copy {
  position: sticky;
  top: 112px;
}

.cta-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.project-includes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.project-includes span {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(190, 209, 228, 0.8);
  border-radius: 18px;
  color: #dbeafe;
  background:
    linear-gradient(180deg, rgba(17, 31, 51, 0.9), rgba(9, 19, 34, 0.78));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-weight: 800;
}

.project-includes span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(37, 99, 255, 0.12);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(37, 99, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(17, 31, 51, 0.96), rgba(9, 19, 34, 0.9));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-weight: 780;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(7, 17, 31, 0.72);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(37, 99, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(37, 99, 255, 0.12);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.form-message.success {
  color: var(--green);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(17, 31, 51, 0.9), rgba(9, 19, 34, 0.82));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 24px;
  padding: 34px 0 10px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  max-width: 430px;
  margin: 16px 0 0;
}

.footer nav {
  display: grid;
  gap: 9px;
}

address {
  font-style: normal;
}

main > section:not(.hero) {
  color: #2b2b2b;
}

main > section:not(.hero) h2,
main > section:not(.hero) h3,
main > section:not(.hero) .price-card strong,
main > section:not(.hero) summary {
  color: #2b2b2b;
}

main > section:not(.hero) .section-heading p:not(.eyebrow),
main > section:not(.hero) .info-card p,
main > section:not(.hero) .benefit-card p,
main > section:not(.hero) .sector-card p,
main > section:not(.hero) .price-card p,
main > section:not(.hero) .project-card p,
main > section:not(.hero) .timeline p,
main > section:not(.hero) .testimonial figcaption,
main > section:not(.hero) details p {
  color: #6b6b6b;
}

main > section:not(.hero) .info-card,
main > section:not(.hero) .benefit-card,
main > section:not(.hero) .sector-card,
main > section:not(.hero) .price-card,
main > section:not(.hero) .project-card,
main > section:not(.hero) .testimonial,
main > section:not(.hero) .timeline article,
main > section:not(.hero) details {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.055);
}

main > section:not(.hero) .icon,
main > section:not(.hero) .line-icon,
main > section:not(.hero) .sector-icon {
  color: var(--blue-dark);
  background: rgba(37, 99, 255, 0.1);
  box-shadow: none;
}

main > section:not(.hero) .badges span,
main > section:not(.hero) .tags span,
main > section:not(.hero) .method-tags span,
main > section:not(.hero) .pill {
  color: var(--blue-dark);
  border-color: rgba(37, 99, 255, 0.25);
  background: rgba(37, 99, 255, 0.1);
}

main > section:not(.hero) .price-card.highlighted {
  border-color: rgba(37, 99, 255, 0.32);
  background:
    radial-gradient(circle at 82% 0%, rgba(37, 99, 255, 0.12), transparent 32%),
    #ffffff;
  box-shadow: 0 12px 36px rgba(37, 99, 255, 0.12), 0 2px 20px rgba(0, 0, 0, 0.055);
}

main > section:not(.hero) .price-card li {
  color: #4f4f4f;
}

main > section:not(.hero) .proof-band {
  border: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #2b2b2b;
  background-size: 56px 56px, 56px 56px, auto;
}

main > section:not(.hero) .testimonial blockquote {
  color: #2b2b2b;
}

main > section:not(.hero) .project-includes span {
  color: #2b2b2b;
  border: 1px solid #e8e8e8;
  background: #f7f8fa;
  box-shadow: none;
}

main > section:not(.hero) .contact-form {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.07);
}

main > section.problem .problem-card {
  border-color: rgba(37, 99, 255, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 14px 44px rgba(5, 49, 107, 0.08);
}

main > section.problem .problem-card:hover {
  border-color: rgba(37, 99, 255, 0.28);
  box-shadow: 0 26px 64px rgba(5, 49, 107, 0.12);
}

main > section.problem .problem-card .icon {
  color: var(--blue-dark);
  background: linear-gradient(145deg, rgba(37, 99, 255, 0.1), rgba(34, 211, 238, 0.1));
}

/* Couleur dédiée par métier */
.sector-rail .sector-card[data-sector="menuisier"]   { --sector: #b9722a; }
.sector-rail .sector-card[data-sector="plombier"]    { --sector: #2563ff; }
.sector-rail .sector-card[data-sector="paysagiste"]  { --sector: #169a55; }
.sector-rail .sector-card[data-sector="electricien"] { --sector: #e39a12; }
.sector-rail .sector-card[data-sector="couvreur"]    { --sector: #c4452f; }
.sector-rail .sector-card[data-sector="renovation"]  { --sector: #6d4ad6; }
.sector-rail .sector-card[data-sector="commerce"]    { --sector: #0e9aa7; }

main > section:not(.hero) .sector-rail .sector-card {
  border: 1px solid #e7eaef;
  border-top: 3px solid var(--sector, #2563ff);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(5, 49, 107, 0.06);
}

main > section:not(.hero) .sector-rail .sector-icon {
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    var(--sector, #2563ff);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.sector-rail .sector-icon svg {
  width: 21px;
  height: 21px;
}

main > section:not(.hero) .sector-rail .sector-card:hover,
main > section:not(.hero) .sector-rail .sector-card.is-active {
  transform: translateY(-4px);
  border-color: var(--sector, #2563ff);
  border-top-color: var(--sector, #2563ff);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sector, #2563ff) 10%, #ffffff), #ffffff);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--sector, #2563ff) 26%, transparent);
}

main > section:not(.hero) .sector-rail .sector-card.is-active .sector-icon {
  transform: scale(1.06);
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    var(--sector, #2563ff);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--sector, #2563ff) 36%, transparent);
}

main > section:not(.hero) .sector-preview .eyebrow {
  color: var(--blue-bright);
}

main > section:not(.hero) .sector-preview-copy p:not(.eyebrow) {
  color: #5b6472;
}

main > section:not(.hero) .sector-rail .sector-card span:last-child {
  color: var(--sector, #2563ff);
  font-weight: 800;
}

main > section:not(.hero) .sector-rail .sector-card span:last-child::after {
  content: " ›";
  font-weight: 900;
}

/* ===== Section secteurs : direction artistique du hero (sombre + bleu/cyan) ===== */
.section-pad.sectors {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 96px max(24px, calc((100% - var(--max)) / 2));
  overflow: hidden;
  background-color: #2b2b2b;
}

.sectors::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
}

.sectors::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 12%, rgba(37, 99, 255, 0.07), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(34, 211, 238, 0.05), transparent 32%);
}

.sectors > * {
  position: relative;
  z-index: 1;
}

main > section.sectors .section-heading h2 {
  color: #ffffff;
}

main > section.sectors .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

main > section.sectors .sector-rail .sector-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 3px solid var(--sector, #2563ff);
  color: #f6f8fb;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(180deg, #35353b, #2a2a2f);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

main > section.sectors .sector-rail .sector-card strong {
  color: #ffffff;
}

main > section.sectors .sector-rail .sector-card:hover,
main > section.sectors .sector-rail .sector-card.is-active {
  border-color: var(--sector, #2563ff);
  border-top-color: var(--sector, #2563ff);
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--sector, #2563ff) 22%, transparent), transparent 46%),
    linear-gradient(180deg, #3d3d44, #313137);
  box-shadow: 0 22px 48px color-mix(in srgb, var(--sector, #2563ff) 26%, transparent);
}

main > section.sectors .sector-preview {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05), transparent 40%),
    linear-gradient(180deg, #35353b, #2a2a2f);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

main > section.sectors .sector-preview-copy h3 {
  color: #ffffff;
}

main > section.sectors .sector-preview-copy p:not(.eyebrow) {
  color: var(--muted);
}

main > section.sectors .sector-preview-copy li {
  color: #e7edf5;
}

main > section.sectors .realisation-caption {
  color: #e7edf5;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* Lisibilité du bleu/des accents sur fond sombre */
.hero .eyebrow,
main > section.sectors .section-heading .eyebrow {
  color: var(--blue-bright);
}

main > section.sectors .sector-rail .sector-card span:last-child {
  color: color-mix(in srgb, var(--sector, #2563ff) 50%, #ffffff);
}

/* ===== Bandeau logos clients (défilant) ===== */
.clients-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px 0;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.clients-label {
  margin: 0 0 26px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b6b9c0;
}

.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientsScroll 32s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(var(--clients-shift, -50%)); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 40px;
}

.client-logo img {
  height: 46px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 0.25s;
}

.client-logo img:hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }
}

main > section:not(.hero) label {
  color: #2b2b2b;
}

main > section:not(.hero) input,
main > section:not(.hero) textarea {
  color: #2b2b2b;
  background: #f7f8fa;
  border-color: #e8e8e8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes heroImgIn {
  from {
    opacity: 0;
    transform: translateX(34px) rotate(-2.1deg) skewY(0.6deg) scale(0.96);
  }

  to {
    opacity: 0.96;
    transform: translateX(0) rotate(-2.1deg) skewY(0.6deg) scale(1);
  }
}

@keyframes heroImgFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2.1deg) skewY(0.6deg);
  }

  50% {
    transform: translateY(-14px) rotate(-2.1deg) skewY(0.6deg);
  }
}

@keyframes sectorMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes floatOrb1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  35% {
    transform: translate(20px, -30px);
  }

  70% {
    transform: translate(-12px, 16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header > .btn {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: max(14px, calc((100% - var(--max)) / 2));
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    min-width: 210px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(34, 34, 38, 0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    font-size: 0.95rem;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 4px;
    color: #15294a;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(180deg, #b3cdff 0%, #7da9ff 100%);
  }

  .nav-cta-mobile:hover {
    background: linear-gradient(180deg, #c2d8ff 0%, #8fb8ff 100%);
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .final-cta,
  .method-layout {
    grid-template-columns: 1fr;
  }

  /* Méthode mobile : cartes d'étapes juste après la description */
  .method-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .method-intro {
    display: contents;
  }

  .method-intro > * {
    margin: 0;
  }

  .method-intro .eyebrow { order: 1; }
  .method-intro h2 { order: 2; }
  .method-intro > p:not(.eyebrow) { order: 3; }
  .method-steps { order: 4; }
  .method-intro .btn { order: 5; }
  .method-intro .method-assurances { order: 6; }
  .method-intro .method-tags { order: 7; }

  /* Hero mobile : carrousel juste après la description + espacement homogène */
  .hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > * {
    position: relative;
    z-index: 1;
    margin: 0;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
    z-index: 1;
    min-height: auto;
    margin: 0;
  }

  .badges {
    order: 3;
  }

  .trust-strip {
    order: 4;
  }

  .hero-social {
    order: 5;
  }

  .hero-actions {
    order: 6;
  }

  /* Constat mobile : carte SEO après les cartes, précédée de "La solution" */
  .problem {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .problem-head {
    display: contents;
  }

  .problem .section-heading {
    order: 1;
  }

  .problem-grid {
    order: 2;
  }

  .problem .solution-label {
    display: block;
    order: 3;
    margin: 0 0 -14px;
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .problem .seo-snapshot {
    order: 4;
    max-width: none;
    padding: 18px;
  }

  .seo-snapshot strong {
    font-size: 1.02rem;
  }

  .seo-snapshot ul {
    margin-top: 14px;
    gap: 9px;
  }

  .seo-snapshot li {
    font-size: 0.86rem;
  }

  .card-grid.four,
  .card-grid.three,
  .timeline,
  .pricing-grid,
  .project-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sector-preview {
    grid-template-columns: 1fr;
  }

  .sector-preview-visual {
    order: -1;
  }

  .cta-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 18px), var(--max));
    min-height: 60px;
    padding: 10px;
    border-radius: 18px;
  }

  .brand span:last-child {
    font-size: 0.96rem;
  }

  .brand-logo {
    width: 78px;
  }


  .section-pad {
    width: min(calc(100% - 28px), var(--max));
    padding: 66px 0;
  }

  .problem {
    width: 100%;
    padding: 72px 14px;
  }

  .problem .section-heading h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .problem-card {
    min-height: auto;
    padding: 16px 18px;
  }

  .problem-grid {
    gap: 12px;
  }

  .problem-card .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 11px;
  }

  .problem-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .problem-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .solution,
  .offers,
  .faq {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .sector-rail {
    gap: 10px;
  }

  .rail-arrow {
    display: none;
  }

  .sector-rail .sector-card {
    flex-basis: 142px;
    min-height: 124px;
    padding: 14px 12px;
  }

  .sector-rail .sector-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .sector-rail .sector-card strong {
    font-size: 0.92rem;
  }

  .sector-rail .sector-card span:last-child {
    font-size: 0.72rem;
  }

  .sector-preview {
    gap: 22px;
    padding: 18px;
    border-radius: 22px;
  }

  .sector-preview-copy h3 {
    font-size: 2rem;
  }

  .sector-preview-media {
    border-radius: 17px;
  }

  .sector-preview-media img {
    height: 240px;
    padding: 0;
  }

  .realisation-caption {
    gap: 5px;
    padding: 5px 11px;
    font-size: 0.68rem;
  }

  .realisation-caption svg {
    width: 12px;
    height: 12px;
  }

  /* Aperçu secteur : ne garder que le CTA sous l'image */
  .sector-preview-copy [data-sector-kicker],
  .sector-preview-copy [data-sector-title],
  .sector-preview-copy [data-sector-description],
  .sector-preview-copy [data-sector-points] {
    display: none;
  }

  .hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 108px 14px 66px;
  }

  .trust-strip {
    gap: 10px 16px;
    font-size: 0.78rem;
  }

  .trust-strip span {
    padding-left: 18px;
  }

  .trust-strip span::before {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(30, 139, 98, 0.12);
  }

  .hero-social {
    gap: 11px;
  }

  .hero-avatar {
    width: 34px;
    height: 34px;
    margin-left: -10px;
    font-size: 0.66rem;
  }

  .hero-stars {
    font-size: 0.85rem;
  }

  .hero-social-text > span:last-child {
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.56rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .center-action {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    text-align: center;
  }

  .mockup-wrap {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .browser-mockup {
    margin-top: 74px;
    min-height: 350px;
  }

  .device-showcase {
    margin-top: 0;
    width: 100%;
    margin-left: 0;
    border-radius: 22px;
    animation: none;
  }

  .device-showcase img {
    height: auto;
  }

  .floating-preview {
    display: none;
  }

  .mockup-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .mockup-grid div {
    height: 64px;
  }

  .phone-mockup {
    width: 122px;
    min-height: 214px;
    right: 16px;
    bottom: 18px;
    border-width: 6px;
  }

  .phone-mockup div {
    height: 70px;
  }

  .rating-badge {
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .rating-stars {
    font-size: 0.9rem;
  }

  .testimonial {
    flex-basis: 286px;
    padding: 18px;
    gap: 12px;
  }

  .testimonial blockquote {
    font-size: 0.94rem;
  }

  .testimonial::after {
    font-size: 3.6rem;
    right: 16px;
  }

  .stars {
    font-size: 1.05rem;
  }

  .t-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .t-who strong {
    font-size: 0.92rem;
  }

  .t-who > span {
    font-size: 0.8rem;
  }

  .results-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .result-stat {
    padding: 4px 5px;
  }

  .result-num {
    font-size: 1.5rem;
  }

  .result-label {
    font-size: 0.72rem;
  }

  .result-stat:not(:last-child)::after {
    height: 40px;
  }

  .stat-card-one {
    inset: auto;
  }

  .stat-card-two {
    inset: auto;
  }

  .stat-card-three {
    inset: auto;
  }

  .card-grid.four,
  .card-grid.three,
  .timeline,
  .pricing-grid,
  .project-grid,
  .testimonial-grid,
  .sector-grid,
  .form-row,
  .footer {
    grid-template-columns: 1fr;
  }

  .price-card.highlighted {
    transform: none;
  }

  .project-image {
    padding: 18px;
  }

  .project-image img {
    min-height: 0;
  }

  .contact-form {
    padding: 16px;
    gap: 11px;
    border-radius: 20px;
  }

  .contact-form label {
    gap: 5px;
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 42px;
    padding: 9px 12px;
  }

  .contact-form textarea {
    min-height: 84px;
  }

  .contact-form .btn {
    min-height: 46px;
  }

  .form-message {
    min-height: 0;
  }

  .project-includes {
    display: none;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.18rem;
  }
}

/* ============================================================
   BLOG — page hub + articles (SEO)
   ============================================================ */

/* Fil d'ariane */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #8a8a8a;
}
.crumbs a { color: var(--blue); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-current] { color: #6b6b6b; }
.crumbs .sep { color: #c4c4c4; }

/* Intro de la page blog — même arrière-plan sombre que le hero d'accueil */
.blog-intro {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 150px max(24px, calc((100% - var(--max)) / 2)) 72px;
  background-color: #2b2b2b;
  overflow: hidden;
}
.blog-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent);
}
.blog-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 16%, rgba(37, 99, 255, 0.2), transparent 32%),
    radial-gradient(circle at 10% 92%, rgba(34, 211, 238, 0.08), transparent 30%);
}
.blog-intro h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  color: #ffffff;
}
.blog-intro h1 .hl {
  display: inline-block;
  padding: 0.02em 0.24em;
  margin: 0 0.03em;
  border-radius: 12px;
  color: #14233b;
  background: linear-gradient(135deg, #ffffff, #e9f1f7);
  box-shadow: 0 12px 34px rgba(37, 99, 255, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.blog-intro .blog-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.12rem;
  line-height: 1.7;
}
.blog-intro .eyebrow { color: var(--blue-bright); }
.blog-intro .crumbs { color: rgba(255, 255, 255, 0.5); }
.blog-intro .crumbs span[aria-current] { color: rgba(255, 255, 255, 0.72); }
.blog-intro .crumbs .sep { color: rgba(255, 255, 255, 0.3); }
.blog-intro .crumbs a { color: var(--blue-bright); }

/* Grille d'articles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.blog-card:hover {
  transform: translateY(-4px);
}
.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f7;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(37, 99, 255, 0.92);
  backdrop-filter: blur(4px);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 22px 22px 24px;
}
.blog-card__title {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.blog-card__excerpt {
  margin: 0;
  color: #6b6b6b !important;
  font-size: 0.96rem;
  line-height: 1.6;
}
.blog-card__meta {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
  color: #9a9a9a;
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-card__meta span { position: relative; }
.blog-card__meta span + span::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c9c9c9;
  transform: translateY(-50%);
}
.blog-card__link {
  margin-top: 4px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}
.blog-card:hover .blog-card__link { text-decoration: underline; }

/* Article vedette (span 3) */
.blog-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  margin-bottom: 34px;
}
.blog-featured .blog-card__media { aspect-ratio: auto; height: 100%; min-height: 320px; }
.blog-featured .blog-card__body { justify-content: center; padding: 40px 42px; gap: 14px; }
.blog-featured .blog-card__title { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.blog-featured .blog-card__excerpt { font-size: 1.02rem; }

/* Bandeau CTA en bas de la page blog */
.blog-cta {
  margin-top: 8px;
  padding: 48px;
  border-radius: var(--radius);
  text-align: center;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 99, 255, 0.35), transparent 42%),
    linear-gradient(180deg, #35353b, #232327);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-cta h2 { color: #ffffff !important; margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.blog-cta p { color: rgba(255, 255, 255, 0.7) !important; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Page article ---------- */
.article-head {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 132px 0 8px;
  text-align: center;
}
.article-head .crumbs { justify-content: center; }
.article-head .blog-card__cat {
  position: static;
  display: inline-block;
  margin-bottom: 20px;
}
.article-head h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  color: #1a1a1a;
}
.article-head .article-standfirst {
  max-width: 640px;
  margin: 0 auto;
  color: #6b6b6b;
  font-size: 1.14rem;
  line-height: 1.65;
}
.article-byline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  color: #9a9a9a;
  font-size: 0.86rem;
  font-weight: 600;
}
.article-byline span { position: relative; }
.article-byline span + span::before {
  content: "•";
  position: absolute;
  left: -11px;
  color: #ccc;
}

.article-cover {
  width: min(calc(100% - 40px), 680px);
  margin: 28px auto 0;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eef2f7;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Corps rédactionnel */
.article-body {
  width: min(calc(100% - 40px), 720px);
  margin: 0 auto;
  padding: 56px 0 40px;
  font-size: 1.09rem;
  line-height: 1.78;
  color: #2b2b2b;
}
.article-body > p { margin: 0 0 22px; color: #383838; }
.article-body h2 {
  margin: 48px 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  scroll-margin-top: 100px;
  color: #1a1a1a;
}
.article-body h3 {
  margin: 32px 0 12px;
  font-size: 1.3rem;
  color: #1f1f1f;
}
.article-body details {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.055);
}
.article-body summary { color: #2b2b2b; }
.article-body details p { color: #6b6b6b; }
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 2px;
  list-style: none;
}
.article-body ol { counter-reset: art-ol; }
.article-body li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: #383838;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
}
.article-body ol li { counter-increment: art-ol; }
.article-body ol li::before {
  content: counter(art-ol);
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--blue);
}
.article-body a:not(.btn) { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: #1f1f1f; }
.article-body blockquote {
  margin: 32px 0;
  padding: 20px 26px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: #f4f7fd;
  color: #2b2b2b;
  font-size: 1.12rem;
  font-style: italic;
}
.article-body blockquote p:last-child { margin: 0; }

/* Encadré "à retenir" / TL;DR */
.article-key {
  margin: 0 0 40px;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f4;
  background: linear-gradient(180deg, #f8fbff, #f2f6fd);
}
.article-key strong.article-key__label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-key ul { margin: 0; }

/* Tableau simple (ex : grille tarifaire) */
.article-table-wrap { margin: 0 0 28px; overflow-x: auto; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  min-width: 460px;
}
.article-table th,
.article-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
}
.article-table thead th {
  color: #1f1f1f;
  font-weight: 800;
  background: #f6f8fb;
}
.article-table tbody tr:hover { background: #fafbfe; }

/* CTA inline dans l'article */
.article-inline-cta {
  margin: 40px 0;
  padding: 30px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 255, 0.4), transparent 45%),
    linear-gradient(180deg, #35353b, #232327);
}
.article-inline-cta p { margin: 0; color: #ffffff; font-weight: 700; font-size: 1.08rem; max-width: 420px; }
.article-inline-cta .btn { flex-shrink: 0; }

/* Articles liés */
.related-head {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.related-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 28px; }

@media (max-width: 1050px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .blog-card__media { min-height: 220px; }
  .blog-featured .blog-card__body { padding: 28px 24px; }
  .blog-intro { padding-top: 120px; }
  .article-head { padding-top: 116px; }
  .article-cover { aspect-ratio: 16 / 10; }
  .blog-cta { padding: 36px 24px; }
  .article-inline-cta { flex-direction: column; align-items: flex-start; }
}


