:root {
  --navy: #0B1628;
  --navy-mid: #132040;
  --navy-soft: #172848;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --paper: #F5F2EC;
  --muted: #AEB7C8;
  --grey: #AEB7C8;
  --text: #F8FAFC;
  --green: #34D399;
  --red: #F87171;
  --line: rgba(201, 168, 76, 0.22);
  --panel: rgba(19, 32, 64, 0.82);
  --panel-strong: rgba(245, 242, 236, 0.06);
}

/* ===== Archi-Expert Design 3 Tech refresh ===== */
:root {
  --blanc-pur: #ffffff;
  --gris-50: #f8fafc;
  --gris-100: #f1f5f9;
  --gris-200: #e2e8f0;
  --gris-300: #cbd5e1;
  --gris-400: #94a3b8;
  --gris-500: #64748b;
  --gris-600: #475569;
  --gris-700: #334155;
  --gris-800: #1e293b;
  --gris-900: #0f172a;
  --cyan: #06b6d4;
  --cyan-clair: #67e8f9;
  --cyan-pale: #ecfeff;
  --bleu: #3b82f6;
  --bleu-fonce: #1d4ed8;
  --line: #e2e8f0;
  --text: #1e293b;
  --muted: #64748b;
  --paper: #ffffff;
  --navy: #0f172a;
  --navy-mid: #111827;
  --gold: #06b6d4;
  --gold-light: #3b82f6;
  --panel: #ffffff;
  --panel-strong: #f8fafc;
}

body,
body.ae-v31-7 {
  background: var(--blanc-pur);
  color: var(--gris-800);
  font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.site-header,
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--gris-200);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
}

.brand {
  position: relative;
  min-height: 42px;
  color: var(--gris-900);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--bleu));
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.22);
}

.brand img {
  width: 190px;
  max-width: 36vw;
  filter: saturate(0.35) hue-rotate(145deg);
  mix-blend-mode: multiply;
}

.nav,
.nav-links {
  gap: clamp(12px, 1.8vw, 24px);
}

.nav a,
.nav-links a {
  color: var(--gris-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
}

.nav a::after,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--bleu));
  transition: width 0.24s ease;
}

.nav a:hover,
.nav-links a:hover,
.nav a[aria-current="page"],
.nav-links a[aria-current="page"] {
  color: var(--gris-900);
}

.nav a:hover::after,
.nav-links a:hover::after,
.nav a[aria-current="page"]::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav .cta,
.nav-cta {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--bleu));
  color: var(--blanc-pur) !important;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.24);
}

.nav .cta::after,
.nav-cta::after {
  display: none;
}

.nav .cta:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.34);
}

.hero {
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(80px, 10vw, 128px) clamp(20px, 5vw, 72px) clamp(62px, 8vw, 96px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--gris-50) 0%, var(--blanc-pur) 66%);
  border-bottom: 1px solid var(--gris-200);
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -4%;
  width: min(54vw, 760px);
  height: 78%;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(59, 130, 246, 0.04)),
    url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80") center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(6, 182, 212, 0.12);
  transform: perspective(1200px) rotateY(-4deg);
  opacity: 0.96;
}

.hero::after {
  display: none;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  text-align: left;
}

.hero .eyebrow,
.eyebrow,
.module-count,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid var(--cyan-clair);
  border-radius: 999px;
  background: var(--cyan-pale);
  color: var(--bleu-fonce);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow::before,
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.12);
}

.hero h1,
.section h1,
.section h2,
.module-hero h1,
.nomade-copy h2,
.trust-section h2,
.legal-copy h2,
.legal-text h2,
.card h3,
.feature-card h3,
.module-card h3,
.price-card h3,
.process-grid h3 {
  color: var(--gris-900);
  font-family: Inter, "Segoe UI", Roboto, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.05;
}

.hero h1::after {
  content: "";
  display: block;
  width: 118px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--bleu));
}

.lead,
.section-head p:not(.eyebrow),
.section > .lead,
.nomade-copy p,
.trust-section p,
.card p,
.card li,
.feature-card p,
.module-card p,
.process-grid p,
.legal-copy,
.legal-text,
.legal-copy p,
.legal-text p {
  color: var(--gris-500);
}

.lead {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
}

.actions,
.hero-actions,
.contact-actions {
  justify-content: flex-start;
}

.btn {
  min-height: 48px;
  padding: 13px 24px;
  border: 1.5px solid var(--gris-200);
  border-radius: 12px;
  background: var(--blanc-pur);
  color: var(--gris-700);
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
  font-weight: 700;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.btn:hover {
  border-color: var(--cyan);
  color: var(--gris-900);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.12);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--bleu));
  color: var(--blanc-pur);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.24);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--cyan), var(--bleu-fonce));
  color: var(--blanc-pur);
  box-shadow: 0 16px 38px rgba(6, 182, 212, 0.34);
}

.btn.outline,
.btn.alt {
  background: var(--blanc-pur);
  color: var(--gris-700);
}

.product-preview {
  width: 100%;
  margin: 0;
  border: 1px solid var(--gris-100);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
}

.preview-bar {
  border-bottom: 1px solid var(--gris-100);
  background: var(--gris-50);
}

.preview-bar span {
  background: var(--gris-300);
}

.preview-bar span:first-child {
  background: var(--cyan);
}

.preview-panel {
  grid-template-columns: minmax(0, 1fr) 160px;
  padding: clamp(24px, 4vw, 38px);
}

.preview-kicker,
.tagline,
.table th {
  color: var(--bleu-fonce) !important;
}

.preview-panel h2 {
  color: var(--gris-900);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
}

.preview-panel p,
.preview-grid span {
  color: var(--gris-500);
}

.preview-grid {
  border-top: 1px solid var(--gris-100);
}

.preview-grid span {
  border-right: 1px solid var(--gris-100);
  background: var(--gris-50);
  font-weight: 700;
}

.stats-section {
  background: var(--blanc-pur);
  border-bottom: 1px solid var(--gris-200);
}

.stat-card,
.stat,
.card,
.feature-card,
.module-card,
.module-tile,
.price-card,
.process-grid article,
.territory-tags span {
  border: 1px solid var(--gris-100);
  border-radius: 16px;
  background: var(--blanc-pur);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.stat-card:hover,
.stat:hover,
.card:hover,
.feature-card:hover,
.module-card:hover,
.module-tile:hover,
.price-card:hover,
.process-grid article:hover,
.territory-tags span:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-clair);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
}

.stat-card strong,
.stat strong,
.plan .price,
.price-card .price {
  color: var(--cyan);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
}

.stat-card span,
.stat span {
  color: var(--gris-500);
  font-weight: 600;
}

.section,
.module-category {
  background: var(--blanc-pur);
  border-bottom: 1px solid var(--gris-100);
  padding: clamp(62px, 7vw, 94px) clamp(20px, 5vw, 72px);
}

.section.band,
.section.alt,
.module-category:nth-of-type(even) {
  background: var(--gris-50);
}

.section.green,
.pricing-section,
.process-section,
.trust-section {
  background: var(--gris-900);
  color: var(--blanc-pur);
}

.pricing-section .section-head h2,
.process-section .section-head h2,
.trust-section h2,
.section.green h2,
.section.green h3,
.process-section h3 {
  color: var(--blanc-pur);
}

.pricing-section .section-head p:not(.eyebrow),
.process-section .section-head p:not(.eyebrow),
.trust-section p,
.section.green p {
  color: var(--gris-400);
}

.feature-icon {
  border: 1px solid var(--cyan-clair);
  border-radius: 12px;
  background: var(--cyan-pale);
  color: var(--bleu-fonce);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 12px;
}

.module-card,
.feature-card,
.card {
  position: relative;
  overflow: hidden;
}

.module-card::before,
.feature-card::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--bleu));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.module-card:hover::before,
.feature-card:hover::before,
.card:hover::before {
  opacity: 1;
}

.module-card img,
.module-tile img,
.card img {
  padding: 8px;
  border-radius: 13px;
  background: var(--cyan-pale);
  border: 1px solid var(--cyan-clair);
}

.module-hero {
  background: linear-gradient(180deg, var(--gris-50), var(--blanc-pur));
  border-bottom: 1px solid var(--gris-200);
}

.module-wall {
  gap: 14px;
}

.module-tile {
  min-height: 136px;
}

.module-tile span,
.territory-tags span {
  color: var(--gris-600);
}

.text-link {
  color: var(--bleu-fonce);
  border-bottom: 2px solid var(--cyan-clair);
  font-weight: 700;
}

.text-link:hover {
  color: var(--gris-900);
  border-color: var(--bleu);
}

.pricing-section .price-card,
.process-section article {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pricing-section .price-card:hover,
.process-section article:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(6, 182, 212, 0.35);
}

.price-card.featured,
.plan.highlight,
.card.highlight {
  border-color: transparent;
  background: var(--blanc-pur);
  color: var(--gris-800);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.price-card.featured h3,
.plan.highlight h3,
.card.highlight h3 {
  color: var(--gris-900);
}

.price-card.featured p,
.price-card.featured li,
.plan.highlight p,
.plan.highlight li,
.card.highlight p,
.card.highlight li {
  color: var(--gris-600);
}

.badge,
.popular-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--cyan-pale);
  color: var(--bleu-fonce);
  font-size: 11px;
  font-weight: 800;
}

.process-grid article {
  padding: 28px;
}

.process-grid article span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blanc-pur);
  color: var(--gris-900);
  border: 3px solid var(--cyan-clair);
  font-weight: 800;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.site-footer {
  background: var(--gris-900);
  color: var(--gris-400);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer h3 {
  color: var(--blanc-pur);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--cyan-clair);
}

.table {
  border-color: var(--gris-200);
  background: var(--blanc-pur);
}

.table th,
.table td {
  border-bottom-color: var(--gris-100);
  color: var(--gris-600);
}

.form-group label,
.consent-line,
.field-help {
  color: var(--gris-600);
}

.form-group input,
.form-group textarea,
.form-group select {
  border-color: var(--gris-200);
  background: var(--blanc-pur);
  color: var(--gris-900);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.checkout-panel,
.contact-layout {
  align-items: stretch;
}

@media (max-width: 1040px) {
  .hero,
  .module-hero,
  .section-head.split,
  .nomade-layout,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero-copy,
  .hero h1,
  .lead {
    max-width: 760px;
  }

  .pricing-grid,
  .stats-section,
  .module-list,
  .module-grid,
  .grid.four,
  .plans,
  .grid.plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .brand img {
    max-width: 240px;
  }

  .nav,
  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .module-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .product-preview,
  .preview-panel {
    grid-template-columns: 1fr;
  }

  .preview-panel img {
    max-height: 130px;
  }

  .preview-grid,
  .stats-section,
  .feature-grid.three,
  .module-list,
  .module-grid,
  .pricing-grid,
  .process-grid,
  .grid,
  .grid.two,
  .grid.four,
  .plans,
  .grid.plans,
  .territory-tags,
  .form-grid,
  .checkout-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }
}

.site-header .brand img,
.site-nav .brand img {
  display: none;
}

.site-header .brand::after,
.site-nav .brand::after {
  content: "Archi-Expert";
  color: var(--gris-900);
  font-size: 19px;
  font-weight: 800;
}

.site-header .brand img,
.site-nav .brand img {
  display: none;
}

.site-header .brand::after,
.site-nav .brand::after {
  content: "Archi-Expert";
  color: var(--gris-900);
  font-size: 19px;
  font-weight: 800;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body.ae-v31-7 {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body a,
body.ae-v31-7 a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(11, 22, 40, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(11, 22, 40, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 210px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.brand span {
  color: var(--gold-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
}

.nav a,
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav-links a:hover {
  color: var(--text);
}

.nav .cta,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: clamp(64px, 8vw, 98px) clamp(18px, 5vw, 76px) 48px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 22, 40, 0.94), rgba(11, 22, 40, 0.86)),
    url("/og-image.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero > div:first-child:not(.product-preview) {
  position: relative;
  z-index: 1;
}

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h1,
.section h2,
.nomade-copy h2,
.trust-section h2 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 920px;
  margin: 0 auto;
}

.section h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 68px);
}

.lead {
  max-width: 820px;
  margin: 22px auto 0;
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(245, 242, 236, 0.24);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn.outline {
  background: rgba(11, 22, 40, 0.24);
  color: var(--text);
}

.btn.outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.product-preview {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(19, 32, 64, 0.86);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.preview-bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.04);
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.28);
}

.preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
}

.preview-kicker {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.preview-panel h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
}

.preview-panel p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.preview-panel img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.preview-grid span {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.preview-grid span:last-child {
  border-right: 0;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 76px);
  background: #07101F;
  border-bottom: 1px solid var(--line);
}

.stat-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 242, 236, 0.035);
}

.stat-card strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.stat-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 76px);
}

.section.band,
.section.green,
.section.alt,
.pricing-section {
  background: var(--navy-mid);
}

.section-head {
  margin-bottom: 34px;
}

.section-head.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: end;
}

.section h2,
.nomade-copy h2,
.trust-section h2 {
  font-size: clamp(31px, 4.1vw, 52px);
}

.section-head p:not(.eyebrow),
.section > .lead,
.nomade-copy p,
.trust-section p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section > .lead {
  max-width: 880px;
  margin-bottom: 34px;
  font-size: clamp(17px, 1.9vw, 21px);
}

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

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

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

.grid.plans,
.plans {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: stretch;
}

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 242, 236, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  padding: 26px;
}

.card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.card .btn {
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 8px 0 8px 24px;
}

.feature-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.table tr:last-child td {
  border-bottom: 0;
}

.table th {
  color: var(--gold-light);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.72);
  color: var(--text);
  font: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.contact-form {
  padding: clamp(22px, 3vw, 34px);
}

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

.field-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.consent-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.consent-line input {
  margin-top: 3px;
}

.contact-actions {
  justify-content: flex-start;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-result {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.contact-result .card {
  max-width: 860px;
}

.contact-result .card.success {
  border-color: rgba(52, 211, 153, 0.45);
}

.contact-result .card.error {
  border-color: rgba(248, 113, 113, 0.45);
}

.fade-in {
  animation: aeFadeUp 0.55s ease both;
}

.fade-in-delay-1 {
  animation-delay: 0.08s;
}

.fade-in-delay-2 {
  animation-delay: 0.16s;
}

.fade-in-delay-3 {
  animation-delay: 0.24s;
}

@keyframes aeFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan,
.price-card {
  display: flex;
  flex-direction: column;
}

.plan.highlight,
.card.highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.14), rgba(245, 242, 236, 0.045));
}

.plan .price {
  margin: 16px 0 20px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.plan .price small {
  color: var(--muted);
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
}

.plan .btn {
  width: 100%;
  margin-top: auto;
}

.btn.alt {
  background: rgba(11, 22, 40, 0.24);
  color: var(--text);
}

.btn.alt:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.legal-copy,
.legal-text {
  max-width: 980px;
  margin-top: 34px;
  color: var(--muted);
}

.legal-copy h2,
.legal-text h2 {
  margin: 34px 0 10px;
  color: var(--text);
  font-size: clamp(25px, 3vw, 36px);
}

.legal-copy p,
.legal-text p {
  color: var(--muted);
}

.stat {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 242, 236, 0.045);
}

.stat strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.module-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background: var(--navy);
  border-bottom: 1px solid var(--line);
}

.module-hero .hero-copy {
  text-align: left;
  margin: 0;
}

.module-hero h1 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.06;
}

.module-hero .lead {
  margin-left: 0;
  margin-right: 0;
}

.module-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.module-tile {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 242, 236, 0.045);
  text-align: center;
}

.module-tile img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.module-tile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.module-category {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.module-category:nth-of-type(even) {
  background: var(--navy-mid);
}

.module-count {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}

.module-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.module-list .module-card {
  min-height: 340px;
}

.tagline {
  margin-bottom: 12px !important;
  color: var(--gold-light) !important;
  font-weight: 900;
}

.feature-grid,
.module-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.module-card,
.price-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 242, 236, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  font-weight: 900;
}

.feature-card h3,
.module-card h3,
.price-card h3,
.process-grid h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
}

.feature-card p,
.module-card p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

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

.module-card {
  min-height: 250px;
  padding: 26px;
}

.module-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 18px;
}

.nomade-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--text);
}

.territory-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.territory-tags span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 242, 236, 0.045);
  color: var(--text);
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.14), rgba(245, 242, 236, 0.045));
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.price {
  margin: 16px 0 4px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
}

.tokens {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-weight: 900;
}

.price-card ul {
  min-height: 126px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(245, 242, 236, 0.07);
}

.price-card li::before {
  content: "+";
  margin-right: 10px;
  color: var(--gold-light);
  font-weight: 900;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
}

.process-grid article {
  position: relative;
  padding: 26px 22px;
}

.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -18px;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.process-grid span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 900;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.seo-copy {
  color: var(--muted);
}

.seo-copy h2 {
  max-width: 880px;
  margin-bottom: 18px;
}

.seo-copy p {
  max-width: 940px;
  color: var(--muted);
}

.trust-note {
  max-width: 980px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.08);
  color: var(--text);
}

.seo-link-grid .text-link {
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 76px);
  background: #07101F;
  border-top: 1px solid var(--line);
}

.footer {
  display: grid;
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 76px);
  background: #07101F;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer p,
.footer a,
.footer-bottom {
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 16px;
}

.footer a {
  display: block;
  margin: 7px 0;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 210px;
  max-width: 100%;
  height: auto;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

@media (max-width: 1120px) {
  .site-header,
  .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav,
  .nav-links {
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .grid.plans,
  .plans,
  .module-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 880px) {
  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .preview-panel,
  .section-head.split,
  .module-hero,
  .checkout-panel,
  .contact-layout,
  .nomade-layout,
  .trust-section,
  .site-footer,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .preview-panel img {
    max-width: 180px;
    margin: 0 auto;
  }

  .stats-section,
  .grid,
  .grid.two,
  .grid.four,
  .feature-grid.three,
  .module-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-hero .hero-copy {
    text-align: center;
  }

  .module-hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .module-hero .actions {
    justify-content: center;
  }

  .process-grid article::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-nav {
    padding: 14px 16px;
  }

  .brand img {
    width: 180px;
  }

  .nav,
  .nav-links {
    gap: 14px;
  }

  .nav a,
  .nav-links a {
    font-size: 13px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .preview-grid,
  .stats-section,
  .grid,
  .grid.two,
  .grid.four,
  .form-grid,
  .grid.plans,
  .plans,
  .feature-grid.three,
  .module-grid,
  .module-wall,
  .module-list,
  .territory-tags,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .price-card ul {
    min-height: 0;
  }
}

/* ===== Active Design 3 Tech theme layer ===== */
:root {
  --blanc-pur: #fff;
  --gris-50: #f8fafc;
  --gris-100: #f1f5f9;
  --gris-200: #e2e8f0;
  --gris-300: #cbd5e1;
  --gris-400: #94a3b8;
  --gris-500: #64748b;
  --gris-600: #475569;
  --gris-700: #334155;
  --gris-800: #1e293b;
  --gris-900: #0f172a;
  --cyan: #06b6d4;
  --cyan-clair: #67e8f9;
  --cyan-pale: #ecfeff;
  --bleu: #3b82f6;
  --bleu-fonce: #1d4ed8;
  --navy: #0f172a;
  --navy-mid: #111827;
  --gold: #06b6d4;
  --gold-light: #3b82f6;
  --paper: #fff;
  --text: #1e293b;
  --muted: #64748b;
  --grey: #64748b;
  --line: #e2e8f0;
  --panel: #fff;
  --panel-strong: #f8fafc;
}

body,
body.ae-v31-7 {
  background: var(--blanc-pur);
  color: var(--gris-800);
  font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.site-header,
.site-nav {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--gris-200);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
}

.brand {
  color: var(--gris-900);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--bleu));
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.22);
}

.brand img {
  filter: saturate(0.35) hue-rotate(145deg);
  mix-blend-mode: multiply;
}

.site-header .brand img,
.site-nav .brand img {
  display: none;
}

.site-header .brand::after,
.site-nav .brand::after {
  content: "Archi-Expert";
  color: var(--gris-900);
  font-size: 19px;
  font-weight: 800;
}

.nav a,
.nav-links a {
  color: var(--gris-500);
  font-size: 13px;
  font-weight: 600;
}

.nav a:hover,
.nav-links a:hover {
  color: var(--gris-900);
}

.nav .cta,
.nav-cta,
.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--bleu));
  color: var(--blanc-pur) !important;
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.24);
}

.hero {
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(80px, 10vw, 128px) clamp(20px, 5vw, 72px) clamp(62px, 8vw, 96px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--gris-50) 0%, var(--blanc-pur) 66%);
  border-bottom: 1px solid var(--gris-200);
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -4%;
  width: min(54vw, 760px);
  height: 78%;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(59, 130, 246, 0.04)),
    url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80") center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(6, 182, 212, 0.12);
  transform: perspective(1200px) rotateY(-4deg);
  opacity: 0.96;
}

.hero::after {
  display: none;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  text-align: left;
}

.eyebrow,
.module-count,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid var(--cyan-clair);
  border-radius: 999px;
  background: var(--cyan-pale);
  color: var(--bleu-fonce);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h1,
.section h2,
.module-hero h1,
.nomade-copy h2,
.trust-section h2,
.legal-copy h2,
.legal-text h2,
.card h3,
.feature-card h3,
.module-card h3,
.price-card h3,
.process-grid h3 {
  color: var(--gris-900);
  font-family: Inter, "Segoe UI", Roboto, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--gris-900);
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.05;
}

.hero h1::after {
  content: "";
  display: block;
  width: 118px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--bleu));
}

.lead,
.section-head p:not(.eyebrow),
.section > .lead,
.nomade-copy p,
.trust-section p,
.card p,
.card li,
.feature-card p,
.module-card p,
.process-grid p,
.legal-copy,
.legal-text,
.legal-copy p,
.legal-text p {
  color: var(--gris-500);
}

.lead {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
}

.actions,
.hero-actions,
.contact-actions {
  justify-content: flex-start;
}

.btn,
.btn.outline,
.btn.alt {
  min-height: 48px;
  padding: 13px 24px;
  border: 1.5px solid var(--gris-200);
  border-radius: 12px;
  background: var(--blanc-pur);
  color: var(--gris-700);
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
  font-weight: 700;
}

.btn:hover,
.btn.outline:hover,
.btn.alt:hover {
  border-color: var(--cyan);
  color: var(--gris-900);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.12);
}

.product-preview,
.stat-card,
.stat,
.card,
.feature-card,
.module-card,
.module-tile,
.price-card,
.process-grid article,
.territory-tags span {
  border: 1px solid var(--gris-100);
  border-radius: 16px;
  background: var(--blanc-pur);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.product-preview {
  width: 100%;
  margin: 0;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.preview-bar,
.preview-grid span {
  background: var(--gris-50);
  border-color: var(--gris-100);
}

.preview-panel h2,
.preview-panel p,
.preview-grid span {
  color: var(--gris-900);
}

.preview-panel p,
.preview-grid span,
.preview-kicker {
  color: var(--gris-500);
}

.stats-section,
.section,
.module-category {
  background: var(--blanc-pur);
  border-bottom: 1px solid var(--gris-100);
}

.section.band,
.section.alt,
.module-category:nth-of-type(even) {
  background: var(--gris-50);
}

.section.green,
.pricing-section,
.process-section,
.trust-section,
.site-footer {
  background: var(--gris-900);
  color: var(--blanc-pur);
}

.pricing-section .section-head h2,
.process-section .section-head h2,
.trust-section h2,
.section.green h2,
.section.green h3,
.process-section h3,
.site-footer h3 {
  color: var(--blanc-pur);
}

.pricing-section .section-head p:not(.eyebrow),
.process-section .section-head p:not(.eyebrow),
.trust-section p,
.section.green p,
.site-footer,
.site-footer p,
.site-footer a,
.pricing-section .price-card p,
.pricing-section .price-card li,
.process-section article p {
  color: var(--gris-400);
}

.price-card.featured {
  background: var(--blanc-pur);
  color: var(--gris-800);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured li {
  color: var(--gris-900);
}

.stat-card strong,
.stat strong,
.price-card .price,
.plan .price {
  color: var(--cyan);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
}

.feature-icon,
.badge,
.popular-badge {
  border: 1px solid var(--cyan-clair);
  border-radius: 12px;
  background: var(--cyan-pale);
  color: var(--bleu-fonce);
}

.module-card img,
.module-tile img,
.card img {
  padding: 8px;
  border-radius: 13px;
  background: var(--cyan-pale);
  border: 1px solid var(--cyan-clair);
}

.text-link,
.tagline,
.table th {
  color: var(--bleu-fonce) !important;
}

.module-hero {
  background: linear-gradient(180deg, var(--gris-50), var(--blanc-pur));
  border-bottom: 1px solid var(--gris-200);
}

.form-group label,
.consent-line,
.field-help {
  color: var(--gris-600);
}

.form-group input,
.form-group textarea,
.form-group select,
.table {
  border-color: var(--gris-200);
  background: var(--blanc-pur);
  color: var(--gris-900);
}

.table td {
  color: var(--gris-600);
  border-bottom-color: var(--gris-100);
}

@media (max-width: 1040px) {
  .hero,
  .module-hero,
  .section-head.split,
  .nomade-layout,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero-copy,
  .hero h1,
  .lead {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .module-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .preview-panel,
  .preview-grid,
  .stats-section,
  .feature-grid.three,
  .module-list,
  .module-grid,
  .pricing-grid,
  .process-grid,
  .grid,
  .grid.two,
  .grid.four,
  .plans,
  .grid.plans,
  .territory-tags,
  .form-grid,
  .checkout-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }
}
/* V31.7 - lisibilite des cartes et contenus d'aide */
.process-section .process-grid article,
.pricing-section .price-card,
.section.green .card {
  background: #ffffff;
  color: #0f172a;
}

.process-section .process-grid article h3,
.process-section .process-grid article p,
.pricing-section .price-card h3,
.pricing-section .price-card p,
.pricing-section .price-card li,
.section.green .card h3,
.section.green .card p,
.section.green .card li {
  color: #334155 !important;
}

.process-section .process-grid article h3,
.pricing-section .price-card h3,
.section.green .card h3 {
  color: #0f172a !important;
}

.process-section .process-grid article span {
  border-color: #06b6d4;
  background: #ecfeff;
  color: #0f172a;
}

.guidance-grid,
.nomade-use-grid,
.territory-context-grid {
  display: grid;
  gap: 18px;
}

.guidance-grid,
.nomade-use-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.territory-context-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guidance-card,
.nomade-use-grid article,
.territory-context-grid article,
.project-example,
.nomade-summary {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.guidance-card,
.nomade-use-grid article,
.territory-context-grid article {
  padding: 24px;
}

.guidance-card h3,
.nomade-use-grid strong,
.territory-context-grid h3,
.project-example h3 {
  display: block;
  margin: 0 0 10px;
  color: #0f172a !important;
}

.guidance-card p,
.nomade-use-grid span,
.territory-context-grid p,
.project-example p {
  color: #475569 !important;
}

.project-example {
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 26px;
}

.privacy-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  background: #ecfeff;
}

.guidance-actions {
  justify-content: center;
  margin-top: 22px;
}

.nomade-summary {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 360px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.nomade-summary strong {
  color: #0f172a;
  font-size: clamp(18px, 2vw, 24px);
}

.nomade-route {
  padding: 9px 14px;
  border-radius: 999px;
  background: #ecfeff;
  color: #164e63;
  font-weight: 800;
}

.nomade-arrow {
  color: #0891b2;
  font-size: 28px;
  line-height: 1;
}

.nomade-use-grid article {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: 10px;
}

.nomade-use-grid strong {
  font-size: 20px;
}

.nomade-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

@media (max-width: 1040px) {
  .guidance-grid,
  .nomade-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .territory-context-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .guidance-grid,
  .nomade-use-grid,
  .territory-context-grid,
  .nomade-cta {
    grid-template-columns: 1fr;
  }

  .nomade-summary {
    min-height: auto;
  }
}
