﻿:root {
  --bg: #0f1115;
  --bg-soft: #141822;
  --panel: #171b26;
  --text: #eef2ff;
  --muted: #aab3c5;
  --line: rgba(255,255,255,.10);
  --brand: #6c63ff;
  --brand-2: #3b82f6;
  --cyan: #24d3ee;
  --green: #35d399;
  --orange: #fb923c;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.5rem, 5vw, 5.35rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
h3 { font-size: 1.25rem; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header .container { width: min(1580px, calc(100% - 40px)); }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 1000; background: #fff; color: #111827; padding: .7rem 1rem; border-radius: var(--radius); }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 25, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; white-space: nowrap; }
.brand img { width: 38px; height: 38px; }
.brand span span, .grad {
  background: linear-gradient(90deg, #a5b4fc, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; justify-content: flex-end; min-width: 0; }
.nav-links a { color: var(--muted); font-size: .88rem; font-weight: 650; padding: .52rem .58rem; border-radius: var(--radius); white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgba(255,255,255,.06); }
.lang-picker {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  margin-left: 6px;
}
.nav-links .flag-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 3px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.24);
}
.nav-links .flag-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.nav-links .flag-link:hover,
.nav-links .flag-link.is-current {
  border-color: rgba(255,255,255,.86);
  box-shadow: 0 0 0 2px rgba(165,180,252,.24), 0 10px 22px rgba(0,0,0,.28);
}
.flag-fr {
  background: linear-gradient(90deg, #1b4fa3 0 33.33%, #fff 33.33% 66.66%, #e3343f 66.66% 100%);
}
.flag-en {
  background:
    linear-gradient(33deg, transparent 0 41%, #fff 41% 46%, #c8102e 46% 54%, #fff 54% 59%, transparent 59%),
    linear-gradient(-33deg, transparent 0 41%, #fff 41% 46%, #c8102e 46% 54%, #fff 54% 59%, transparent 59%),
    linear-gradient(90deg, transparent 0 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 0 38%, #fff 38% 62%, transparent 62%),
    linear-gradient(90deg, transparent 0 45%, #c8102e 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 0 43%, #c8102e 43% 57%, transparent 57%),
    #012169;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: background .16s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, top .18s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,12,20,.98) 0%, rgba(10,12,20,.91) 34%, rgba(10,12,20,.58) 62%, rgba(10,12,20,.10) 100%),
    url("../images/hero-point-cloud.png?v=20260706-1405") center right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(108,99,255,.22), transparent 45%),
    radial-gradient(circle at 30% 52%, rgba(59,130,246,.16), transparent 48%);
}
.hero .container { position: relative; z-index: 1; padding: 110px 0 72px; }
.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #070b18;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,24,.98) 0%, rgba(7,11,24,.88) 42%, rgba(7,11,24,.36) 100%),
    var(--page-hero-image) center / cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 66% 58%, rgba(108,99,255,.22), transparent 48%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 96px 0 86px;
}
.page-hero p {
  max-width: 760px;
  margin-top: 22px;
  font-size: 1.17rem;
}
.fusion-hero { --page-hero-image: url("../images/hero-point-cloud.png?v=20260706-1405"); }
.georef-hero { --page-hero-image: url("../images/hero-point-cloud.png?v=20260706-1405"); }
.transform-hero { --page-hero-image: url("../images/hero-point-cloud.png?v=20260706-1405"); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7d2fe;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  padding: .5rem .78rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.eyebrow.small {
  padding: .42rem .72rem;
  margin-bottom: 24px;
}
.hero p { max-width: 720px; font-size: 1.18rem; margin-top: 24px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.12rem;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 18px 44px rgba(79,70,229,.25); }
.button.secondary { background: rgba(255,255,255,.06); border-color: var(--line); color: var(--text); }

.section { padding: 84px 0; border-bottom: 1px solid var(--line); }
.section.alt { background: linear-gradient(180deg, #111522, #0f1115); }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.centered { max-width: 860px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.05rem; margin-top: 16px; }
.badge { display: inline-block; color: #c7d2fe; font-weight: 800; font-size: .82rem; text-transform: uppercase; margin-bottom: 14px; }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.feature-section {
  background: linear-gradient(180deg, #070b18 0%, #0f1115 100%);
}
.feature-grid {
  gap: 32px;
}
.feature-card {
  min-height: 244px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card .picto {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}
.feature-card .picto::before {
  width: 22px;
  height: 22px;
}
.use-grid {
  gap: 24px;
}
.use-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, rgba(108,99,255,.08), rgba(255,255,255,.025));
}
.use-card .picto {
  width: 48px;
  height: 48px;
  margin: 0 0 22px;
}
.use-card p {
  max-width: 440px;
}
.use-intro {
  padding-bottom: 58px;
  background: radial-gradient(circle at 50% 8%, rgba(108,99,255,.18), transparent 34%), #10111a;
}
.use-intro h1 {
  max-width: none;
}
.use-cases-section {
  padding-top: 58px;
  background: #101113;
}
.use-case-stack {
  display: grid;
  gap: 82px;
}
.use-case-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}
.use-case-row.reverse .use-image {
  order: 2;
}
.use-case-row.reverse .use-content {
  order: 1;
}
.use-image {
  position: relative;
  min-height: 318px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.use-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62));
}
.use-image > span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(165,180,252,.32);
  background: rgba(77,67,157,.56);
  font-weight: 800;
  font-size: .82rem;
}
.use-image .picto {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 0;
  background: transparent;
  color: #c7d2fe;
}
.use-image .picto::before {
  width: 16px;
  height: 16px;
}
.use-content > .picto {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
}
.use-content h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
.use-content p {
  font-size: 1.02rem;
  margin-top: 24px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.benefit-grid div {
  min-height: 112px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid rgba(165,180,252,.18);
  border-radius: var(--radius);
  background: rgba(108,99,255,.07);
}
.benefit-grid .picto {
  width: 24px;
  height: 24px;
  margin: 0 auto 8px;
  border: 0;
  background: transparent;
}
.benefit-grid .picto::before {
  width: 16px;
  height: 16px;
}
.benefit-grid strong {
  display: block;
  color: #fff;
  font-size: .82rem;
  line-height: 1.2;
}
.benefit-grid p {
  margin: 6px 0 0;
  font-size: .72rem;
  line-height: 1.35;
}
.blog-hero {
  min-height: 72vh;
  background: radial-gradient(circle at 28% 0%, rgba(108,99,255,.14), transparent 34%), #101113;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
  gap: 30px;
  align-items: stretch;
}
.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
}
.blog-image {
  display: block;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #0b1020;
  border-bottom: 1px solid var(--line);
}
.blog-image.contain {
  background-size: contain;
  background-repeat: no-repeat;
}
.blog-body {
  padding: 24px;
}
.blog-meta {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: 14px;
}
.blog-card h2 {
  font-size: 1.26rem;
  line-height: 1.28;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: .18rem .56rem;
  border-radius: 999px;
  color: #c7d2fe;
  border: 1px solid rgba(165,180,252,.22);
  background: rgba(108,99,255,.12);
  font-size: .76rem;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8ea2ff;
  font-weight: 800;
}
.article-page {
  padding: 86px 0;
  background: #101113;
}
.article-container {
  max-width: 860px;
}
.article-meta {
  color: var(--muted);
  margin: 28px 0 16px;
}
.article-page h1 {
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  margin-bottom: 18px;
}
.article-page h2 {
  font-size: 1.8rem;
  margin: 46px 0 14px;
}
.article-page h3 {
  margin: 28px 0 8px;
}
.article-page blockquote {
  margin: 26px 0;
  padding: 20px 24px;
  border-left: 3px solid #6c63ff;
  border-radius: 0 12px 12px 0;
  background: rgba(108,99,255,.1);
  color: #eef2ff;
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 700;
}
.article-page .lead {
  font-size: 1.18rem;
}
.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: 34px 0 12px;
}
.article-cover.contain-cover {
  object-fit: contain;
  background: #0b1020;
}
.article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-share-title {
  color: var(--muted);
  font-weight: 800;
}
.article-share-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.share-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.4);
}
.share-button.linkedin { background: rgba(10,102,194,.18); border-color: rgba(10,102,194,.46); color: #65b8ff; }
.share-button.x { background: rgba(255,255,255,.05); }
.share-button.facebook { background: rgba(24,119,242,.18); border-color: rgba(24,119,242,.46); color: #5ea2ff; }
.share-button.reddit { background: rgba(255,69,0,.16); border-color: rgba(255,69,0,.42); color: #ff8b66; }
.share-button.whatsapp { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.42); color: #58e58f; }
.workflow-section {
  background: linear-gradient(180deg, #100a20 0%, #081022 100%);
}
.process-section {
  background: linear-gradient(180deg, #0f1115 0%, #080b17 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.process-card {
  position: relative;
  min-height: 164px;
}
.process-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(165,180,252,.35);
  font-size: 1.7rem;
}
.process-card .num {
  color: #a8b8ff;
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.process-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.workflow-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.workflow-layout h2 {
  max-width: 520px;
}
.workflow-layout p {
  max-width: 650px;
  font-size: 1.05rem;
  margin-top: 24px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  margin: 14px 0;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .16rem;
  width: 18px;
  height: 18px;
  border: 1px solid #9bb5ff;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 43%, #9bb5ff 44% 56%, transparent 57%) 6px 2px / 8px 12px no-repeat;
  transform: rotate(38deg);
}
.fusion-diagram {
  position: relative;
  min-height: 454px;
  border: 1px solid rgba(165,180,252,.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 42%, rgba(59,130,246,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 24px 90px rgba(0,0,0,.22);
}
.cloud-box {
  position: absolute;
  border-radius: 18px;
  background: rgba(26,31,52,.72);
  overflow: hidden;
}
.cloud-box span,
.cloud-box strong {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: #c7d2fe;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.cloud-box span {
  top: -22px;
}
.cloud-box strong {
  bottom: -24px;
}
.cloud-a,
.cloud-b {
  top: 54px;
  width: 34%;
  height: 136px;
  border: 2px dashed #675cff;
}
.cloud-a { left: 9%; }
.cloud-b {
  right: 9%;
  border-color: #3b82f6;
}
.cloud-merged {
  left: 17%;
  right: 17%;
  bottom: 50px;
  height: 130px;
  border: 3px solid #506dff;
}
.cloud-box i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #89a9ff;
  box-shadow: 0 0 16px rgba(137,169,255,.45);
}
.cloud-box i:nth-of-type(1) { left: 10%; top: 22%; }
.cloud-box i:nth-of-type(2) { left: 24%; top: 38%; width: 5px; height: 5px; }
.cloud-box i:nth-of-type(3) { left: 38%; top: 20%; }
.cloud-box i:nth-of-type(4) { left: 52%; top: 50%; width: 9px; height: 9px; }
.cloud-box i:nth-of-type(5) { left: 66%; top: 26%; width: 5px; height: 5px; }
.cloud-box i:nth-of-type(6) { left: 78%; top: 44%; }
.cloud-box i:nth-of-type(7) { left: 16%; top: 62%; width: 5px; height: 5px; }
.cloud-box i:nth-of-type(8) { left: 34%; top: 70%; }
.cloud-box i:nth-of-type(9) { left: 57%; top: 66%; width: 5px; height: 5px; background: #b6a2ff; }
.cloud-box i:nth-of-type(10) { left: 82%; top: 66%; width: 4px; height: 4px; }
.cloud-box i:nth-of-type(11) { left: 44%; top: 34%; width: 5px; height: 5px; }
.cloud-box i:nth-of-type(12) { left: 74%; top: 22%; width: 8px; height: 8px; background: #9daaff; }
.merge-lines::before,
.merge-lines::after {
  content: "";
  position: absolute;
  top: 188px;
  width: 29%;
  height: 76px;
  border-bottom: 2px solid rgba(99,102,241,.78);
}
.merge-lines::before {
  left: 26%;
  border-left: 2px solid rgba(99,102,241,.78);
  border-radius: 0 0 80px 80px;
  transform: skewX(22deg);
}
.merge-lines::after {
  right: 26%;
  border-right: 2px solid rgba(59,130,246,.78);
  border-radius: 0 0 80px 80px;
  transform: skewX(-22deg);
}
.georef-diagram {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(165,180,252,.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 38%, rgba(59,130,246,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
}
.georef-diagram i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #95a9ff;
  box-shadow: 0 0 12px rgba(149,169,255,.48);
}
.georef-diagram i:nth-of-type(1) { left: 26%; top: 25%; }
.georef-diagram i:nth-of-type(2) { left: 42%; top: 31%; }
.georef-diagram i:nth-of-type(3) { left: 58%; top: 21%; }
.georef-diagram i:nth-of-type(4) { left: 75%; top: 28%; }
.georef-diagram i:nth-of-type(5) { left: 24%; top: 50%; }
.georef-diagram i:nth-of-type(6) { left: 36%; top: 58%; }
.georef-diagram i:nth-of-type(7) { left: 49%; top: 52%; }
.georef-diagram i:nth-of-type(8) { left: 62%; top: 60%; }
.georef-diagram i:nth-of-type(9) { left: 72%; top: 49%; }
.georef-diagram i:nth-of-type(10) { left: 31%; top: 74%; }
.georef-diagram i:nth-of-type(11) { left: 52%; top: 76%; }
.georef-diagram i:nth-of-type(12) { left: 80%; top: 70%; }
.gcp {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #93c5fd;
  background: rgba(59,130,246,.28);
  box-shadow: 0 0 0 5px rgba(147,197,253,.10), 0 0 22px rgba(147,197,253,.55);
}
.gcp::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #bfdbfe;
}
.gcp-one { left: 29%; top: 27%; }
.gcp-two { left: 67%; top: 34%; }
.gcp-three { left: 37%; top: 66%; }
.gcp-four { left: 76%; top: 72%; }
.diagram-line {
  position: absolute;
  inset: 28px 42px 36px;
  width: calc(100% - 84px);
  height: calc(100% - 64px);
}
.diagram-line path {
  fill: none;
  stroke: #5b7cff;
  stroke-width: 2;
  stroke-dasharray: 4 7;
}
.diagram-label {
  position: absolute;
  bottom: 12px;
  color: #aeb9d9;
  font-size: .72rem;
}
.diagram-label.local { left: 12px; }
.diagram-label.target { right: 12px; color: #c7d2fe; }
.diagram-arrow {
  position: absolute;
  left: 53%;
  bottom: 12px;
  color: #a8b8ff;
}
.crs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.crs-card {
  min-height: 96px;
  position: relative;
  padding: 24px;
}
.crs-card strong {
  display: block;
  font-size: 1.02rem;
}
.crs-card span {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: .22rem .55rem;
  border-radius: 999px;
  color: #c7d2fe;
  background: rgba(108,99,255,.20);
  font-size: .68rem;
  font-weight: 900;
}
.crs-card p {
  margin: 18px 0 0;
  font-size: .88rem;
}
.more-crs {
  text-align: center;
  margin-top: 28px;
}
.transform-layout {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 56px;
  align-items: center;
}
.transform-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(165,180,252,.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 82%, rgba(36,211,238,.12), transparent 42%),
    linear-gradient(145deg, rgba(108,99,255,.16), rgba(59,130,246,.075));
}
.transform-panel::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 106px;
  width: 3px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
}
.crs-flow-row {
  display: flex;
  gap: 16px;
  align-items: center;
}
.crs-flow-row + .crs-flow-row {
  margin-top: 22px;
}
.crs-flow-row .picto {
  width: 52px;
  height: 52px;
  margin: 0;
}
.crs-flow-row p {
  margin: 0 0 2px;
  font-size: .86rem;
}
.crs-flow-row strong {
  color: #fff;
  font-size: .9rem;
}
.helmert-box {
  margin: 22px 0 22px 66px;
  padding: 16px;
  border: 1px solid rgba(165,180,252,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}
.helmert-box strong {
  color: #c7d2fe;
  font-size: .82rem;
}
.helmert-box p {
  margin: 8px 0 0;
  font-size: .72rem;
}
.media-card { padding: 0; overflow: hidden; }
.media-card .card-body { padding: 24px; }
.card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0d14;
  border-bottom: 1px solid var(--line);
}
.card-img.contain { object-fit: contain; padding: 16px; }
.image-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.feature-image {
  min-height: 320px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: 0 22px 80px rgba(0,0,0,.24);
}
.card strong, .card h3 { color: #fff; }
.card p, .card li { color: var(--muted); }
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(108,99,255,.25), rgba(59,130,246,.16));
  color: #dbeafe;
  font-weight: 900;
  margin-bottom: 18px;
}
.picto {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #c7d2fe;
  background: linear-gradient(135deg, rgba(108,99,255,.16), rgba(59,130,246,.08));
  border: 1px solid rgba(165,180,252,.16);
  margin-bottom: 16px;
}
.picto::before {
  content: "";
  width: 19px;
  height: 19px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.ico-pin { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.ico-transform { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 7H7'/%3E%3Cpath d='m17 3 4 4-4 4'/%3E%3Cpath d='M3 17h14'/%3E%3Cpath d='m7 13-4 4 4 4'/%3E%3C/svg%3E"); }
.ico-scale { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='m21 3-7 7'/%3E%3Cpath d='M9 21H3v-6'/%3E%3Cpath d='m3 21 7-7'/%3E%3C/svg%3E"); }
.ico-layers { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 10 5-10 5L2 7l10-5Z'/%3E%3Cpath d='m2 12 10 5 10-5'/%3E%3Cpath d='m2 17 10 5 10-5'/%3E%3C/svg%3E"); }
.ico-file { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E"); }
.ico-cloud { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19H8a6 6 0 1 1 1.1-11.9A7 7 0 0 1 22 11.5 4.5 4.5 0 0 1 17.5 19Z'/%3E%3C/svg%3E"); }
.ico-users { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.9'/%3E%3Cpath d='M16 3.1a4 4 0 0 1 0 7.8'/%3E%3C/svg%3E"); }
.ico-shield { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-8 9-4.5-1.5-8-4-8-9V5l8-3 8 3v8Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.ico-zap { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-14h-8l1-6Z'/%3E%3C/svg%3E"); }
.ico-drone { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 10h4v4h-4z'/%3E%3Cpath d='M4 4h4v4H4z'/%3E%3Cpath d='M16 4h4v4h-4z'/%3E%3Cpath d='M4 16h4v4H4z'/%3E%3Cpath d='M16 16h4v4h-4z'/%3E%3Cpath d='M8 6h8'/%3E%3Cpath d='M8 18h8'/%3E%3Cpath d='M6 8v8'/%3E%3Cpath d='M18 8v8'/%3E%3C/svg%3E"); }
.ico-building { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V5a2 2 0 0 1 2-2h8v18'/%3E%3Cpath d='M15 9h4v12'/%3E%3Cpath d='M9 7h2'/%3E%3Cpath d='M9 11h2'/%3E%3Cpath d='M9 15h2'/%3E%3C/svg%3E"); }
.ico-tree { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22v-7'/%3E%3Cpath d='M8 17h8'/%3E%3Cpath d='M5 14 12 3l7 11H5Z'/%3E%3C/svg%3E"); }
.ico-construction { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 22h20'/%3E%3Cpath d='M5 18 7 8h10l2 10'/%3E%3Cpath d='M9 8V4h6v4'/%3E%3Cpath d='M9 13h6'/%3E%3C/svg%3E"); }
.ico-book { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15Z'/%3E%3C/svg%3E"); }
.step .num { color: rgba(165,180,252,.45); font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 18px; }
.list { padding-left: 1.2rem; margin: 18px 0 0; }
.list li { margin: .55rem 0; }
.price { font-size: 2.5rem; font-weight: 900; color: #fff; margin: 12px 0 2px; }
.popular { border-color: rgba(108,99,255,.55); box-shadow: 0 0 70px rgba(108,99,255,.13); }

.cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(36,211,238,.14), transparent 30%),
    radial-gradient(circle at 78% 44%, rgba(108,99,255,.18), transparent 32%),
    #101522;
  text-align: center;
}
.cta .container { max-width: 850px; }
.cta p { margin: 18px auto 0; max-width: 660px; }
.cta .actions { justify-content: center; }
.cta-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 44px rgba(79,70,229,.25);
}
.cta-icon .picto {
  width: 24px;
  height: 24px;
  margin: 0;
  border: 0;
  background: transparent;
  color: #fff;
}
.cta-icon .picto::before {
  width: 18px;
  height: 18px;
}

.site-footer { background: #090c12; padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h2, .footer-grid h3 { font-size: .92rem; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 10px 0; }
.footer-grid a, .copyright { color: rgba(255,255,255,.55); font-size: .94rem; }
.footer-grid a:hover { color: #a5b4fc; }
.footer-grid .brand {
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: 22px;
}
.footer-grid p {
  max-width: 260px;
}
.footer-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.footer-icons .picto {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 0;
  background: transparent;
}
.footer-icons .picto::before {
  width: 18px;
  height: 18px;
}
.copyright { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.plain-page { padding: 92px 0; }
.plain-page article { max-width: 860px; }
.plain-page h1 { font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 18px; }
.plain-page h2 { font-size: 1.65rem; margin: 38px 0 12px; }
.en-page .plain-page {
  position: relative;
  overflow: hidden;
  padding: 112px 0 92px;
  background: #070b18;
  border-bottom: 1px solid var(--line);
}
.en-page .plain-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7,11,24,.98) 0%, rgba(7,11,24,.88) 42%, rgba(7,11,24,.46) 100%),
    url("../images/hero-point-cloud.png?v=20260706-1405") center right / cover no-repeat;
}
.en-page .plain-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 68% 48%, rgba(108,99,255,.20), transparent 46%),
    linear-gradient(180deg, transparent 0%, rgba(15,17,21,.94) 78%, #0f1115 100%);
}
.en-page .plain-page > .container {
  position: relative;
  z-index: 1;
}
.en-page .plain-page h1 {
  max-width: 860px;
}
.faq details { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: rgba(255,255,255,.04); }
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; font-weight: 800; color: #fff; }

@media (max-width: 1120px) {
  body.nav-open { overflow: hidden; }
  .nav {
    position: relative;
    min-height: 64px;
    gap: 12px;
    padding: 10px 0;
  }
  .brand { font-size: 1.06rem; }
  .brand img { width: 34px; height: 34px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: min(78vh, 620px);
    overflow: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    background: rgba(9, 12, 18, .98);
    box-shadow: 0 24px 60px rgba(0,0,0,.38);
    transform-origin: top;
    transform: scaleY(.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: .72rem .84rem;
    font-size: .98rem;
    background: rgba(255,255,255,.035);
  }
  .lang-picker {
    justify-content: center;
    margin: 8px 0 0;
    padding: 8px 0 2px;
  }
  .nav-links .flag-link {
    width: 48px;
    height: 32px;
  }
  .grid.two, .grid.three, .grid.four, .footer-grid, .image-band, .workflow-layout, .transform-layout { grid-template-columns: 1fr; }
  .use-case-row, .use-case-row.reverse { grid-template-columns: 1fr; }
  .use-case-row.reverse .use-image, .use-case-row.reverse .use-content { order: initial; }
  .crs-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-share { align-items: flex-start; flex-direction: column; }
  .process-card:not(:last-child)::after { display: none; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 72px; }
  .fusion-diagram { min-height: 420px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-links a { padding: .45rem .5rem; font-size: .86rem; }
  .nav-links .flag-link { padding: 0; }
  .section { padding: 62px 0; }
  .card { padding: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .crs-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .blog-body { padding: 20px; }
  .use-image { min-height: 240px; }
  .georef-diagram { min-height: 250px; }
  .helmert-box { margin-left: 0; }
  .transform-panel::before { display: none; }
}


