@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, p {
  margin: 0;
}

button, a {
  font: inherit;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/material-symbols-outlined.ttf") format("truetype");
}
.material-symbols-outlined,
.material-symbols-rounded {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

body {
  background: #F5F7F9;
  color: #1B1B1B;
}

a {
  color: inherit;
}

section, footer {
  scroll-margin-top: 5rem;
}

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

:focus-visible {
  outline: 3px solid #478DCD;
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: #3973B5;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover {
  background: #478DCD;
}

.button--large {
  padding: 0.8rem 1.25rem;
  font-size: 1.1rem;
}

.button--large small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
}

.button--outline {
  border-color: #478DCD;
  background: transparent;
  color: #478DCD;
}
.button--outline:hover {
  background: #3973B5;
  color: #FFFFFF;
}

.button--light {
  background: #FFFFFF;
  color: #3973B5;
}
.button--light:hover {
  background: #F5F7F9;
}

.button--disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.container {
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid rgba(71, 141, 205, 0.28);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.service-card__icon {
  color: #478DCD;
  font-size: 2.35rem;
}

.service-card h3 {
  margin: 0.7rem 0 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.site-header {
  --header-height: 96px;
  --wave-height: 34px;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  color: #fff;
  /*
   * Fond principal.
   *
   * Très sombre côté logo puis progressivement bleu
   * vers la partie téléphone.
   */
  background: linear-gradient(105deg, #05080d 0%, #08131f 22%, #102a43 53%, #1f507d 76%, #3973b5 100%);
  /*
   * Légère profondeur lumineuse derrière la partie droite.
   */
  /*
   * Vague inférieure.
   *
   * Elle reprend exactement le même dégradé que le header
   * et prolonge donc naturellement le fond.
   */
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 88% 10%, rgba(86, 166, 240, 0.22), transparent 38%);
  opacity: 0.8;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--wave-height) * -1 + 1px);
  height: var(--wave-height);
  pointer-events: none;
  background: linear-gradient(105deg, #05080d 0%, #08131f 22%, #102a43 53%, #1f507d 76%, #3973b5 100%);
  /*
   * Courbe SVG.
   *
   * Il suffit de modifier le path pour accentuer
   * ou adoucir la vague.
   */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H1440V30C1240 58 1080 5 875 20C650 38 490 82 270 62C155 52 75 34 0 48V0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H1440V30C1240 58 1080 5 875 20C650 38 490 82 270 62C155 52 75 34 0 48V0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.site-header__inner {
  position: relative;
  z-index: 2;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}
.site-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.4rem);
}
.site-header__link {
  position: relative;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}
.site-header__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background: #478dcd;
  border-radius: 100px;
  transform: translateX(-50%);
  transition: width 180ms ease;
}
.site-header__link:hover, .site-header__link:focus-visible, .site-header__link.is-active {
  color: #fff;
}
.site-header__link:hover::after, .site-header__link:focus-visible::after, .site-header__link.is-active::after {
  width: 100%;
}
.site-header__phone {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.75rem 1.4rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #478dcd, #247fd8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 91, 180, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.site-header__phone .material-symbols-rounded {
  font-size: 1.5rem;
}
.site-header__phone:hover, .site-header__phone:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #579fe3, #2c88df);
  box-shadow: 0 11px 32px rgba(0, 91, 180, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.site-header__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  cursor: pointer;
}
.site-header__toggle .material-symbols-rounded {
  font-size: 1.7rem;
}

@media (max-width: 1024px) {
  .site-header {
    --header-height: 82px;
    --wave-height: 25px;
  }
  .site-header__inner {
    gap: 1rem;
  }
  .site-header__logo {
    height: 58px;
  }
  .site-header__phone {
    padding-inline: 1rem;
  }
  .site-header__phone span:last-child {
    font-size: 0.95rem;
  }
  .site-header__nav {
    gap: 1.25rem;
  }
  .site-header__link {
    font-size: 0.9rem;
  }
}
/*
.site-header {
    position: sticky;
    z-index: 10;
    top: 0;
    padding: .7rem 0;
    background: rgba($color-dark-deep, .96);
    color: $color-white;
    box-shadow: 0 1px 0 rgba($color-white, .08);
}


.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
*/
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand img {
  width: 4.1rem;
  height: 2rem;
  object-fit: contain;
}

.brand span {
  font-size: 0.85rem;
}

.main-navigation {
  display: none;
}

.main-navigation a {
  padding: 0.65rem 0.2rem;
  text-decoration: none;
  color: #FFFFFF;
}

.main-navigation a:hover,
.main-navigation a.is-active {
  color: #478DCD;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  padding: 0.65rem 0.8rem;
  border-radius: 2rem;
  background: #3973B5;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.83rem;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  order: 3;
  margin-left: 0.25rem;
  border: 0;
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
}

@media (min-width: 850px) {
  .site-header {
    padding: 0.55rem 0;
  }
  .brand img {
    width: 7rem;
    height: 2.7rem;
  }
  .brand span {
    display: none;
  }
  .main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2.2rem);
    flex: 1;
  }
  .menu-toggle {
    display: none;
  }
  .header-phone {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}
@media (max-width: 849px) {
  .main-navigation.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    background: #101112;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.site-footer {
  background: #101112;
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

.brand--footer {
  margin-bottom: 1rem;
}

.brand--footer img {
  width: 8rem;
  height: 3.3rem;
}

.site-footer p, .site-footer a, .site-footer address {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-contact h2 {
  font-size: 1rem;
}

.footer-contact a, .footer-contact address {
  display: flex;
  gap: 0.6rem;
  text-decoration: none;
  font-style: normal;
}

.footer-contact .material-symbols-outlined {
  color: #478DCD;
}

.footer-links p {
  color: #478DCD;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.25rem;
}

.link-muted {
  color: #AEB6BF;
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #AEB6BF;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: start;
  }
}
.hero {
  position: relative;
  margin-top: calc(var(--wave-height, 34px) * -1);
  padding-top: calc(clamp(5rem, 9vw, 8rem) + var(--wave-height, 34px));
  min-height: 720px;
  background: linear-gradient(90deg, rgba(3, 10, 17, 0.94) 0%, rgba(3, 10, 17, 0.74) 35%, rgba(3, 10, 17, 0.15) 66%, rgba(3, 10, 17, 0) 100%), url("/assets/images/home/hero-desktop.png") center center/cover no-repeat;
}

/*
.hero__backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba($color-dark-deep, .98) 0%, rgba($color-dark-deep, .88) 38%, rgba($color-dark-deep, .25) 75%), url('/assets/images/home/hero-desktop.png') center/cover;
}
*/
.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.eyebrow {
  color: #478DCD;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
}

.hero h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.65rem, 8vw, 5.5rem);
}

.hero h1 span {
  color: #478DCD;
}

.hero__services {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero__description {
  max-width: 36rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  font-size: 1.05rem;
}

.rating > span:first-child {
  color: #ffc400;
  letter-spacing: 0.12em;
  font-size: 1.35rem;
}

.rating-note {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

@media (min-width: 850px) {
  .hero__content {
    padding-block: 6rem;
  }
}
.section {
  padding: 4rem 0;
}

.section--dark {
  background: #101112;
  color: #FFFFFF;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2, .split-section h2 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.75);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.reviews-section .section-heading > p:last-child {
  color: rgba(27, 27, 27, 0.72);
}

.review-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  font-size: 1.15rem;
}

.google-mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #FFFFFF;
  color: #4285f4;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(27, 27, 27, 0.15);
}

@media (min-width: 650px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .section {
    padding: 6rem 0;
  }
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.split-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-section > div:last-child p {
  margin: 0 0 1rem;
  color: rgba(27, 27, 27, 0.75);
}

.section-art {
  display: grid;
  place-items: center;
  min-height: 15rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(57, 115, 181, 0.22), rgba(16, 17, 18, 0.15));
}

.section-art span {
  color: #3973B5;
  font-size: 7rem;
}

.convention-section .eyebrow {
  color: #3973B5;
}

@media (min-width: 800px) {
  .split-section {
    grid-template-columns: 1fr 1.2fr;
  }
}
.sector-section a {
  color: #478DCD;
  font-weight: 700;
}

.sector-section .split-section > div:last-child {
  display: flex;
}

.facts {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.facts p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
}

.facts .material-symbols-outlined {
  color: #478DCD;
}

.map-placeholder {
  min-height: 16rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(71, 141, 205, 0.35);
  border-radius: 1rem;
  background: radial-gradient(circle at 50% 45%, rgba(57, 115, 181, 0.38), transparent 28%), repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 19px 20px);
  color: #FFFFFF;
  font-size: 1.25rem;
}

.map-placeholder .material-symbols-outlined {
  color: #478DCD;
  font-size: 3rem;
}

.map-placeholder small {
  color: #AEB6BF;
  font-size: 0.8rem;
}

.phone-cta {
  padding: 2.2rem 0;
  background: #3973B5;
  color: #FFFFFF;
}

.phone-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.phone-cta__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #FFFFFF;
  color: #3973B5;
  font-size: 2rem;
}

.phone-cta__inner p {
  font-size: 0.95rem;
}

.phone-cta__inner a:not(.button) {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  font-weight: 800;
  text-decoration: none;
}

.phone-cta__inner .button {
  margin: 0 0 0 auto;
}

/*# sourceMappingURL=app.css.map */
