:root {
  --ink: #071020;
  --navy: #06132d;
  --navy-2: #0d2a63;
  --blue: #1c4fa3;
  --gold: #d5a24a;
  --gold-light: #e2bc6b;
  --ivory: #f4f1eb;
  --paper: #faf9f6;
  --white: #fff;
  --muted: #667085;
  --line: rgba(7, 16, 32, .14);
  --line-light: rgba(255, 255, 255, .14);
  --shell: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.shell, .container { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.section { padding: 140px 0; }
.section-dark { color: var(--white); background: #040b18; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 5000; padding: 10px 16px; color: var(--ink); background: var(--gold-light); }
.skip-link:focus { top: 20px; }

.kicker, .eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.kicker-light, .eyebrow-light { color: var(--gold-light); }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { margin: 0; font-weight: 600; letter-spacing: -.058em; }
h1 em, h2 em, .expertise-quote em {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 92px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: height .25s ease, background .25s ease, backdrop-filter .25s ease;
}
.header.scrolled { height: 76px; background: rgba(3, 9, 22, .93); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 54px; }
.wordmark, .brand { display: inline-flex; align-items: center; gap: 13px; }
.wordmark img, .brand img { width: 48px; height: 48px; object-fit: cover; border: 1px solid rgba(226,188,107,.48); border-radius: 12px; }
.wordmark > span, .brand > span { display: grid; line-height: 1.05; }
.wordmark strong, .brand strong { font-size: 1rem; letter-spacing: -.02em; }
.wordmark small, .brand small { margin-top: 6px; color: rgba(255,255,255,.54); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 34px; }
.nav a { position: relative; color: rgba(255,255,255,.68); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.nav a::after { content: ""; position: absolute; right: 100%; bottom: -8px; left: 0; height: 1px; background: var(--gold-light); transition: right .25s ease; }
.nav a:hover { color: var(--white); }
.nav a:hover::after { right: 0; }
.header-contact { min-height: 45px; padding: 0 18px; display: inline-flex; align-items: center; gap: 18px; border: 1px solid rgba(255,255,255,.32); color: var(--white); font-size: .69rem; font-weight: 800; letter-spacing: .04em; transition: color .2s ease, background .2s ease; }
.header-contact:hover { color: var(--ink); background: var(--white); }
.menu { display: none; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 0; background: none; }
.menu span { display: block; width: 26px; height: 1px; margin: 7px auto; background: var(--white); transition: transform .2s ease; }

.hero { position: relative; min-height: 900px; height: 100vh; overflow: hidden; color: var(--white); background: #030916; }
.hero-image { position: absolute; inset: 0; background: url("assets/hero-premium.webp") center / cover no-repeat; transform: scale(1.02); animation: hero-enter 1.8s cubic-bezier(.2,.7,.2,1) both; }
@keyframes hero-enter { from { opacity: .5; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,7,18,.98) 0%, rgba(3,9,22,.87) 35%, rgba(3,9,22,.2) 70%, rgba(3,9,22,.16) 100%), linear-gradient(0deg, rgba(3,9,22,.72), transparent 48%); }
.hero-content { position: relative; z-index: 2; height: 100%; padding: 165px 0 74px; display: flex; flex-direction: column; justify-content: center; }
.hero-copy { max-width: 800px; }
.hero h1 { max-width: 840px; font-size: clamp(4.4rem, 8vw, 7.8rem); line-height: .89; }
.hero-text { max-width: 590px; margin: 34px 0 38px; color: rgba(255,255,255,.65); font-size: 1.02rem; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 32px; }
.btn { min-height: 56px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border: 1px solid transparent; font-size: .73rem; font-weight: 800; letter-spacing: .05em; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: var(--ink); background: var(--gold-light); box-shadow: 0 16px 40px rgba(213,162,74,.16); }
.btn-gold:hover { background: var(--white); box-shadow: 0 22px 52px rgba(0,0,0,.22); }
.link-light { padding-bottom: 7px; display: inline-flex; align-items: center; gap: 28px; border-bottom: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.85); font-size: .76rem; font-weight: 700; }
.hero-meta { position: absolute; right: 0; bottom: 74px; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 570px; margin-left: auto; border-top: 1px solid rgba(255,255,255,.2); }
.hero-meta > div { padding: 18px 18px 0; display: grid; grid-template-columns: auto 1fr; gap: 13px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-meta > div:last-child { border-right: 0; }
.hero-meta span { color: var(--gold-light); font-size: .56rem; font-weight: 800; }
.hero-meta p { margin: 0; color: rgba(255,255,255,.54); font-size: .63rem; line-height: 1.7; }
.scroll { position: absolute; z-index: 3; bottom: 31px; left: 33px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.45); font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left center; }
.scroll span { width: 32px; height: 1px; background: var(--gold-light); }

.signal-strip { overflow: hidden; color: var(--white); border-top: 1px solid rgba(255,255,255,.12); background: #040b18; }
.signal-track { width: min(calc(100% - 64px), var(--shell)); min-height: 82px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.signal-track span { color: rgba(255,255,255,.54); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.signal-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.vision { background: var(--ivory); }
.editorial-grid { display: grid; grid-template-columns: 220px 1fr; gap: 70px; }
.section-index { padding-top: 8px; display: flex; align-items: flex-start; gap: 16px; }
.section-index span { color: var(--gold); font-size: .66rem; font-weight: 800; }
.section-index p { margin: 0; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.editorial-content h2 { max-width: 980px; font-size: clamp(3rem, 5.5vw, 5.7rem); line-height: 1.04; }
.editorial-content h2 em { color: var(--blue); }
.two-copy { width: min(740px, 100%); margin: 62px 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.two-copy p { margin: 0; color: #4f5c71; font-size: .91rem; line-height: 1.9; }
.outcomes { margin-top: 115px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.outcomes > div { min-height: 220px; padding: 42px 38px; border-right: 1px solid var(--line); }
.outcomes > div:last-child { border-right: 0; }
.outcomes strong { font-size: 1.26rem; letter-spacing: -.03em; }
.outcomes p { max-width: 270px; margin: 18px 0 0; color: var(--muted); font-size: .77rem; line-height: 1.8; }

.expertise { background: linear-gradient(150deg, #030916 0%, #06132d 70%, #071632 100%); }
.section-intro, .offers-head, .work-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 100px; align-items: end; }
.section-intro h2, .offers-head h2, .work-head h2 { font-size: clamp(3.2rem, 6vw, 6.1rem); line-height: .98; }
.section-intro > p, .offers-head > p, .work-head > p { margin: 0 0 10px; color: rgba(255,255,255,.52); font-size: .88rem; line-height: 1.9; }
.service-list { margin-top: 95px; border-top: 1px solid var(--line-light); }
.service-line { min-height: 200px; display: grid; grid-template-columns: 80px 1.1fr 1fr 50px; gap: 38px; align-items: center; border-bottom: 1px solid var(--line-light); transition: background .25s ease, padding .25s ease; }
.service-line:hover { padding-inline: 20px; background: rgba(255,255,255,.035); }
.service-no { color: var(--gold-light); font-size: .62rem; font-weight: 800; }
.service-title small { color: var(--gold-light); font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.service-title h3 { margin: 8px 0 0; font-size: clamp(1.7rem, 2.7vw, 2.8rem); font-weight: 600; letter-spacing: -.045em; }
.service-line > p { margin: 0; color: rgba(255,255,255,.48); font-size: .77rem; line-height: 1.85; }
.service-arrow { color: var(--gold-light); font-size: 1.25rem; }
.expertise-quote { padding: 150px 0 20px; text-align: center; }
.expertise-quote p { margin: 0; color: rgba(255,255,255,.78); font-size: clamp(2rem, 4.2vw, 4.4rem); line-height: 1.18; letter-spacing: -.045em; }

.method { background: var(--paper); }
.method-head .editorial-content h2 { max-width: 880px; }
.method-layout { margin-top: 100px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.method-visual { position: relative; min-height: 550px; padding: 70px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(28,79,163,.45), transparent 35%), linear-gradient(150deg, #030916, #0b1d40); }
.method-visual::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg, transparent, black); }
.method-word { position: relative; z-index: 1; display: grid; grid-template-columns: 35px 1fr auto; align-items: end; }
.method-word span { color: var(--gold-light); font-size: .58rem; }
.method-word strong { font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.method-word small { color: rgba(255,255,255,.42); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.method-line { position: relative; z-index: 1; height: 1px; margin-left: 35px; background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.08)); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { padding: 34px 0; display: grid; grid-template-columns: 65px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.steps li:first-child { border-top: 1px solid var(--line); }
.steps > li > span { color: var(--gold); font-size: .66rem; font-weight: 800; }
.steps small { color: var(--blue); font-size: .58rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.steps h3 { margin: 7px 0 8px; font-size: 1.22rem; letter-spacing: -.03em; }
.steps p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.8; }

.offers { background: var(--ivory); }
.offers-head > p { color: var(--muted); }
.offer-grid { margin-top: 82px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.offer { position: relative; min-height: 620px; padding: 36px 32px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(7,16,32,.11); background: rgba(255,255,255,.64); box-shadow: 0 18px 55px rgba(7,16,32,.035); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.offer::after { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.offer:hover { transform: translateY(-5px); border-color: rgba(213,162,74,.42); box-shadow: 0 28px 70px rgba(7,16,32,.08); }
.offer:hover::after { transform: scaleX(1); }
.offer-featured { grid-column: 1/-1; min-height: auto; padding: 48px; display: grid; grid-template-columns: .95fr 1.15fr .72fr; gap: clamp(40px,5vw,78px); align-items: stretch; color: var(--white); border-color: rgba(255,255,255,.08); background: radial-gradient(circle at 88% 10%,rgba(28,79,163,.48),transparent 30%),linear-gradient(135deg,#030916,#071a3b 70%,#0a285c); box-shadow: 0 30px 80px rgba(3,9,22,.18); }
.offer-featured::after { transform: scaleX(1); }
.recommended { position: absolute; top: 0; right: 0; padding: 10px 16px; color: var(--ink); background: var(--gold-light); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.offer-top { display: flex; justify-content: space-between; gap: 20px; color: var(--gold); }
.offer-top span { font-size: .7rem; font-weight: 800; }
.offer-top small { font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.offer h3 { margin: 42px 0 26px; font-size: clamp(1.85rem, 2.5vw, 2.55rem); font-weight: 600; line-height: 1.05; letter-spacing: -.05em; }
.price { display: flex; align-items: flex-end; gap: 9px; }
.price strong { font-size: 2.7rem; line-height: 1; letter-spacing: -.06em; white-space: nowrap; }
.price span { color: var(--muted); font-size: .7rem; }
.offer-featured .price span { color: rgba(255,255,255,.42); }
.offer > p { min-height: 72px; margin: 27px 0; color: var(--muted); font-size: .86rem; line-height: 1.75; }
.offer-featured > p { color: rgba(255,255,255,.5); }
.offer ul { margin: 0; padding: 24px 0 0; display: grid; gap: 12px; border-top: 1px solid var(--line); list-style: none; }
.offer-featured ul { border-color: var(--line-light); }
.offer li { position: relative; padding-left: 19px; font-size: .8rem; line-height: 1.55; }
.offer li::before { content: ""; position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.offer-note { margin-top: 22px; color: var(--muted); font-size: .7rem; line-height: 1.65; }
.offer-featured .offer-note { color: rgba(255,255,255,.38); }
.offer > a { margin-top: auto; padding: 18px 0 7px; display: flex; justify-content: space-between; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 800; }
.offer-featured-copy { display: flex; flex-direction: column; }
.offer-featured-copy h3 { margin: 42px 0 24px; font-size: clamp(2.45rem,4vw,4rem); }
.offer-featured-copy > p { margin: 0; color: rgba(255,255,255,.66); font-size: .86rem; line-height: 1.8; }
.offer-featured-list { padding: 4px 0 0; }
.offer-featured-list > span { color: var(--gold-light); font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.offer-featured-list ul { margin: 24px 0 0; padding: 25px 0 0; display: grid; gap: 14px; border-top: 1px solid var(--line-light); list-style: none; }
.offer-featured-list li { position: relative; padding-left: 20px; font-size: .8rem; line-height: 1.55; }
.offer-featured-list li::before { content: ""; position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); }
.offer-featured-list .offer-note { margin: 26px 0 0; color: rgba(255,255,255,.58); }
.offer-featured-price { padding: 34px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045); }
.offer-featured-price .saving { align-self: flex-start; padding: 8px 11px; color: var(--gold-light); border: 1px solid rgba(226,188,107,.34); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.offer-featured-price .price { margin-top: 36px; }
.offer-featured-price .price strong { font-size: clamp(3.2rem,4.8vw,5rem); }
.offer-featured-price > p { margin: 22px 0 32px; color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.75; }
.offer-featured-price > a { margin-top: auto; padding: 17px 0 8px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--gold-light); color: var(--white); font-size: .76rem; font-weight: 800; }
.custom-offer { min-height: 130px; display: grid; grid-template-columns: 140px 1fr 1.4fr 140px 150px; gap: 30px; align-items: center; border-bottom: 1px solid var(--line); }
.custom-offer > div { display: flex; gap: 15px; }
.custom-offer > div span { color: var(--gold); font-size: .7rem; font-weight: 800; }
.custom-offer > div p { margin: 0; color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.custom-offer h3 { margin: 0; font-size: 1.5rem; letter-spacing: -.04em; }
.custom-offer > p { color: var(--muted); font-size: .78rem; line-height: 1.65; }
.custom-offer strong { font-size: 1.15rem; }
.custom-offer > a { font-size: .74rem; font-weight: 800; text-align: right; }
.maintenance { margin-top: 100px; padding: 60px; color: var(--white); background: #040b18; }
.maintenance-copy { display: grid; grid-template-columns: .7fr 1fr; gap: 20px 70px; align-items: end; }
.maintenance-copy .kicker { grid-column: 1/-1; margin-bottom: 0; color: var(--gold-light); }
.maintenance-copy h3 { margin: 0; font-size: 2.3rem; line-height: 1.1; letter-spacing: -.05em; }
.maintenance-copy > p:last-child { margin: 0; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.7; }
.plans { margin-top: 45px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.plans > div { padding: 30px 28px; display: grid; border-right: 1px solid var(--line-light); }
.plans > div:last-child { border-right: 0; }
.plans span { color: var(--gold-light); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.plans strong { margin-top: 14px; font-size: 1.65rem; }
.plans strong small { color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 500; }
.plans p { margin: 6px 0 0; color: rgba(255,255,255,.58); font-size: .74rem; line-height: 1.6; }
.credits { padding: 24px 0 0; display: flex; flex-wrap: wrap; gap: 20px 30px; align-items: center; }
.credits strong { margin-right: auto; font-size: .78rem; }
.credits span { font-size: .74rem; }
.credits small { flex-basis: 100%; color: rgba(255,255,255,.5); font-size: .66rem; }
.tax { margin: 20px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }

.work { background: #030916; }
.work-head > p { color: rgba(255,255,255,.5); }
.projects { margin-top: 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: start; }
.project-offset { margin-top: 120px; }
.project-image { position: relative; overflow: hidden; background: #0b162c; }
.project-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.13); pointer-events: none; }
.project-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project:hover .project-image img { transform: scale(1.035); }
.project-caption { padding: 27px 0; display: grid; grid-template-columns: 1fr auto 32px; gap: 26px; align-items: end; border-bottom: 1px solid var(--line-light); }
.project-caption span { color: var(--gold-light); font-size: .55rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-caption h3 { margin: 5px 0 0; font-size: 1.7rem; font-weight: 500; letter-spacing: -.04em; }
.project-caption p { margin: 0 0 4px; color: rgba(255,255,255,.42); font-size: .62rem; }
.project-caption i { color: var(--gold-light); font-style: normal; }
.work-cta { margin-top: 100px; padding-top: 35px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line-light); }
.work-cta p { margin: 0; color: rgba(255,255,255,.4); font-size: .68rem; }
.work-cta a { padding-bottom: 6px; border-bottom: 1px solid var(--gold-light); color: var(--white); font-size: .75rem; font-weight: 700; }
.work-cta a span { margin-left: 25px; color: var(--gold-light); }

.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 120px; }
.faq-head { position: sticky; top: 120px; align-self: start; }
.faq-head h2 { font-size: clamp(3rem, 5.7vw, 5.6rem); line-height: .95; }
.faq-head h2 em { color: var(--blue); }
.faq-head > p:not(.kicker) { color: var(--muted); font-size: .75rem; }
.faq-head > a { display: inline-block; margin-top: 15px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: .68rem; font-weight: 800; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; list-style: none; font-size: .91rem; font-weight: 700; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--gold); font-size: 1.2rem; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 720px; margin: -4px 50px 30px 0; color: var(--muted); font-size: .76rem; line-height: 1.85; }

.final-cta { position: relative; padding: 150px 0; overflow: hidden; color: var(--white); background: #030916; }
.final-bg { position: absolute; inset: 0; opacity: .34; background: linear-gradient(90deg, rgba(3,9,22,.99), rgba(3,9,22,.55)), url("assets/hero-premium.webp") center / cover; }
.final-inner { position: relative; z-index: 1; }
.final-inner h2 { max-width: 1080px; font-size: clamp(3rem, 6vw, 6.3rem); line-height: 1.02; }
.final-actions { margin-top: 55px; display: flex; align-items: center; flex-wrap: wrap; gap: 25px 50px; }
.final-actions > a:not(.btn) { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.72); font-size: .72rem; }

.footer { padding-top: 80px; color: var(--white); background: #020711; }
.footer-top { padding-bottom: 65px; display: grid; grid-template-columns: 1.6fr .7fr .9fr; gap: 90px; }
.footer-top > div:first-child > p, .footer-top > div:last-child p { max-width: 330px; color: rgba(255,255,255,.38); font-size: .68rem; }
.footer-top > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-top > div:not(:first-child) > small { margin-bottom: 19px; color: var(--gold-light); font-size: .54rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-top > div:not(:first-child) > a { margin-bottom: 9px; color: rgba(255,255,255,.62); font-size: .68rem; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.3); font-size: .58rem; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom button { padding: 0; color: inherit; border: 0; background: none; }
.mobile-call { display: none; }

/* Accueil resserré */
.home-solutions { background: linear-gradient(150deg,#030916 0%,#06132d 74%,#0a2453 100%); }
.home-service-grid { margin-top: 82px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line-light); }
.home-service { min-height: 410px; padding: 40px 36px; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); transition: background .25s ease, transform .25s ease; }
.home-service:last-child { border-right: 0; }
.home-service:hover { background: rgba(255,255,255,.045); transform: translateY(-4px); }
.home-service > span { color: var(--gold-light); font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.home-service h3 { margin: 70px 0 22px; font-size: clamp(1.9rem,2.8vw,2.8rem); font-weight: 600; line-height: 1.04; letter-spacing: -.045em; }
.home-service p { margin: 0; color: rgba(255,255,255,.5); font-size: .76rem; line-height: 1.85; }
.home-service strong { margin-top: auto; padding-top: 35px; color: rgba(255,255,255,.9); font-size: .65rem; }
.home-service-accent { color: var(--ink); background: var(--gold-light); }
.home-service-accent > span,.home-service-accent strong { color: var(--ink); }
.home-service-accent p { color: rgba(7,16,32,.64); }
.home-service-accent:hover { background: var(--white); }
.home-prices { background: var(--ivory); }
.home-price-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.offer-grid-home { margin-top: 72px; }
.home-price-grid > div { position: relative; min-height: 265px; padding: 36px; display: grid; align-content: start; border: 1px solid rgba(7,16,32,.11); background: rgba(255,255,255,.62); box-shadow: 0 16px 45px rgba(7,16,32,.035); transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.home-price-grid > div::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.home-price-grid > div:hover { transform: translateY(-4px); border-color: rgba(213,162,74,.4); box-shadow: 0 24px 60px rgba(7,16,32,.08); }
.home-price-grid > div:hover::before,.home-price-grid .home-price-featured::before { transform: scaleX(1); }
.home-price-grid span { color: var(--blue); font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.home-price-grid strong { margin-top: 38px; font-size: clamp(2.4rem,4vw,4rem); line-height: 1; letter-spacing: -.06em; }
.home-price-grid p { margin: 18px 0 0; color: var(--muted); font-size: .72rem; }
.home-price-grid .home-price-featured { color: var(--white); border-color: rgba(255,255,255,.08); background: radial-gradient(circle at 100% 0,rgba(28,79,163,.5),transparent 34%),linear-gradient(145deg,#030916,#071a3d); box-shadow: 0 24px 65px rgba(3,9,22,.14); }
.home-price-grid .home-price-featured span { color: var(--gold-light); }
.home-price-grid .home-price-featured p { color: rgba(255,255,255,.5); }
.text-cta { margin-top: 28px; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: .71rem; font-weight: 800; }
.text-cta span { color: var(--gold); font-size: 1rem; }
.home-about { background: var(--paper); }
.home-about-grid { display: grid; grid-template-columns: minmax(360px,.82fr) 1.18fr; gap: clamp(65px,9vw,145px); align-items: center; }
.home-about-image { position: relative; overflow: hidden; background: var(--navy); }
.home-about-image::after { content:""; position: absolute; inset: 0; border: 1px solid rgba(7,16,32,.14); pointer-events: none; }
.home-about-image img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: center; }
.home-about-image figcaption { position: absolute; z-index: 1; inset: auto 0 0; padding: 19px 22px; display: flex; justify-content: space-between; gap: 25px; color: rgba(255,255,255,.76); background: linear-gradient(0deg,rgba(3,9,22,.92),rgba(3,9,22,.18)); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.home-about-copy h2 { font-size: clamp(3.1rem,5.6vw,5.8rem); line-height: 1; }
.home-about-copy h2 em { color: var(--blue); }
.home-about-copy > p:not(.kicker) { max-width: 690px; margin: 36px 0 0; color: #536075; font-size: .88rem; line-height: 1.95; }
.home-about-points { margin-top: 42px; display: grid; border-top: 1px solid var(--line); }
.home-about-points span { padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-size: .69rem; font-weight: 700; }
.text-link { margin-top: 34px; display: inline-block; padding-bottom: 6px; border-bottom: 1px solid var(--navy); color: var(--navy); font-size: .68rem; font-weight: 800; }
.work-link { padding: 125px 0; }
.work-link-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; align-items: end; }
.work-link h2 { font-size: clamp(3.2rem,6vw,6.1rem); line-height: .98; }
.work-link-inner > div:last-child > p { margin: 0 0 35px; color: rgba(255,255,255,.52); font-size: .82rem; line-height: 1.9; }

/* Pages expertise, tarifs, réalisations et à propos */
.page-hero { min-height: 720px; }
.page-hero .subhero-inner { align-items: center; }
.page-hero .subhero-index { min-height: 350px; }
.page-hero .subhero-note a { display: inline-block; margin-top: 4px; color: var(--gold-light); font-size: .63rem; font-weight: 800; }
.page-hero-portrait { position: absolute; inset: 0 0 0 auto; width: 48%; opacity: .58; background: linear-gradient(90deg,#06132d 0%,transparent 36%), url("assets/stephen-paumier.webp") center 18% / cover no-repeat; }
.page-intro { background: var(--ivory); }
.page-intro-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px,10vw,160px); align-items: start; }
.page-intro h2 { font-size: clamp(3.1rem,5.6vw,5.8rem); line-height: 1.02; }
.page-intro h2 em { color: var(--blue); }
.page-intro-copy { padding-top: 10px; }
.page-intro-copy > p { margin: 0; color: #536075; font-size: .92rem; line-height: 1.95; }
.page-intro-copy > p + p { margin-top: 22px; }
.fact-list { margin-top: 42px; border-top: 1px solid var(--line); }
.fact-list > div { padding: 24px 0; display: grid; grid-template-columns: 70px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.fact-list span { color: var(--gold); font-size: .62rem; font-weight: 800; }
.fact-list strong { display: block; color: var(--navy); font-size: 1rem; }
.fact-list p { margin: 5px 0 0; color: var(--muted); font-size: .7rem; }
.feature-section { background: var(--paper); }
.feature-head { max-width: 900px; }
.feature-head h2 { font-size: clamp(3rem,5.5vw,5.6rem); line-height: 1.02; }
.feature-head h2 em { color: var(--blue); }
.feature-grid { margin-top: 80px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { min-height: 330px; padding: 38px 34px; border-right: 1px solid var(--line); }
.feature-card:last-child { border-right: 0; }
.feature-card > span { color: var(--gold); font-size: .62rem; font-weight: 800; }
.feature-card h3 { margin: 58px 0 18px; font-size: 1.55rem; line-height: 1.15; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.85; }
.deliverables { background: #030916; }
.deliverables-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.deliverables h2 { font-size: clamp(3rem,5vw,5.3rem); line-height: 1.02; }
.deliverables-list { border-top: 1px solid var(--line-light); }
.deliverables-list > div { padding: 27px 0; display: grid; grid-template-columns: 55px 1fr; gap: 20px; border-bottom: 1px solid var(--line-light); }
.deliverables-list span { color: var(--gold-light); font-size: .6rem; font-weight: 800; }
.deliverables-list strong { display: block; color: var(--white); font-size: .92rem; }
.deliverables-list p { margin: 6px 0 0; color: rgba(255,255,255,.45); font-size: .7rem; line-height: 1.75; }
.page-price { padding: 95px 0; background: var(--gold-light); }
.page-price-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 60px; align-items: center; }
.page-price-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.page-price h2 { font-size: clamp(2.5rem,4.6vw,4.7rem); line-height: 1; }
.page-price strong { font-size: clamp(3rem,5vw,5rem); letter-spacing: -.06em; }
.page-price strong small { font-size: .7rem; letter-spacing: 0; }
.page-price .btn { border-color: var(--navy); color: var(--white); background: var(--navy); }
.page-price .btn:hover { background: var(--blue); }
.page-price-options { margin-top: 55px; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(7,16,32,.22); border-bottom: 1px solid rgba(7,16,32,.22); }
.page-price-options article { padding: 38px 38px 38px 0; }
.page-price-options article + article { padding-left: 38px; border-left: 1px solid rgba(7,16,32,.22); }
.page-price-options article > span { display: block; color: var(--blue); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-price-options strong { margin-top: 20px; display: block; font-size: clamp(2.6rem,4vw,4.2rem); }
.page-price-options strong small { display: block; margin-top: 8px; color: rgba(7,16,32,.58); font-size: .6rem; font-weight: 700; }
.page-price-options p { max-width: 520px; margin: 22px 0 0; color: rgba(7,16,32,.68); font-size: .72rem; line-height: 1.75; }
.premium-price { position: relative; padding: 112px 0; overflow: hidden; background: var(--ivory); }
.premium-price::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 1px; background: var(--line); }
.premium-price-panel { position: relative; padding: clamp(44px,6vw,82px); display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(55px,8vw,125px); overflow: hidden; color: var(--white); background: radial-gradient(circle at 90% 5%,rgba(28,79,163,.55),transparent 29%),linear-gradient(140deg,#030916,#06142e 68%,#0a285b); box-shadow: 0 32px 90px rgba(3,9,22,.18); }
.premium-price-panel::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; background: linear-gradient(var(--gold-light),var(--gold)); }
.premium-price-copy h2 { font-size: clamp(3rem,5vw,5.25rem); line-height: 1; }
.premium-price-copy h2 em,.premium-price-heading h2 em { color: var(--gold-light); font-family: Georgia,"Times New Roman",serif; font-weight: 500; }
.premium-price-copy > p:not(.kicker) { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: .94rem; line-height: 1.8; }
.premium-price-tags { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 9px; }
.premium-price-tags span { padding: 9px 12px; color: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.15); font-size: .68rem; font-weight: 700; }
.premium-price-buy { padding: 38px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045); }
.premium-price-buy > span { color: var(--gold-light); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.premium-price-amount { margin-top: 23px; display: flex; align-items: flex-end; gap: 10px; }
.premium-price-amount strong { font-size: clamp(4rem,6vw,6.4rem); line-height: .9; letter-spacing: -.07em; }
.premium-price-amount small { color: rgba(255,255,255,.6); font-size: .72rem; }
.premium-price-buy > p { margin: 26px 0 30px; color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.75; }
.premium-price-buy .btn { align-self: stretch; }
.premium-price-sites { background: linear-gradient(180deg,var(--ivory),#f9f7f2); }
.premium-price-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 90px; align-items: end; }
.premium-price-heading h2 { font-size: clamp(3rem,5.4vw,5.7rem); line-height: 1; }
.premium-price-heading h2 em { color: var(--blue); }
.premium-price-heading > p { margin: 0 0 8px; color: var(--muted); font-size: .82rem; line-height: 1.9; }
.site-package-grid { margin-top: 76px; display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.site-package { min-height: 570px; padding: clamp(34px,4vw,55px); display: flex; flex-direction: column; border: 1px solid rgba(7,16,32,.11); background: rgba(255,255,255,.72); box-shadow: 0 22px 65px rgba(7,16,32,.055); transition: transform .25s ease,box-shadow .25s ease; }
.site-package:hover { transform: translateY(-5px); box-shadow: 0 32px 80px rgba(7,16,32,.1); }
.site-package-dark { color: var(--white); border-color: rgba(255,255,255,.08); background: radial-gradient(circle at 100% 0,rgba(28,79,163,.55),transparent 30%),linear-gradient(140deg,#030916,#071b3f); }
.site-package-top { display: flex; justify-content: space-between; color: var(--gold); }
.site-package-dark .site-package-top { color: var(--gold-light); }
.site-package-top span,.site-package-top small { font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-package h3 { margin: 54px 0 25px; font-size: clamp(2.65rem,4.5vw,4.5rem); line-height: .96; letter-spacing: -.055em; }
.site-package > p { max-width: 560px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.8; }
.site-package-dark > p { color: rgba(255,255,255,.52); }
.site-package ul { margin: 34px 0 0; padding: 26px 0 0; display: grid; gap: 12px; border-top: 1px solid var(--line); list-style: none; }
.site-package-dark ul { border-color: var(--line-light); }
.site-package li { position: relative; padding-left: 19px; font-size: .8rem; line-height: 1.55; }
.site-package li::before { content: ""; position: absolute; top: .72em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.site-package-bottom { margin-top: auto; padding-top: 40px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.site-package-bottom > div { display: grid; grid-template-columns: auto auto; align-items: end; gap: 0 8px; }
.site-package-bottom small { grid-column: 1/-1; margin-bottom: 8px; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-package-dark .site-package-bottom small { color: var(--gold-light); }
.site-package-bottom strong { font-size: clamp(3rem,4.7vw,4.8rem); line-height: .9; letter-spacing: -.065em; }
.site-package-bottom > div > span { color: var(--muted); font-size: .66rem; }
.site-package-dark .site-package-bottom > div > span { color: rgba(255,255,255,.38); }
.site-package-bottom > a { min-width: 170px; padding: 13px 0 8px; display: flex; justify-content: space-between; gap: 25px; border-bottom: 1px solid currentColor; font-size: .74rem; font-weight: 800; }
.site-package-advice { margin-top: 24px; padding: 27px 30px; display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; border: 1px solid var(--line); }
.site-package-advice > span { color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-package-advice p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.site-package-advice a { padding-bottom: 5px; border-bottom: 1px solid var(--navy); font-size: .74rem; font-weight: 800; }
.content-note { margin-top: 22px; color: var(--muted); font-size: .62rem; }
.active-nav { color: var(--white) !important; }

.case-list { color: var(--white); background: #030916; }
.case-study { padding: 115px 0; display: grid; grid-template-columns: 1.1fr .9fr; gap: 85px; align-items: center; border-bottom: 1px solid var(--line-light); }
.case-study:last-child { border-bottom: 0; }
.case-study:nth-child(even) .case-visual { order: 2; }
.case-visual { position: relative; overflow: hidden; background: #0b162c; }
.case-visual img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .55s ease; }
.case-study:hover .case-visual img { transform: scale(1.025); }
.case-copy > span { color: var(--gold-light); font-size: .58rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.case-copy h2 { margin-top: 18px; font-size: clamp(3rem,5vw,5.3rem); line-height: 1; }
.case-copy > p { color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.9; }
.case-meta { margin: 34px 0; border-top: 1px solid var(--line-light); }
.case-meta div { padding: 15px 0; display: grid; grid-template-columns: 125px 1fr; border-bottom: 1px solid var(--line-light); }
.case-meta span { color: rgba(255,255,255,.35); font-size: .57rem; text-transform: uppercase; }
.case-meta strong { font-size: .7rem; }
.case-link { display: inline-block; padding-bottom: 6px; border-bottom: 1px solid var(--gold-light); color: var(--gold-light); font-size: .68rem; font-weight: 800; }

.about-story { background: var(--ivory); }
.about-story-grid { display: grid; grid-template-columns: minmax(360px,.78fr) 1.22fr; gap: clamp(70px,10vw,155px); align-items: start; }
.about-method-image { position: sticky; top: 115px; margin: 0; }
.about-method-image img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: center; }
.about-method-image figcaption { padding: 18px 0; display: flex; justify-content: space-between; gap: 25px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .61rem; }
.about-copy h2 { font-size: clamp(3.2rem,5.5vw,5.7rem); line-height: 1; }
.about-copy h2 em { color: var(--blue); }
.about-copy > p:not(.kicker) { margin: 34px 0 0; color: #536075; font-size: .9rem; line-height: 1.95; }
.about-values { margin-top: 58px; border-top: 1px solid var(--line); }
.about-values > div { padding: 28px 0; display: grid; grid-template-columns: 65px 1fr; border-bottom: 1px solid var(--line); }
.about-values span { color: var(--gold); font-size: .62rem; font-weight: 800; }
.about-values h3 { margin: 0 0 7px; font-size: 1.12rem; }
.about-values p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.75; }

.cookies { position: fixed; z-index: 1300; right: 24px; bottom: 24px; width: min(380px, calc(100% - 48px)); padding: 28px; color: var(--white); border: 1px solid rgba(255,255,255,.14); background: rgba(3,9,22,.98); box-shadow: 0 26px 80px rgba(0,0,0,.45); transform: translateY(140%); transition: transform .35s ease; }
.cookies.visible { transform: none; }
.cookies > span { color: var(--gold-light); font-size: .52rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.cookies > strong { margin-top: 7px; display: block; font-size: 1.05rem; }
.cookies p { color: rgba(255,255,255,.48); font-size: .67rem; }
.cookies > div { display: flex; gap: 8px; }
.cookies > div button { min-height: 40px; padding: 0 17px; border: 1px solid rgba(255,255,255,.22); color: var(--white); background: transparent; font-size: .62rem; font-weight: 800; }
.cookies > div button:last-child { color: var(--ink); border-color: var(--gold-light); background: var(--gold-light); }
.cookies > a { margin-top: 12px; display: inline-block; color: rgba(255,255,255,.45); font-size: .55rem; text-decoration: underline; }
.cookies-close { position: absolute; top: 12px; right: 14px; color: rgba(255,255,255,.5); border: 0; background: none; }

@keyframes reveal-entry { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 1; transform: none; animation: reveal-entry .75s cubic-bezier(.2,.7,.2,1) both; }
.reveal-delay { animation-delay: .12s; }
.reveal-delay-two { animation-delay: .22s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .nav { gap: 22px; }
  .header-contact { display: none; }
  .hero-meta { max-width: 520px; }
  .service-line { grid-template-columns: 60px 1fr 1fr 30px; gap: 25px; }
  .method-layout { gap: 55px; }
  .offer-grid { grid-template-columns: repeat(2,1fr); }
  .offer { padding: 36px 25px; }
  .offer-featured { grid-column: 1/-1; grid-template-columns: 1fr 1fr; }
  .offer-featured-price { grid-column: 1/-1; display: grid; grid-template-columns: auto 1fr auto; gap: 18px 35px; align-items: end; }
  .offer-featured-price .saving { grid-column: 1/-1; }
  .offer-featured-price .price { margin-top: 10px; }
  .offer-featured-price > p { margin: 0; }
  .offer-featured-price > a { min-width: 180px; margin: 0; }
  .custom-offer { grid-template-columns: 110px 1fr 1.25fr 100px 120px; gap: 20px; }
  .home-service { padding-inline: 28px; }
  .page-hero .subhero-note { display: none; }
  .page-price-inner { gap: 35px; }
}

@media (max-width: 860px) {
  .shell, .container { width: min(calc(100% - 38px), var(--shell)); }
  .section { padding: 100px 0; }
  .header, .header.scrolled { height: 76px; background: rgba(3,9,22,.94); }
  .header-inner { gap: 18px; }
  .menu { display: block; }
  .nav { position: fixed; inset: 76px 0 auto; margin: 0; padding: 20px; display: grid; gap: 0; background: rgba(3,9,22,.98); transform: translateY(-130%); transition: transform .25s ease; }
  .nav.open { transform: none; }
  .nav a { padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav a::after { display: none; }
  .hero { min-height: 820px; height: auto; }
  .hero-image { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,7,18,.97), rgba(3,9,22,.54)), linear-gradient(0deg, rgba(3,9,22,.85), transparent 55%); }
  .hero-content { min-height: 820px; padding-top: 125px; justify-content: center; }
  .hero h1 { font-size: clamp(4rem, 13vw, 6.5rem); }
  .hero-meta { position: static; max-width: none; margin: 100px 0 0; }
  .scroll { display: none; }
  .signal-track { width: max-content; min-width: 100%; padding-inline: 19px; justify-content: flex-start; }
  .signal-track span:nth-of-type(n+4), .signal-track i:nth-of-type(n+4) { display: none; }
  .editorial-grid { grid-template-columns: 1fr; gap: 34px; }
  .section-index { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .two-copy { margin-top: 42px; }
  .outcomes { margin-top: 75px; }
  .outcomes > div { padding: 30px 22px; }
  .section-intro, .offers-head, .work-head { grid-template-columns: 1fr; gap: 30px; }
  .section-intro > p, .offers-head > p, .work-head > p { max-width: 600px; }
  .service-line { padding: 30px 0; grid-template-columns: 45px 1fr 30px; }
  .service-line > p { grid-column: 2 / 4; }
  .service-arrow { grid-column: 3; grid-row: 1; }
  .expertise-quote { padding-top: 110px; }
  .method-layout { grid-template-columns: 1fr; }
  .method-visual { min-height: 480px; }
  .offer-grid { grid-template-columns: 1fr; gap: 14px; }
  .offer { min-height: auto; padding: 42px; border-right: 0; border-bottom: 1px solid var(--line); }
  .offer:last-child { border-bottom: 0; }
  .offer > p { min-height: 0; }
  .offer-note { margin-bottom: 40px; }
  .offer-featured { padding: 42px; grid-template-columns: 1fr; gap: 42px; }
  .offer-featured-price { grid-column: auto; display: flex; }
  .offer-featured-price .saving { grid-column: auto; }
  .offer-featured-price .price { margin-top: 30px; }
  .offer-featured-price > p { margin: 22px 0 30px; }
  .offer-featured-price > a { min-width: 0; margin-top: auto; }
  .custom-offer { padding: 35px 0; grid-template-columns: 1fr 1fr; }
  .custom-offer > div, .custom-offer > p { grid-column: 1/-1; }
  .custom-offer > a { text-align: left; }
  .maintenance-copy { grid-template-columns: 1fr; }
  .maintenance-copy .kicker { grid-column: auto; }
  .projects { gap: 20px; }
  .project-offset { margin-top: 70px; }
  .project-caption { grid-template-columns: 1fr 25px; }
  .project-caption p { grid-column: 1; }
  .project-caption i { grid-column: 2; grid-row: 1/3; }
  .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .faq-head { position: static; }
  .footer-top { grid-template-columns: 1.3fr 1fr; }
  .footer-top > div:first-child { grid-column: 1/-1; }
  .home-service-grid,.home-price-grid,.feature-grid { grid-template-columns: 1fr; }
  .home-service,.home-price-grid > div,.feature-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .home-price-grid > div,.feature-card { border-bottom-color: var(--line); }
  .home-service:last-child,.home-price-grid > div:last-child,.feature-card:last-child { border-bottom: 0; }
  .home-service h3 { margin-top: 45px; }
  .home-service strong { margin-top: 50px; }
  .home-about-grid,.work-link-inner,.page-intro-grid,.deliverables-grid,.about-story-grid { grid-template-columns: 1fr; }
  .home-about-image { width: min(520px,100%); }
  .work-link-inner,.page-intro-grid,.deliverables-grid,.about-story-grid { gap: 55px; }
  .page-hero-portrait { width: 68%; opacity: .36; }
  .page-price-inner { grid-template-columns: 1fr auto; }
  .page-price-inner .btn { grid-column: 1/-1; justify-self: start; }
  .page-price-heading { align-items: flex-start; flex-direction: column; }
  .page-price-options { grid-template-columns: 1fr; }
  .page-price-options article { padding: 34px 0; }
  .page-price-options article + article { padding-left: 0; border-top: 1px solid rgba(7,16,32,.22); border-left: 0; }
  .premium-price { padding: 90px 0; }
  .premium-price-panel,.premium-price-heading { grid-template-columns: 1fr; gap: 48px; }
  .premium-price-buy { max-width: 520px; }
  .site-package-grid { grid-template-columns: 1fr; }
  .site-package-advice { grid-template-columns: 1fr; gap: 12px; }
  .site-package-advice a { justify-self: start; margin-top: 7px; }
  .case-study { grid-template-columns: 1fr; gap: 45px; }
  .case-study:nth-child(even) .case-visual { order: 0; }
  .about-method-image { position: static; width: min(520px,100%); }
}

@media (max-width: 560px) {
  .section { padding: 82px 0; }
  .wordmark img, .brand img { width: 44px; height: 44px; }
  .wordmark small, .brand small { display: none; }
  .hero { min-height: 780px; }
  .hero-content { min-height: 780px; padding-top: 110px; }
  .hero-image { background-position: 67% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,7,18,.98), rgba(3,9,22,.62)), linear-gradient(0deg, rgba(3,9,22,.92), transparent 55%); }
  .hero h1 { font-size: clamp(3.65rem, 16vw, 5.2rem); }
  .hero-text { margin-top: 28px; font-size: .88rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-meta { margin-top: 65px; grid-template-columns: 1fr; }
  .hero-meta > div { padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .hero-meta > div:last-child { display: none; }
  .signal-track { min-height: 68px; }
  .signal-track span:nth-of-type(n+3), .signal-track i:nth-of-type(n+3) { display: none; }
  .editorial-content h2, .section-intro h2, .offers-head h2, .work-head h2, .faq-head h2, .final-inner h2 { font-size: 3rem; }
  .two-copy { grid-template-columns: 1fr; gap: 20px; }
  .outcomes { grid-template-columns: 1fr; }
  .outcomes > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .outcomes > div:last-child { border-bottom: 0; }
  .service-list { margin-top: 65px; }
  .service-line { grid-template-columns: 35px 1fr 25px; gap: 16px; }
  .service-title h3 { font-size: 1.7rem; }
  .service-line > p { font-size: .7rem; }
  .expertise-quote p { font-size: 2rem; }
  .method-layout { margin-top: 65px; }
  .method-visual { min-height: 420px; padding: 38px 25px; }
  .method-word { grid-template-columns: 25px 1fr; }
  .method-word small { grid-column: 2; }
  .method-word strong { font-size: 2.45rem; }
  .offer-grid { margin-top: 60px; }
  .offer { padding: 35px 24px; }
  .offer h3 { margin-top: 35px; }
  .offer-featured { padding: 38px 24px 24px; }
  .offer-featured-copy h3 { font-size: 3rem; }
  .offer-featured-price { padding: 27px 22px; }
  .custom-offer { grid-template-columns: 1fr; }
  .custom-offer > * { grid-column: 1 !important; }
  .maintenance { margin-top: 70px; padding: 38px 23px; }
  .plans { grid-template-columns: 1fr; }
  .plans > div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .plans > div:last-child { border-bottom: 0; }
  .credits { align-items: flex-start; flex-direction: column; }
  .projects { margin-top: 65px; grid-template-columns: 1fr; }
  .project-offset { margin-top: 20px; }
  .project-caption h3 { font-size: 1.35rem; }
  .work-cta { align-items: flex-start; flex-direction: column; }
  .final-cta { padding: 100px 0; }
  .final-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 50px 25px; }
  .footer-top > div:first-child { grid-column: 1/-1; }
  .footer-bottom { padding-block: 20px 90px; align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
  .mobile-call { position: fixed; z-index: 900; right: 18px; bottom: 18px; min-width: 86px; min-height: 46px; display: grid; place-items: center; color: var(--ink); background: var(--gold-light); font-size: .66rem; font-weight: 800; }
  .cookies { right: 12px; bottom: 78px; width: calc(100% - 24px); }
  .home-service-grid,.home-price-grid,.feature-grid { margin-top: 55px; }
  .home-service,.home-price-grid > div,.feature-card { padding: 30px 24px; }
  .home-about-copy h2,.page-intro h2,.feature-head h2,.deliverables h2,.about-copy h2,.case-copy h2 { font-size: 3rem; }
  .work-link { padding: 90px 0; }
  .work-link h2 { font-size: 3rem; }
  .page-hero { min-height: 630px; }
  .page-hero .subhero-index { min-height: 0; }
  .page-price-inner { grid-template-columns: 1fr; }
  .page-price-inner .btn { grid-column: auto; }
  .page-price strong { font-size: 3.5rem; }
  .page-price-heading { gap: 32px; }
  .page-price-options { margin-top: 42px; }
  .page-price-options strong { font-size: 3rem; }
  .premium-price { padding: 76px 0; }
  .premium-price-panel { padding: 42px 24px 24px; }
  .premium-price-copy h2,.premium-price-heading h2 { font-size: 3rem; }
  .premium-price-buy { padding: 28px 22px; }
  .premium-price-amount strong { font-size: 4rem; }
  .site-package-grid { margin-top: 55px; }
  .site-package { min-height: 520px; padding: 34px 24px 24px; }
  .site-package h3 { margin-top: 42px; font-size: 3.15rem; }
  .site-package-bottom { align-items: stretch; flex-direction: column; }
  .site-package-bottom > a { min-width: 0; }
  .site-package-advice { padding: 24px; }
  .case-study { padding: 80px 0; }
  .case-meta div { grid-template-columns: 95px 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
}

/* Pages intérieures — univers premium SP Local */
.subpage { background: var(--ivory); }
.subpage-header { background: rgba(3,9,22,.94); backdrop-filter: blur(18px); }
.subpage-header.scrolled { background: rgba(3,9,22,.98); }
.subpage-footer { padding-top: 0; }
.subpage-footer .footer-bottom { border-top: 0; }

.subhero { position: relative; min-height: 690px; padding: 190px 0 105px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 84% 16%, rgba(28,79,163,.58), transparent 30%), linear-gradient(145deg,#020711 0%,#071a3d 70%,#0b2a63 100%); }
.subhero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg,transparent,black 45%); }
.subhero-orb { position: absolute; top: 90px; right: 9%; width: 330px; aspect-ratio: 1; border: 1px solid rgba(226,188,107,.24); border-radius: 50%; }
.subhero-orb::before,.subhero-orb::after { content:""; position:absolute; inset:12%; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.subhero-orb::after { inset:35%; background:rgba(226,188,107,.07); }
.subhero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 190px 1fr 250px; gap: 55px; align-items: end; }
.subhero-index { min-height: 310px; padding-top: 8px; display: flex; gap: 14px; border-top: 1px solid rgba(255,255,255,.2); }
.subhero-index span { color: var(--gold-light); font-size: .62rem; font-weight: 800; }
.subhero-index p { margin: 0; color: rgba(255,255,255,.43); font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.subhero-title h1 { max-width: 890px; font-size: clamp(4.2rem,7vw,7.1rem); line-height: .92; }
.subhero-note { padding: 25px 0; border-top: 1px solid rgba(255,255,255,.23); border-bottom: 1px solid rgba(255,255,255,.12); }
.subhero-note > span { color: var(--gold-light); font-size: .57rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.subhero-note p { margin: 15px 0 22px; color: rgba(255,255,255,.64); font-size: .76rem; line-height: 1.75; }
.subhero-note small { color: rgba(255,255,255,.34); font-size: .55rem; }

.legal-main { padding: 120px 0 150px; }
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(60px,8vw,135px); align-items: start; }
.legal-aside { position: sticky; top: 115px; }
.legal-aside nav { display: grid; border-top: 1px solid var(--line); }
.legal-aside nav a { padding: 17px 0; display: grid; grid-template-columns: 32px 1fr; align-items: center; border-bottom: 1px solid var(--line); color: #4f5c71; font-size: .69rem; font-weight: 700; transition: color .2s ease, padding .2s ease; }
.legal-aside nav a span { color: var(--gold); font-size: .56rem; }
.legal-aside nav a:hover { padding-left: 7px; color: var(--blue); }
.legal-contact-card { margin-top: 42px; padding: 26px 24px; display: grid; color: var(--white); background: var(--navy); }
.legal-contact-card span { margin-bottom: 15px; color: var(--gold-light); font-size: .56rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.legal-contact-card a { margin-top: 5px; color: rgba(255,255,255,.68); font-size: .68rem; }
.legal-document { min-width: 0; }
.legal-intro { padding: 0 0 60px; display: grid; grid-template-columns: 150px 1fr; gap: 55px; border-bottom: 1px solid var(--line); }
.legal-intro span { color: var(--gold); font-size: .59rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.legal-intro p { max-width: 720px; margin: 0; color: #4f5c71; font-size: 1.03rem; line-height: 1.9; }
.legal-section { padding: 90px 0 0; scroll-margin-top: 100px; }
.legal-section + .legal-section { margin-top: 100px; border-top: 1px solid var(--line); }
.legal-section-head { margin-bottom: 55px; display: grid; grid-template-columns: 80px 1fr; }
.legal-section-head > span { padding-top: 11px; color: var(--gold); font-size: .66rem; font-weight: 800; }
.legal-section-head p { margin: 0 0 7px; color: var(--blue); font-size: .59rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.legal-section-head h2 { font-size: clamp(2.9rem,5vw,5.2rem); line-height: 1; }
.legal-block { padding: 42px 46px; background: var(--white); border: 1px solid rgba(7,16,32,.08); box-shadow: 0 20px 60px rgba(7,16,32,.045); }
.legal-block + .legal-block { margin-top: 20px; }
.legal-block h3 { margin: 0 0 26px; color: var(--navy); font-size: 1.15rem; letter-spacing: -.03em; }
.legal-block p,.legal-block li { color: #566278; font-size: .78rem; line-height: 1.9; }
.legal-block a,.legal-callout a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-data { margin: 0; }
.legal-data > div { padding: 18px 0; display: grid; grid-template-columns: 220px 1fr; gap: 35px; border-bottom: 1px solid var(--line); }
.legal-data > div:first-child { border-top: 1px solid var(--line); }
.legal-data dt { color: #758095; font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.legal-data dd { margin: 0; color: var(--ink); font-size: .75rem; font-weight: 700; }
.legal-columns { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.legal-columns .legal-block { margin: 0; }
.legal-prose h3:not(:first-child) { margin-top: 42px; padding-top: 37px; border-top: 1px solid var(--line); }
.legal-prose ul { margin: 0; padding-left: 18px; }
.legal-prose li + li { margin-top: 10px; }
.legal-callout { margin-bottom: 20px; padding: 38px 42px; color: var(--white); background: radial-gradient(circle at 90% 0,rgba(28,79,163,.55),transparent 35%),var(--navy); }
.legal-callout > span { display: block; color: var(--gold-light); font-size: .57rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.legal-callout strong { margin-top: 12px; display: block; font-size: 1.15rem; }
.legal-callout p { margin: 12px 0 0; color: rgba(255,255,255,.6); font-size: .73rem; line-height: 1.75; }
.legal-callout a { color: var(--white); }
.legal-update { margin-top: 22px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(28,79,163,.18); background: rgba(28,79,163,.05); }
.legal-update span { color: var(--blue); font-size: .57rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.legal-update p { margin: 0; color: #657086; font-size: .68rem; }
.legal-cta { padding: 110px 0; color: var(--white); background: radial-gradient(circle at 80% 0,rgba(28,79,163,.38),transparent 32%),#030916; }
.legal-cta .shell { display: flex; align-items: end; justify-content: space-between; gap: 70px; }
.legal-cta h2 { max-width: 880px; font-size: clamp(3rem,5vw,5.2rem); line-height: 1.02; }
.legal-cta .btn { flex: none; }

/* Brief client */
.brief-main { min-height: 100vh; }
.brief-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(390px,.82fr) minmax(650px,1.18fr); }
.brief-intro { position: relative; min-height: 100vh; overflow: hidden; color: var(--white); background: linear-gradient(155deg,#020711 0%,#06132d 70%,#0b2d69 130%); }
.brief-glow { position: absolute; top: 110px; right: -130px; width: 440px; height: 440px; border: 1px solid rgba(226,188,107,.23); border-radius: 50%; }
.brief-glow::before,.brief-glow::after { content:""; position:absolute; border-radius:50%; }
.brief-glow::before { inset:16%; border:1px solid rgba(255,255,255,.1); }
.brief-glow::after { inset:36%; background:rgba(226,188,107,.07); }
.brief-intro-inner { position: sticky; top: 0; min-height: 100vh; padding: 175px clamp(42px,5vw,100px) 80px; display: flex; flex-direction: column; justify-content: center; }
.brief-intro h1 { max-width: 600px; font-size: clamp(4rem,6vw,6.8rem); line-height: .9; }
.brief-lead { max-width: 560px; margin: 32px 0 0; color: rgba(255,255,255,.62); font-size: .91rem; line-height: 1.9; }
.brief-promises { margin-top: 55px; border-top: 1px solid rgba(255,255,255,.16); }
.brief-promises > div { padding: 17px 0; display: grid; grid-template-columns: 40px 1fr; border-bottom: 1px solid rgba(255,255,255,.1); }
.brief-promises span { color: var(--gold-light); font-size: .55rem; font-weight: 800; }
.brief-promises p { margin: 0; color: rgba(255,255,255,.44); font-size: .65rem; }
.brief-promises strong { margin-bottom: 2px; display: block; color: rgba(255,255,255,.88); font-size: .72rem; }
.brief-direct { margin-top: 45px; display: flex; flex-wrap: wrap; gap: 8px 24px; }
.brief-direct > span { flex-basis: 100%; color: rgba(255,255,255,.38); font-size: .57rem; letter-spacing: .05em; }
.brief-direct a { color: var(--gold-light); font-size: .65rem; font-weight: 700; }
.brief-form-side { min-width: 0; padding: 155px clamp(35px,5vw,95px) 90px; background: var(--ivory); }
.brief-card { width: min(900px,100%); margin-inline: auto; padding: clamp(28px,4vw,55px); background: var(--white); box-shadow: 0 30px 90px rgba(7,16,32,.09); scroll-margin-top: 105px; }
.brief-card-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.brief-card-head > div { display: grid; }
.brief-card-head > div span { color: var(--blue); font-size: .56rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.brief-card-head strong { margin-top: 7px; font-size: 1.15rem; letter-spacing: -.025em; }
.brief-card-head > p { margin: 0; color: #9aa2b1; font-size: .66rem; }
.brief-card-head > p span { color: var(--gold); font-size: 1.1rem; font-weight: 800; }
.brief-progress { height: 3px; margin: 26px 0 46px; overflow: hidden; background: #e7e8ea; }
.brief-progress span { display: block; width: 33.333%; height: 100%; background: linear-gradient(90deg,var(--gold),var(--gold-light)); transition: width .35s ease; }
.form-step[hidden],.form-success[hidden],.brief-card-head[hidden],.brief-progress[hidden],#diagnostic-form[hidden] { display: none !important; }
.form-step h2,.form-success h2 { font-size: clamp(2.2rem,3.6vw,3.7rem); line-height: 1.04; }
.form-step-note { margin: 11px 0 42px; color: var(--muted); font-size: .7rem; }
.field-grid { display: grid; gap: 20px; }
.field-grid + .field-grid,.field-grid + .choice-group,.choice-group + .field-grid,.choice-group + .choice-group,.field + .choice-group { margin-top: 30px; }
.field-grid-two { grid-template-columns: 1fr 1fr; }
.field-grid-three { grid-template-columns: repeat(3,1fr); align-items: start; }
.field { display: grid; }
.field > span,.choice-group legend { margin-bottom: 10px; color: var(--navy); font-size: .65rem; font-weight: 800; }
.field > span b,.choice-group legend b { color: var(--gold); }
.field > small { margin: -5px 0 11px; color: #8a94a6; font-size: .6rem; }
.field input,.field select,.field textarea { width: 100%; border: 1px solid rgba(7,16,32,.15); border-radius: 0; outline: 0; color: var(--ink); background: #fcfbf8; transition: border .2s ease,box-shadow .2s ease,background .2s ease; }
.field input,.field select { height: 54px; padding: 0 15px; }
.field textarea { min-height: 190px; padding: 16px; resize: vertical; line-height: 1.7; }
.field input:focus,.field select:focus,.field textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(28,79,163,.08); }
.field input::placeholder,.field textarea::placeholder { color: #a2a9b4; }
.choice-group { min-width: 0; margin: 0; padding: 0; border: 0; }
.choice-group legend { width: 100%; }
.choice-group legend small { margin-left: 10px; color: #929baa; font-size: .53rem; font-weight: 600; }
.choice-grid { display: grid; gap: 9px; }
.choice-grid-two { grid-template-columns: 1fr 1fr; }
.choice-grid-four { grid-template-columns: repeat(4,1fr); }
.choice-stack { display: grid; gap: 8px; }
.choice { position: relative; min-width: 0; min-height: 64px; padding: 13px 14px 13px 43px; display: flex; align-items: center; border: 1px solid rgba(7,16,32,.12); background: #fcfbf8; cursor: pointer; transition: border .2s ease,background .2s ease,transform .2s ease; }
.choice:hover { border-color: rgba(28,79,163,.35); transform: translateY(-1px); }
.choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice > span { color: #313c50; font-size: .65rem; font-weight: 700; line-height: 1.35; }
.choice > span::before { content:""; position:absolute; top:50%; left:15px; width:15px; height:15px; border:1px solid #aab1bc; transform:translateY(-50%); transition:background .2s ease,border .2s ease,box-shadow .2s ease; }
.choice input[type="radio"] + span::before { border-radius:50%; }
.choice input:checked + span::before { border-color:var(--gold); background:var(--gold); box-shadow:inset 0 0 0 3px #fff; }
.choice:has(input:checked) { border-color:rgba(213,162,74,.62); background:rgba(226,188,107,.08); }
.choice input:focus-visible + span::before { outline:3px solid rgba(28,79,163,.18); outline-offset:2px; }
.choice small { color:#8a94a6; font-size:.54rem; font-weight:500; }
.compact-choices .choice { min-height:54px; }
.choice-group-small .choice { min-height:48px; padding-block:10px; }
.choice-group-small legend { min-height:40px; }
.field-error { display:none; margin:8px 0 0; color:#b42318; font-size:.58rem; }
.has-error .field-error { display:block; }
.field.has-error input,.field.has-error select,.field.has-error textarea,.choice-group.has-error .choice { border-color:rgba(180,35,24,.55); }
.form-actions { margin-top:42px; padding-top:26px; display:flex; align-items:center; justify-content:space-between; gap:20px; border-top:1px solid var(--line); }
.form-actions-end { justify-content:flex-end; }
.form-next { min-height:54px; padding:0 21px; display:inline-flex; align-items:center; justify-content:center; gap:40px; border:1px solid var(--navy); color:var(--white); background:var(--navy); font-size:.68rem; font-weight:800; transition:transform .2s ease,background .2s ease; }
.form-next:hover { background:var(--blue); transform:translateY(-1px); }
.form-next:disabled { opacity:.6; cursor:wait; transform:none; }
.form-back { padding:10px 0; border:0; color:#687385; background:none; font-size:.65rem; font-weight:700; }
.privacy-note { margin:30px 0 0; color:#8a94a6; font-size:.57rem; line-height:1.7; }
.privacy-note a { color:var(--blue); text-decoration:underline; }
.form-status { margin-top:18px; padding:0; font-size:.63rem; }
.form-status.is-error { padding:13px 15px; color:#9f241d; background:#fff2f0; border:1px solid #f0c8c3; }
.form-honeypot { position:absolute!important; left:-9999px!important; width:1px!important; height:1px!important; opacity:0!important; }
.form-success { padding:45px 0 20px; text-align:center; }
.success-mark { width:70px; height:70px; margin:0 auto 30px; display:grid; place-items:center; border:1px solid rgba(213,162,74,.5); border-radius:50%; color:var(--gold); background:rgba(226,188,107,.08); font-size:1.7rem; }
.form-success .kicker { margin-bottom:15px; }
.form-success h2 { max-width:650px; margin-inline:auto; }
.form-success > p:not(.kicker) { max-width:560px; margin:22px auto 0; color:var(--muted); font-size:.78rem; line-height:1.8; }
.form-success > div { margin-top:35px; display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:25px; }
.form-success > div > a:not(.btn) { color:var(--blue); font-size:.65rem; font-weight:700; }
.brief-security { width:min(900px,100%); margin:17px auto 0; color:#788295; font-size:.56rem; text-align:center; }
.brief-security span { color:#3f9a65; }

@media (max-width: 1180px) {
  .subhero-inner { grid-template-columns: 135px 1fr 220px; gap: 35px; }
  .brief-shell { grid-template-columns: 390px 1fr; }
  .brief-intro-inner { padding-inline:42px; }
  .field-grid-three { grid-template-columns:1fr; }
  .choice-group-small legend { min-height:0; }
}

@media (max-width: 960px) {
  .subhero { min-height:640px; }
  .subhero-inner { grid-template-columns:1fr; }
  .subhero-index { min-height:0; }
  .subhero-note { max-width:500px; }
  .legal-layout { grid-template-columns:1fr; }
  .legal-aside { position:static; }
  .legal-aside nav { grid-template-columns:repeat(3,1fr); }
  .legal-aside nav a { padding-right:14px; }
  .legal-contact-card { display:none; }
  .brief-shell { grid-template-columns:1fr; }
  .brief-intro { min-height:auto; }
  .brief-intro-inner { position:relative; min-height:auto; padding:155px 38px 85px; }
  .brief-intro h1 { max-width:760px; }
  .brief-promises { display:grid; grid-template-columns:repeat(3,1fr); }
  .brief-promises > div { padding:18px 18px 18px 0; }
  .brief-form-side { padding-top:85px; }
}

@media (max-width: 700px) {
  .subhero { min-height:590px; padding:155px 0 80px; }
  .subhero-orb { right:-120px; }
  .subhero-title h1 { font-size:clamp(3.35rem,13vw,5rem); }
  .legal-main { padding:80px 0 100px; }
  .legal-aside nav { grid-template-columns:1fr; }
  .legal-intro { grid-template-columns:1fr; gap:18px; }
  .legal-section { padding-top:65px; }
  .legal-section + .legal-section { margin-top:70px; }
  .legal-section-head { grid-template-columns:42px 1fr; }
  .legal-columns { grid-template-columns:1fr; }
  .legal-data > div { grid-template-columns:1fr; gap:5px; }
  .legal-cta .shell { align-items:flex-start; flex-direction:column; }
  .brief-promises { grid-template-columns:1fr; }
  .brief-form-side { padding:65px 19px; }
  .brief-card { padding:30px 20px; }
  .field-grid-two,.choice-grid-two,.choice-grid-four { grid-template-columns:1fr; }
  .brief-card-head { align-items:flex-start; }
}

@media (max-width: 480px) {
  .legal-block { padding:29px 22px; }
  .legal-callout { padding:29px 23px; }
  .legal-update { align-items:flex-start; flex-direction:column; gap:8px; }
  .legal-cta { padding:85px 0; }
  .brief-intro-inner { padding:130px 20px 68px; }
  .brief-intro h1 { font-size:3.8rem; }
  .brief-form-side { padding-inline:12px; }
  .brief-card { padding-inline:17px; }
  .form-actions { align-items:stretch; flex-direction:column-reverse; }
  .form-next { width:100%; }
  .form-back { align-self:flex-start; }
}

/* Refonte lisibilité et offres — juillet 2026 */
html { font-size: 16px; }
body { font-size: 16px; }

.kicker, .eyebrow { font-size: 12px; }
.wordmark small, .brand small { font-size: 11px; }
.nav a { font-size: 14px; }
.header-contact, .btn { font-size: 14px; }
.link-light { font-size: 14px; }

.hero-meta {
  max-width: 720px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(3,9,22,.48);
  backdrop-filter: blur(12px);
}
.hero-meta > div { min-height: 82px; padding: 18px 22px; align-items: center; }
.hero-meta span { font-size: 12px; }
.hero-meta p { color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.55; }
.signal-track span { font-size: 12px; }

.section-index span,
.section-index p,
.service-no,
.service-title small,
.method-word span,
.method-word small,
.steps > li > span,
.steps small,
.home-service > span,
.subhero-index span,
.subhero-index p,
.subhero-note > span,
.feature-card > span,
.deliverables-list span,
.offer-top span,
.offer-top small,
.recommended,
.offer-featured-list > span,
.custom-offer > div span,
.custom-offer > div p,
.plans span,
.case-copy > span,
.case-meta span,
.about-values span {
  font-size: 12px;
}

.two-copy p,
.section-intro > p,
.offers-head > p,
.work-head > p,
.page-intro-copy > p,
.home-about-copy > p:not(.kicker),
.about-copy > p:not(.kicker) {
  font-size: 16px;
}

.outcomes p,
.service-line > p,
.steps p,
.home-service p,
.work-link-inner > div:last-child > p,
.fact-list p,
.feature-card p,
.deliverables-list p,
.accordion details p,
.case-copy > p,
.about-values p {
  font-size: 15px;
}

.home-service strong,
.text-cta,
.text-link,
.work-cta a,
.final-actions > a:not(.btn),
.subhero-note a,
.case-link {
  font-size: 14px;
}

.home-about-points span,
.accordion summary,
.deliverables-list strong,
.fact-list strong {
  font-size: 16px;
}

.subhero-note p { font-size: 15px; }
.page-hero .subhero-note a { font-size: 14px; }
.project-caption span { font-size: 12px; }
.project-caption p, .work-cta p { font-size: 14px; }

.footer-top > div:first-child > p,
.footer-top > div:last-child p,
.footer-top > div:not(:first-child) > a {
  font-size: 14px;
}
.footer-top > div:not(:first-child) > small { font-size: 11px; }
.footer-bottom { font-size: 12px; }

/* Une page = un rôle : les pages d'expertise expliquent, la page Tarifs chiffre. */
.service-offer-cta {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: var(--ivory);
}
.service-offer-panel {
  position: relative;
  padding: clamp(46px, 6vw, 78px);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(28,79,163,.54), transparent 32%),
    linear-gradient(140deg,#030916,#06142e 68%,#0a285b);
  box-shadow: 0 32px 90px rgba(3,9,22,.18);
}
.service-offer-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--gold-light),var(--gold));
}
.service-offer-panel h2 {
  max-width: 770px;
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
  line-height: 1.02;
}
.service-offer-panel > div:first-child > p:not(.kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.8;
}
.service-offer-actions {
  padding: 34px;
  display: grid;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
}
.service-offer-actions .btn { width: 100%; }
.service-offer-actions > a:not(.btn) {
  padding: 5px 0 9px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
}

/* Page tarifs : trois offres alignées, pack pleine largeur et lecture confortable. */
.offers .offer-grid {
  margin-top: 68px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.offers .offer {
  min-width: 0;
  min-height: 660px;
  padding: 42px 38px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 65px rgba(7,16,32,.055);
}
.offers .offer::after { transform: scaleX(1); }
.offers .offer h3 {
  min-height: 2.1em;
  margin: 46px 0 28px;
  font-size: clamp(2rem, 2.5vw, 2.7rem);
}
.offers .price { flex-wrap: wrap; }
.offers .price strong { font-size: clamp(3rem, 4vw, 4.1rem); }
.offers .price span { font-size: 13px; }
.offers .offer > p {
  min-height: 84px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.75;
}
.offers .offer li {
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
}
.offers .offer-note {
  min-height: 58px;
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.65;
}
.offers .offer > a {
  padding-top: 22px;
  font-size: 14px;
}

.offers .offer-featured {
  grid-column: 1 / -1 !important;
  min-height: 0;
  padding: 54px;
  grid-template-columns: 1fr 1.1fr .78fr;
  gap: clamp(42px, 5vw, 76px);
  background:
    radial-gradient(circle at 88% 10%,rgba(28,79,163,.48),transparent 30%),
    linear-gradient(135deg,#030916,#071a3b 70%,#0a285c);
}
.offers .offer-featured h3 {
  min-height: 0;
  margin-top: 44px;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
}
.offers .offer-featured-copy > p {
  min-height: 0;
  color: rgba(255,255,255,.7);
  font-size: 16px;
}
.offers .offer-featured-list li { font-size: 15px; }
.offers .offer-featured-list .offer-note {
  min-height: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.offers .offer-featured-price {
  padding: 36px;
  min-width: 0;
}
.offers .offer-featured-price .saving { font-size: 12px; }
.offers .offer-featured-price .price strong { font-size: clamp(3.8rem, 5vw, 5.4rem); }
.offers .offer-featured-price > p { font-size: 14px; }
.offers .offer-featured-price > a { font-size: 14px; }

.custom-offer {
  margin-top: 24px;
  padding: 10px 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.custom-offer h3 { font-size: 1.6rem; }
.custom-offer > p { font-size: 14px; }
.custom-offer strong { font-size: 1.3rem; }
.custom-offer > a { font-size: 14px; }
.maintenance-copy > p:last-child,
.plans p,
.credits strong,
.credits span {
  font-size: 14px;
}
.plans strong small, .credits small, .tax { font-size: 12px; }

.legal-block p,
.legal-block li,
.legal-data dd,
.legal-callout p,
.legal-update p {
  font-size: 14px;
}
.legal-aside nav a,
.legal-contact-card a {
  font-size: 13px;
}

@media (max-width: 1100px) {
  .offers .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers .offer-featured {
    grid-template-columns: 1fr 1fr;
  }
  .offers .offer-featured-price {
    grid-column: 1 / -1;
  }
}

/* Derniers éléments détectés lors du contrôle en navigateur. */
.scroll {
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.home-about-image { margin: 0; }
.home-about-image figcaption { font-size: 13px; }
.faq-head > p:not(.kicker) { color: #556176; font-size: 15px; line-height: 1.7; }
.faq-head > a { font-size: 14px; }
.fact-list > div > span { color: var(--gold-text); font-size: 13px; }
.subhero-index p { color: rgba(255,255,255,.74); }

.brief-promises span { font-size: 13px; }
.brief-promises p { color: rgba(255,255,255,.76); font-size: 14px; }
.brief-promises strong { font-size: 15px; }
.field > span small { font-size: 13px; }

.legal-aside nav a span,
.legal-contact-card span,
.legal-intro span {
  font-size: 13px;
}
.legal-aside nav a span,
.legal-intro span { color: var(--gold-text); }
.legal-contact-card span { color: var(--gold-light); }

@media (max-width: 560px) {
  .signal-track {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    justify-content: space-between;
    gap: 12px;
  }
  .signal-track span {
    min-width: 0;
    flex: 1 1 0;
    white-space: normal;
    text-align: center;
  }
  .signal-track span:nth-of-type(n+3),
  .signal-track i:nth-of-type(n+2) { display: none; }
}

/* Réalisations : preuves, contexte et statut de chaque projet. */
.proof-standards {
  padding: 110px 0;
  background: var(--ivory);
}

.proof-standards-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.proof-standards h2 {
  max-width: 640px;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  line-height: 1.02;
}

.proof-standards h2 em { color: var(--blue); }

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-points article {
  min-width: 0;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.proof-points article:last-child { border-right: 0; }
.proof-points span { color: var(--gold-text); font-size: 13px; font-weight: 800; }
.proof-points h3 { margin: 20px 0 10px; font-size: 1.25rem; line-height: 1.2; }
.proof-points p { margin: 0; color: #556176; font-size: 15px; line-height: 1.7; }

.case-proof-grid {
  margin: 32px 0 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.case-proof-grid > div {
  min-width: 0;
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--line-light);
}

.case-proof-grid > div + div { padding-left: 18px; }
.case-proof-grid > div:last-child { padding-right: 0; border-right: 0; }
.case-proof-grid small { color: var(--gold-light); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.case-proof-grid p { margin: 9px 0 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; }

.case-status {
  margin: 25px 0 0;
  padding: 15px 18px;
  color: rgba(255,255,255,.78) !important;
  border-left: 3px solid var(--gold-light);
  background: rgba(255,255,255,.055);
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Page Réalisations : introduction plus équilibrée, sans modifier les visuels. */
.realisations-intro {
  padding: 108px 0;
}

.realisations-intro .page-intro-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(390px, .7fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: end;
}

.realisations-intro h2 {
  max-width: 760px;
  font-size: clamp(3.2rem, 4.8vw, 5.4rem);
  line-height: 1.01;
}

.realisations-intro .page-intro-copy {
  max-width: 500px;
  padding: 6px 0 6px clamp(30px, 3.5vw, 48px);
  border-left: 1px solid var(--line);
}

@media (max-width: 1050px) {
  .proof-standards-grid { grid-template-columns: 1fr; }
  .realisations-intro .page-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .realisations-intro .page-intro-copy {
    max-width: 760px;
    padding: 32px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .proof-points { grid-template-columns: 1fr; }
  .proof-points article { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-points article:last-child { border-bottom: 0; }
  .case-proof-grid { grid-template-columns: 1fr; }
  .case-proof-grid > div,
  .case-proof-grid > div + div { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .case-proof-grid > div:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .proof-standards { padding: 78px 0; }
  .proof-standards h2 { font-size: 2.8rem; }
  .proof-points p { font-size: 15px; }
  .case-proof-grid p { font-size: 14px; }
  .realisations-intro { padding: 78px 0; }
  .realisations-intro h2 { font-size: 3rem; }
  .realisations-intro .page-intro-grid { gap: 38px; }
  .realisations-intro .page-intro-copy { padding-top: 26px; }
}

@media (max-width: 860px) {
  .service-offer-panel { grid-template-columns: 1fr; gap: 42px; }
  .service-offer-actions { max-width: 560px; }
  .offers .offer-grid { grid-template-columns: 1fr; }
  .offers .offer {
    min-height: 0;
    padding: 40px 34px;
  }
  .offers .offer h3,
  .offers .offer > p,
  .offers .offer-note {
    min-height: 0;
  }
  .offers .offer-featured {
    grid-template-columns: 1fr;
    padding: 44px 36px;
  }
  .offers .offer-featured-price { grid-column: auto; }
  .custom-offer { padding: 32px; }
}

@media (max-width: 560px) {
  .hero-meta {
    margin-top: 58px;
    border-right: 0;
    border-left: 0;
    background: rgba(3,9,22,.58);
  }
  .hero-meta > div { min-height: 68px; padding: 13px 12px; }
  .hero-meta p { font-size: 13px; }
  .hero-text,
  .two-copy p,
  .section-intro > p,
  .offers-head > p,
  .work-head > p,
  .page-intro-copy > p,
  .home-about-copy > p:not(.kicker),
  .about-copy > p:not(.kicker) {
    font-size: 15px;
  }
  .service-line > p,
  .steps p,
  .home-service p,
  .fact-list p,
  .feature-card p,
  .deliverables-list p,
  .accordion details p {
    font-size: 14px;
  }
  .service-offer-cta { padding: 76px 0; }
  .service-offer-panel { padding: 40px 24px 24px; }
  .service-offer-panel h2 { font-size: 2.75rem; }
  .service-offer-panel > div:first-child > p:not(.kicker) { font-size: 15px; }
  .service-offer-actions { padding: 24px 20px; }
  .offers .offer { padding: 36px 25px; }
  .offers .offer-featured { padding: 42px 24px 24px; }
  .offers .offer h3 { font-size: 2.25rem; }
  .offers .price strong { font-size: 3.2rem; }
  .custom-offer { padding: 28px 24px; }
}

/* Finitions accessibilité et contraste — juillet 2026 */
:root {
  --muted: #556176;
  --gold-text: #89611d;
}

body { color: #071020; }

/* Les libellés décoratifs restent fins, mais plus jamais microscopiques. */
.kicker,
.eyebrow,
.section-index span,
.section-index p,
.service-no,
.service-title small,
.method-word span,
.method-word small,
.steps > li > span,
.steps small,
.home-service > span,
.subhero-index span,
.subhero-index p,
.subhero-note > span,
.feature-card > span,
.deliverables-list span,
.offer-top span,
.offer-top small,
.recommended,
.offer-featured-list > span,
.custom-offer > div span,
.custom-offer > div p,
.plans span,
.case-copy > span,
.case-meta span,
.about-values span,
.legal-section-head > span,
.legal-section-head p,
.legal-block dt,
.legal-callout > span,
.legal-update span {
  font-size: 13px;
  line-height: 1.45;
}

.section-index span,
.steps > li > span,
.home-service > span,
.feature-card > span,
.offer-top span,
.custom-offer > div span,
.about-values span,
.legal-section-head > span,
.legal-block dt,
.legal-update span {
  color: var(--gold-text);
}

.wordmark small,
.brand small,
.footer-top > div:not(:first-child) > small {
  color: rgba(255,255,255,.74);
  font-size: 12px;
}

.hero-text,
.section-intro > p,
.service-line > p,
.method-word small,
.page-hero .subhero-note p,
.deliverables-list p,
.case-copy > p,
.offer-featured-copy > p,
.offer-featured-price > p,
.offer-featured-list .offer-note,
.maintenance-copy > p:last-child,
.plans p,
.brief-lead,
.brief-promises p {
  color: rgba(255,255,255,.76);
}

.hero-text,
.two-copy p,
.section-intro > p,
.offers-head > p,
.work-head > p,
.page-intro-copy > p,
.home-about-copy > p:not(.kicker),
.about-copy > p:not(.kicker),
.service-line > p,
.steps p,
.home-service p,
.fact-list p,
.feature-card p,
.deliverables-list p,
.accordion details p,
.case-copy > p,
.about-values p,
.maintenance-copy > p:last-child {
  font-size: 16px;
}

.hero-meta p,
.signal-track span,
.subhero-note p,
.project-caption p,
.work-cta p,
.case-meta strong,
.case-link,
.content-note,
.about-method-image figcaption,
.subhero-note small,
.page-price-options p,
.page-price-options strong small,
.premium-price-tags span,
.premium-price-buy > p,
.site-package > p,
.site-package li,
.site-package-bottom > div > span,
.site-package-bottom > a,
.site-package-advice p,
.site-package-advice a {
  font-size: 14px;
}

.hero-meta p,
.signal-track span,
.page-hero .subhero-note p,
.case-copy > p,
.case-meta span,
.case-meta strong,
.footer-top > div:first-child > p,
.footer-top > div:last-child p,
.footer-top > div:not(:first-child) > a,
.footer-bottom {
  color: rgba(255,255,255,.78);
}

.footer-top > div:first-child > p,
.footer-top > div:last-child p,
.footer-top > div:not(:first-child) > a,
.footer-bottom,
.mobile-call {
  font-size: 14px;
}

/* Formulaire : lecture confortable et aide clairement identifiable. */
.brief-card-head > div span,
.brief-card-head > p,
.form-step-note,
.field > span,
.choice-group legend,
.field > small,
.choice-group legend small,
.choice > span,
.choice small,
.field-error,
.form-next,
.form-back,
.privacy-note,
.form-status,
.form-success > p:not(.kicker),
.form-success > div > a:not(.btn),
.brief-security,
.brief-direct > span,
.brief-direct a {
  font-size: 14px;
  line-height: 1.55;
}

.field > small,
.choice-group legend small,
.choice small,
.privacy-note,
.brief-security,
.brief-card-head > p {
  color: #667085;
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
  font-size: 16px;
}

.field textarea { min-height: 132px; }

/* Les contenus sur fond clair dépassent le contraste WCAG AA. */
.two-copy p,
.outcomes p,
.steps p,
.home-service p,
.page-intro-copy > p,
.fact-list p,
.feature-card p,
.accordion details p,
.about-copy > p:not(.kicker),
.about-values p,
.legal-block p,
.legal-block li,
.legal-data dd,
.legal-update p,
.custom-offer > p,
.offer > p,
.offer-note,
.tax {
  color: #556176;
}

/* Repère clavier visible sur tous les éléments interactifs. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .hero-text,
  .two-copy p,
  .section-intro > p,
  .offers-head > p,
  .work-head > p,
  .page-intro-copy > p,
  .home-about-copy > p:not(.kicker),
  .about-copy > p:not(.kicker),
  .service-line > p,
  .steps p,
  .home-service p,
  .fact-list p,
  .feature-card p,
  .deliverables-list p,
  .accordion details p {
    font-size: 15px;
  }

  .hero-meta p,
  .signal-track span,
  .footer-top > div:first-child > p,
  .footer-top > div:last-child p,
  .footer-top > div:not(:first-child) > a,
  .footer-bottom {
    font-size: 14px;
  }

  .legal-section-head h2 {
    font-size: 2.5rem;
    overflow-wrap: anywhere;
  }
}
