@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  /* Couleurs */
  --c-brand: #123241;
  /* --c-ink: #011a26; */
  --c-ink: #212733;
  --c-accent: #d3704c;
  --c-bg: #ffffff;
  --c-surface: #f6f8fb;
  --c-surface-2: #f6f8fc;
  --c-muted: rgba(1, 26, 38, 0.7);
  --c-muted-2: rgba(1, 26, 38, 0.55);
  --c-ring: rgba(76, 174, 211, 0.38);
  --c-border: rgb(226, 226, 226);

  /* Typo */
  --font-sans: "DM Sans", sans-serif;
  --fs-0: 0.875rem;
  --fs-1: 1rem;
  --fs-2: 1.125rem;
  --lh: 1.55;

  /* Espacements */
  --s-0: 0.25rem;
  --s-1: 0.5rem;
  --s-2: 0.75rem;
  --s-3: 1rem;
  --s-4: 1.25rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;

  /* Radius */
  --r-1: 10px;
  --r-2: 14px;
  --r-3: 18px;
  --r-pill: 999px;

  /* Ombres */
  --sh-1: 0 10px 26px rgba(1, 26, 38, 0.08);
  --sh-2: 0 16px 50px rgba(1, 26, 38, 0.12);

  /* Layout */
  --container: 1120px;
  --header-h: 74px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-1: 160ms;
  --dur-2: 260ms;
}

/* Reset moderne */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100dvh;
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  border: 0;
  background: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  letter-spacing: -1px;
}
p {
  overflow-wrap: break-word;
}

/* Base */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  line-height: var(--lh);
  color: var(--c-ink);
  background: var(--c-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

:focus-visible {
  outline: 3px solid var(--c-ring);
  outline-offset: 2px;
}

.no-scroll {
  overflow: hidden;
}

.container {
  width: calc(100vw - 10%);
  max-width: 2000px;
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.8rem 1rem;
  border-radius: 0 0 var(--r-2) 0;
  background: var(--c-ink);
  color: #fff;
  z-index: 9999;
}
.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.btn:active {
  transform: translateY(1px);
}
.btn:hover {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--c-brand);
  color: var(--c-bg);
}

.btn--line {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-border);
}
.btn--line:hover {
  background: rgba(76, 174, 211, 0.1);
  border-color: rgba(76, 174, 211, 0.35);
}

.btn--secondary {
  background: var(--c-accent);
  color: var(--c-bg);
}

/* Header*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px) saturate(170%);
  border-bottom: 1px solid var(--c-border);
  transition:
    box-shadow var(--dur-2) var(--ease),
    background var(--dur-2) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--sh-1);
  background: rgba(255, 255, 255, 0.92);
}

.nav {
  width: 100%;
}

.nav__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  position: relative;
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-pill);
  font-weight: 850;
  color: var(--c-muted);
  transition:
    background var(--dur-1) var(--ease),
    color var(--dur-1) var(--ease);
}

.nav__link:hover {
  background: rgba(76, 174, 211, 0.12);
  color: var(--c-ink);
}

.nav__link.is-active,
.nav__link[aria-current="page"] {
  color: var(--c-ink);
}

.nav__link.is-active::after,
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-brand);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.brand__name {
  font-weight: 950;
  letter-spacing: 0.2px;
}
.brand__tag {
  font-size: var(--fs-0);
  color: var(--c-muted-2);
  font-weight: 800;
  margin-top: 2px;
}

.brand__logo {
  width: auto;
  height: calc(var(--header-h) / 3);
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(1, 26, 38, 0.06);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle-lines {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--c-ink);
  border-radius: 2px;
  position: relative;
  transition: background var(--dur-2) var(--ease);
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition:
    transform var(--dur-2) var(--ease),
    top var(--dur-2) var(--ease),
    opacity var(--dur-2) var(--ease);
}

.nav__toggle-lines::before {
  top: -7px;
}
.nav__toggle-lines::after {
  top: 7px;
}

.nav__mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  border-bottom: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px) saturate(170%);
}

.nav__mobile-inner {
  padding: var(--s-4) 0 var(--s-5);
  display: grid;
  gap: 0.4rem;
}

.nav__m-link {
  padding: 0.9rem 1rem;
  border-radius: var(--r-2);
  font-weight: 950;
  color: var(--c-ink);
  transition: background var(--dur-1) var(--ease);
}
.nav__m-link:hover {
  background: rgba(76, 174, 211, 0.12);
}

.nav__m-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: var(--s-3);
}

.nav__mobile.is-open {
  display: block;
  animation: navDrop var(--dur-2) var(--ease) both;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__toggle[aria-expanded="true"] .nav__toggle-lines {
  background: transparent;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__link {
  text-align: center;
  line-height: 1rem;
}

.nav__link span {
  font-size: 0.8rem;
}
@media (max-width: 1380px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .brand__text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .nav__link,
  .nav__toggle-lines,
  .nav__toggle-lines::before,
  .nav__toggle-lines::after {
    transition: none !important;
  }
  .nav__mobile.is-open {
    animation: none;
  }
}

.columns {
  display: flex;
  justify-content: center;
  width: 100%;
}

.c-50 {
  width: 50%;
}
.c-33 {
  width: 33%;
}

.inline {
  display: flex;
}
p {
  font-size: 1.2rem;
}

.footer--brand {
  position: relative;
  padding: 70px 7% 18px 7%;
  background: var(--c-brand);
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  border-radius: 50px 50px 0 0;
}

.footer-wrap {
  position: relative;
  z-index: 2;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      800px 380px at 15% 25%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    radial-gradient(
      600px 320px at 85% 40%,
      rgba(33, 39, 51, 0.55),
      transparent 65%
    ),
    linear-gradient(155deg, #212733 0%, #1b202a 45%, #161b23 100%);
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-topline-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-weight: 1000;
  letter-spacing: -1px;
  color: #fff;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

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

.footer-btn-invert {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.footer-btn-invert:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-title {
  font-weight: 1000;
  color: #fff;
  margin-bottom: 10px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 560px;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  padding: 16px 50px 16px 0;
}

.footer-bottom a {
  color: #fff;
  font-weight: 950;
  text-decoration: underline;
}

.footer-bottom p {
  font-size: 0.8rem;
}
.footer-col:not(:nth-child(1)) {
  text-align: center;
}

@media screen and (max-width: 1560px) {
  .container {
    width: calc(100vw - 3%);
  }

  .nav__links {
    gap: 0;
  }
  .nav__link {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1250px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

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

.reveal-stagger {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

h1 {
  font-weight: bold;
  font-size: 4rem;
  line-height: 3.5rem;
  margin: 18px 0;
}

.rge {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  bottom: 10px;
  right: 0px;
  background-color: rgba(255, 255, 255, 0.873);
  box-shadow: var(--sh-2);
  z-index: 99;
  padding: 15px 25px;
  border-radius: 15px 0 0 15px;
  transform: translateX(100%);
  animation: translate;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  cursor: pointer;
}

@keyframes translate {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.rge img {
  height: 100px;
}

.rge p {
  font-size: 1rem;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .footer--brand {
    padding: 50px 7% 16px 7%;
  }
  .footer-topline {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rge img {
    max-height: 70px;
  }

  .rge {
    padding: 5px 10px;
  }

  .rge p {
    font-size: 0.7rem;
  }
}
