:root {
  --ink: #082e4a;
  --ink-soft: #42637a;
  --forest: #083b61;
  --green: #0879b7;
  --mint: #dcf3ff;
  --paper: #f7fcff;
  --surface: #ffffff;
  --line: #c7e6f5;
  --signal: #0873af;
  --blue: #0a5d96;
  --shadow: 0 22px 56px rgba(8, 46, 74, 0.12);
  --radius-large: 32px;
  --radius-medium: 22px;
  --page: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: #eef6fa;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible {
  outline: 3px solid rgba(8, 121, 183, 0.48);
  outline-offset: 4px;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 18px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  background: rgba(7, 52, 85, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(4, 31, 52, 0.15);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--page);
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 17px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.mobile-menu a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
}

.language-switcher button {
  width: 30px;
  height: 28px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.active {
  background: #ffffff;
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 22px;
}

.mobile-menu {
  width: var(--page);
  margin-inline: auto;
  padding: 4px 0 22px;
}

.mobile-language-switcher {
  display: none;
}

.mobile-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.language-switcher button:focus-visible {
  outline: 3px solid rgba(220, 243, 255, 0.78);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 12px;
}

.button-primary {
  background: var(--signal);
  color: #ffffff;
}

.button-primary:hover {
  background: #06649a;
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(4, 31, 52, 0.24);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.54);
}

.button-light {
  background: #ffffff;
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 780px;
  height: auto;
  max-height: none;
  padding: 112px 0 108px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  inset: 86px 0 auto 52%;
  width: 48%;
  height: calc(100% - 134px);
  object-fit: cover;
  object-position: center;
  border-radius: 32px 0 0 32px;
  opacity: 0.94;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 31, 52, 0.96) 0%, rgba(4, 31, 52, 0.76) 46%, rgba(4, 31, 52, 0.16) 76%, rgba(4, 31, 52, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 31, 52, 0.56) 0%, transparent 38%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: 90px;
  padding-top: 0;
}

.hero-copy {
  max-width: 720px;
}

.launch-notice {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 670px;
  margin-bottom: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(185, 231, 251, 0.4);
  border-radius: 10px;
  background: rgba(4, 31, 52, 0.34);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.launch-notice-label {
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 999px;
  background: #b9e7fb;
  color: #083b61;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #b9e7fb;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(58px, 4.5vw, 68px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.035em;
}

html[lang="fr"] .hero h1 {
  font-size: 61px;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(19px, 1.25vw, 21px);
  line-height: 1.65;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.hero-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  color: #b9e7fb;
  font-size: 15px;
}

.call-console {
  align-self: center;
  margin: 44px 0 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-medium);
  background: rgba(5, 42, 70, 0.84);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.console-header,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
}

.console-header > div,
.console-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.audio-shell {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.audio-play {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--forest);
  font-size: 26px;
  opacity: 0.9;
}

.audio-shell strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 15px;
}

.audio-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ed8f8;
  box-shadow: 0 0 0 6px rgba(142, 216, 248, 0.14);
}

.waveform {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.waveform span {
  width: 4px;
  height: 28px;
  border-radius: 4px;
  background: #75c9ee;
  animation: waveform 1.2s ease-in-out infinite alternate;
}

.waveform span:nth-child(2n) { height: 48px; animation-delay: -0.6s; }
.waveform span:nth-child(3n) { height: 20px; animation-delay: -0.3s; }
.waveform span:nth-child(4n) { height: 62px; animation-delay: -0.9s; }

@keyframes waveform {
  from { transform: scaleY(0.72); opacity: 0.66; }
  to { transform: scaleY(1.08); opacity: 1; }
}

.console-quote {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.console-summary {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
}

.summary-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--mint);
  color: var(--green);
}

.console-summary span {
  display: block;
  margin-bottom: 2px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.console-summary strong {
  display: block;
  font-size: 14px;
}

.console-summary p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffffff;
}

.signal-bar {
  position: relative;
  z-index: 6;
  margin-top: -52px;
  background: transparent;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(199, 230, 245, 0.9);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 26px 74px rgba(8, 46, 74, 0.15);
}

.signal-grid > div {
  min-height: 112px;
  padding: 26px 28px;
  border-left: 1px solid var(--line);
}

.signal-grid > div:last-child {
  border-right: 0;
}

.signal-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
}

.signal-grid strong {
  display: block;
  font-size: 18px;
}

.signal-grid p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.section {
  padding: 112px 0;
}

.product-section {
  padding-top: 154px;
  padding-bottom: 88px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.section h2,
.work-copy h2,
.quality-copy h2,
.contact-section h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 4vw, 60px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-lead,
.section-heading > p,
.wide-heading > p,
.work-copy > p,
.quality-copy > p,
.contact-section p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--green);
  font-weight: 800;
}

.text-link:hover i {
  transform: translateX(4px);
}

.text-link i {
  transition: transform 160ms ease;
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome-row {
  min-height: 158px;
  display: grid;
  grid-template-columns: 44px 1fr 48px;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(8, 46, 74, 0.06);
}

.outcome-number {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
}

.outcome-row h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.outcome-row p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.outcome-row > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface);
  color: var(--green);
  font-size: 21px;
}

.work-section {
  padding: 0 0 118px;
  background: transparent;
}

.work-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
  gap: 88px;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid rgba(199, 230, 245, 0.9);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.92), transparent 34%),
    #dff1f9;
}

.work-grid::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(8, 121, 183, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

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

.work-visual {
  position: relative;
  width: min(100%, 540px);
  justify-self: start;
}

.work-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.work-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(8, 46, 74, 0.18);
  font-size: 12px;
  font-weight: 800;
}

.work-chip i {
  color: var(--green);
  font-size: 17px;
}

.work-chip-one { left: 24px; top: 24px; }
.work-chip-two { right: 24px; bottom: 24px; }

.work-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 0;
  border-top: 1px solid rgba(8, 46, 74, 0.18);
}

.work-stats div {
  padding: 20px 12px 0 0;
}

.work-stats dt {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-stats dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.wide-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 90px;
}

.wide-heading h2 {
  margin-bottom: 0;
}

.wide-heading > p {
  margin-bottom: 4px;
}

.sector-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  grid-template-rows: repeat(2, 270px);
  gap: 22px;
}

.sector-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(8, 46, 74, 0.08);
}

.sector-card-large {
  grid-row: 1 / span 2;
}

.sector-card img,
.sector-overlay {
  position: static;
  width: 100%;
}

.sector-card img {
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.sector-card:hover img {
  transform: scale(1.035);
}

.sector-overlay {
  display: none;
}

.sector-content {
  position: static;
  padding: 28px;
}

.sector-content span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sector-content h3 {
  margin: 6px 0 6px;
  font-size: 25px;
}

.sector-content p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.sector-card-large .sector-content {
  padding: 38px;
}

.sector-card-large .sector-content h3 {
  font-size: 34px;
}

.sector-more {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.sector-more span:last-child {
  color: var(--ink-soft);
  font-weight: 600;
}

.quality-section {
  width: min(1460px, calc(100% - 32px));
  margin-inline: auto;
  padding: 112px 0;
  overflow: hidden;
  border-radius: 40px;
  background: var(--forest);
  color: #ffffff;
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.quality-copy h2 {
  font-size: 50px;
}

.quality-copy > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.quality-checks {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quality-checks article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.quality-checks article > span {
  color: #8ed8f8;
  font-size: 12px;
  font-weight: 800;
}

.quality-checks h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.quality-checks p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.method-section {
  background: transparent;
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0 34px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: 0 20px 58px rgba(8, 46, 74, 0.07);
}

.method-timeline li {
  min-height: 270px;
  padding: 28px 28px 20px 0;
  border-right: 1px solid var(--line);
}

.method-timeline li + li {
  padding-left: 28px;
}

.method-timeline li:last-child {
  border-right: 0;
}

.method-timeline > li > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 66px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.method-timeline h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.method-timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-section {
  padding-top: 0;
  background: transparent;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 88px;
  align-items: start;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: 0 20px 58px rgba(8, 46, 74, 0.07);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.faq-list h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.faq-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.pilot-section {
  padding: 96px 0 154px;
  background: #0a4168;
  color: #ffffff;
}

.pilot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 72px;
  align-items: center;
}

.pilot-section h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.12;
}

.pilot-section p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.price-anchor {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.08);
}

.price-anchor > span {
  display: block;
  margin-bottom: 4px;
  color: #caedfc;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-anchor strong {
  display: block;
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1;
}

.price-anchor p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.6;
}

.contact-section {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding: 0 0 96px;
  background: transparent;
  color: var(--ink);
}

.founders-card {
  width: min(900px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(199, 230, 245, 0.92);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 30px 86px rgba(4, 31, 52, 0.18);
}

.founders-card h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
}

.founders-whatsapp {
  min-width: 260px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 100px;
  align-items: end;
}

.contact-section h2 {
  max-width: 720px;
  font-size: 54px;
}

.contact-section p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-primary,
.contact-secondary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.contact-primary span,
.contact-secondary span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-primary:hover,
.contact-secondary:hover {
  color: #caedfc;
}

.contact-actions > p {
  margin-top: 20px;
  font-size: 12px;
}

.site-footer {
  padding: 52px 0 26px;
  background: #061f33;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand .brand {
  color: #ffffff;
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-label {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.footer-machine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-machine > span {
  color: rgba(255, 255, 255, 0.48);
}

.footer-machine a {
  color: #caedfc;
}

.footer-machine a:hover {
  color: #ffffff;
}

@media (max-width: 1100px) {
  :root { --page: min(100% - 40px, 940px); }
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero { min-height: 720px; height: auto; padding: 120px 0 92px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 0; }
  .hero-copy { max-width: 800px; }
  .hero h1 { font-size: 58px; }
  html[lang="fr"] .hero h1 { font-size: 54px; }
  .call-console { max-width: 600px; margin: 0; }
  .split-layout { grid-template-columns: 1fr; gap: 54px; }
  .sticky-copy { position: static; }
  .work-grid { gap: 50px; }
  .quality-grid { grid-template-columns: 1fr; gap: 54px; }
  .quality-copy { max-width: 760px; }
  .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .pilot-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100% - 32px); }
  .nav-shell { min-height: 68px; gap: 10px; }
  .desktop-cta { display: none; }
  .brand { font-size: 15px; }
  .brand-mark { width: 32px; height: 32px; }
  .hero { min-height: 720px; padding: 118px 0 88px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(4, 31, 52, 0.74) 0%, rgba(4, 31, 52, 0.9) 72%, rgba(4, 31, 52, 0.98) 100%); }
  .hero-image { inset: 0; width: 100%; height: 100%; border-radius: 0; object-position: 64% center; opacity: 1; }
  .hero h1 { font-size: 48px; }
  html[lang="fr"] .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 18px; }
  .signal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signal-grid > div { border-bottom: 1px solid var(--line); }
  .signal-grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .section { padding: 88px 0; }
  .product-section { padding-top: 132px; }
  .section h2, .work-copy h2, .quality-copy h2, .contact-section h2 { font-size: 40px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-visual { justify-self: center; }
  .work-visual img { height: min(66vw, 360px); }
  .wide-heading { grid-template-columns: 1fr; gap: 18px; }
  .sector-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .sector-card { grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr); grid-template-rows: none; }
  .sector-card img { min-height: 260px; }
  .sector-card-large { grid-row: auto; }
  .sector-card-large .sector-content { padding: 28px; }
  .sector-card-large .sector-content h3 { font-size: 25px; }
  .method-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-timeline li { border-bottom: 1px solid var(--line); }
  .method-timeline li:nth-child(2) { border-right: 0; }
  .method-timeline li:nth-child(3) { padding-left: 0; }
  .method-timeline > li > span { margin-bottom: 38px; }
  .faq-list { grid-template-columns: 1fr; }
  .pilot-section h2 { font-size: 40px; }
  .founders-card { align-items: center; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  :root { --page: calc(100% - 28px); }
  .language-switcher button { width: 26px; font-size: 9px; }
  .language-switcher { padding: 2px; }
  .nav-actions > .language-switcher { display: none; }
  .mobile-menu .mobile-language-switcher { display: inline-flex; margin-top: 18px; }
  .mobile-menu .mobile-language-switcher button { width: 44px; height: 44px; font-size: 11px; }
  .hero { min-height: 0; height: auto; max-height: none; padding: 106px 0 84px; align-items: start; }
  .hero-grid { gap: 24px; }
  .launch-notice { align-items: flex-start; margin-bottom: 18px; font-size: 12px; }
  .eyebrow { margin-bottom: 16px; font-size: 10px; }
  .hero h1 { font-size: clamp(36px, 10.25vw, 40px); line-height: 1.08; }
  html[lang="fr"] .hero h1 { font-size: clamp(32px, 9.2vw, 36px); letter-spacing: -0.035em; }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-trust { display: grid; gap: 9px; margin-top: 26px; }
  .call-console { display: block; max-width: none; margin-top: 4px; padding: 16px; border-radius: 18px; }
  .call-console .console-quote,
  .call-console .console-footer { display: none; }
  .audio-shell { grid-template-columns: 44px 1fr; padding: 14px; }
  .audio-play { width: 44px; height: 44px; font-size: 21px; }
  .console-summary { margin-bottom: 0; padding: 14px; }
  .hero-scroll { display: none; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid > div { min-height: 112px; padding: 20px 16px; }
  .section { padding: 72px 0; }
  .product-section { padding-top: 116px; }
  .section h2, .work-copy h2, .quality-copy h2, .contact-section h2 { font-size: 34px; }
  .section-lead, .section-heading > p, .wide-heading > p, .work-copy > p, .quality-copy > p, .contact-section p { font-size: 15px; }
  .outcome-row { grid-template-columns: 34px 1fr; gap: 12px; min-height: 0; }
  .outcome-row > i { display: none; }
  .outcome-row h3 { font-size: 19px; }
  .outcome-row p { font-size: 14px; }
  .work-section { padding: 0 0 76px; }
  .work-grid { padding: 28px 22px; border-radius: 24px; }
  .quality-section { width: calc(100% - 16px); padding: 76px 0; border-radius: 28px; }
  .work-chip { position: static; margin-top: 10px; width: fit-content; }
  .work-chip-two { margin-left: auto; }
  .work-stats { grid-template-columns: 1fr; }
  .work-stats div { padding: 16px 0; border-bottom: 1px solid rgba(8, 46, 74, 0.14); }
  .sector-grid { grid-template-rows: none; }
  .sector-card { grid-template-columns: 1fr; grid-template-rows: auto auto; border-radius: 22px; }
  .sector-card img { height: 210px; min-height: 0; }
  .sector-content, .sector-card-large .sector-content { padding: 22px; }
  .sector-more { flex-direction: column; gap: 5px; }
  .quality-copy h2 { font-size: 36px; }
  .method-timeline { grid-template-columns: 1fr; padding: 0 22px; border-radius: 24px; }
  .method-timeline li, .method-timeline li + li, .method-timeline li:nth-child(3) { min-height: 0; padding: 24px 0; border-right: 0; }
  .method-timeline > li > span { margin-bottom: 22px; }
  .faq-list article { min-height: 0; padding: 22px; }
  .pilot-section { padding: 72px 0 122px; }
  .pilot-section h2 { font-size: 34px; }
  .pilot-section p { font-size: 15px; }
  .price-anchor strong { font-size: 36px; }
  .contact-section { margin-top: -54px; padding: 0 0 72px; }
  .contact-section h2 { font-size: 38px; }
  .founders-card { width: var(--page); align-items: center; gap: 24px; padding: 34px 24px; border-radius: 24px; }
  .founders-whatsapp { min-width: 0; }
  .contact-primary, .contact-secondary { min-height: 68px; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .footer-machine { justify-content: flex-start; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
