@charset "UTF-8";

.leaflet-container .leaflet-control-attribution {display: none!important;}
:root {
  --yellow: #ffcb19;
  --blue: #7d65d5;
  --black-1: #363636;
  --black-2: #1c1b1b;
  --black-3: #121212;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--black-3);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

a {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: var(--yellow);
}

.site-bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.78);
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  padding: 20px 0 10px;
}

.page-content,
.site-footer {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-banner {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.translate-switcher .gt_switcher-popup {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 12px !important;
  line-height: 44px;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  color: var(--white) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}

.translate-switcher .gt_switcher-popup span {
  color: var(--white) !important;
}

.gt_container-unisv1 a.glink span {
  padding-bottom: 5px !important;
  padding-top: 7px !important;
}

.translate-switcher img {
  border-radius: 2px !important;
}

a.glink img {
  border: 1px solid #121212 !important;
  margin-top: -1px !important;
}

.gt_white_content a:first-child {
  border-top: 1px solid #121212 !important;
}

.gt_white_content a {
  border-bottom: 1px solid #121212 !important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO {
  display: none !important;
}

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

.header-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-cta {
  background: var(--yellow);
  color: var(--black-3);
  height: 44px;
  padding: 0 18px;
  line-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-cta:hover {
  color: var(--black-3);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 203, 25, 0.3);
}

.menu-toggle {
  width: auto;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #7d65d5;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  cursor: pointer;
}

.menu-lines span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.menu-toggle .menu-label {
  width: auto;
  height: auto;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 1px;
  text-transform: uppercase;
}

.menu-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 10;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 420px);
  background: var(--yellow);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 20;
  color: var(--black-3);
  box-shadow: var(--shadow);
}

.mobile-menu-inner {
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 34px;
  color: var(--black-3);
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.menu-links a {
  font-size: 28px;
  font-weight: 700;
  color: var(--black-3);
}

.menu-links a.active {
  text-decoration: underline;
}

.menu-social {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.menu-social .linkedin-link,
.footer-social .linkedin-link {
  color: var(--black-3);
  font-size: 18px;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.page-content {
  padding: 30px 0 80px;
}

.hero-section {
  padding: 40px 0 20px;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 20px;
  margin-left: 0px;
}

.hero-tag {
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-404 .error-code {
  font-size: clamp(64px, 12vw, 140px);
  letter-spacing: 4px;
}

.page-404 .cta-404-secondary {
  height: 52px;
  line-height: 52px;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.primary-cta {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
}

.primary-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(125, 101, 213, 0.35);
}

.content-section,
.services-section {
  padding: 40px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 10px;
  color: var(--yellow);
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 0;
}

.content-card {
  background: rgba(18, 18, 18, 0.7);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.content-card-layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.content-card-text {
  flex: 1 1 0;
}

.content-card-media {
  flex: 0 0 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.technical-sheet {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 2px solid #000;
  outline: 4px solid #fff;
  border-radius: 15px;
}

.technical-sheet-wrapper {
  position: relative;
  display: inline-block;
  line-height: 0;
  width: 304px;
  height: 425px;
  align-self: flex-start;
  margin: 0 auto;
}

.technical-sheet-action {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  background: #149d47;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 0;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.accordion-creatools .accordion-item {
  background: rgba(18, 18, 18, 0.35);
  border: 2px solid #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

.accordion-creatools .accordion-item + .accordion-item {
  margin-top: 12px;
}

.accordion-creatools .accordion-button {
  background: var(--yellow);
  color: var(--black-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
}

.accordion-creatools .accordion-button:not(.collapsed) {
  background: var(--yellow);
  color: var(--black-3);
  box-shadow: none;
}

.accordion-creatools .accordion-button:focus {
  box-shadow: none;
}

.accordion-creatools .accordion-button::after {
  filter: brightness(0);
}

.accordion-creatools .accordion-body {
  color: var(--text-muted);
  background: rgba(18, 18, 18, 0.35);
  padding: 16px 18px 18px;
  font-size: 13px;
}

.accordion-creatools .accordion-body i {
  color: var(--yellow);
  margin-right: 8px;
}

.accordion-creatools .accordion-body p {
  margin: 0 0 10px;
}

.services-intro-title {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 12px;
}

.services-intro-text {
  margin: 0 0 12px;
}

.services-grid .project-card {
  height: 100%;
}

.platform-logo {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
  margin: 6px auto 12px;
}

.services-banner {
  margin-bottom: 20px;
}

.services-banner-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.faq-extra-card {
  margin-top: 24px;
}

.faq-extra-title {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 16px;
}

.faq-extra-item h4 {
  color: var(--yellow);
  font-size: 16px;
  margin: 0 0 8px;
}

.faq-extra-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.faq-extra-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 14px 0;
}

.accordion-creatools .accordion-checklist {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 12px;
}

.accordion-creatools .accordion-checklist li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: var(--yellow);
  margin-right: 8px;
}

.modal {
  z-index: 99999;
}

.modal-backdrop {
  z-index: 99998;
}

.technical-modal-dialog {
  max-width: 95vw;
}

.technical-modal-content {
  background: var(--yellow);
  border-radius: 16px;
  border: 2px solid #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  width: fit-content;
  margin: 0 auto;
}

.technical-modal-image {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 2px solid #000;
  outline: 4px solid #fff;
  margin: 0 auto;
}

.technical-modal-close {
  position: absolute;
  top: 10px;
  left: 16px;
  background: transparent;
  border: none;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  cursor: pointer;
  width: auto;
  height: auto;
  opacity: 1;
  background-image: none;
  z-index: 2;
}

.technical-modal-close span {
  color: #121212;
}

.technical-modal-cross {
  font-size: 22px;
  line-height: 1;
}

.technical-modal-label {
  font-size: 12px;
  letter-spacing: 1px;
}

.modal-body {
  padding-top: 56px;
}

.text-justify {
  text-align: justify;
}

.text-justify-italic {
  font-size: 15px;
  font-style: italic;
}

.text-justify-regular {
  font-size: 14px;
  font-style: normal;
}

.highlight-list p {
  margin: 10px 0;
  font-weight: 600;
  color: var(--white);
}

.highlight-list i {
  color: var(--yellow);
  margin-right: 10px;
}

.service-card,
.project-card,
.team-card,
.contact-card {
  background: rgba(18, 18, 18, 0.75);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 100%;
  border: 2px solid #ffffff;
}

.agreement-box {
  background: var(--yellow);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.agreement-box .form-check-input {
  margin-top: 2px;
  margin-left: 8px;
}

.agreement-label {
  font-size: 12px;
  color: var(--black-3);
  margin: 0;
}

.agreement-label a {
  color: var(--black-3);
  text-decoration: underline;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.projects-grid > .col-md-4 {
  display: flex;
}

.service-icon {
  font-size: 32px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.service-card h3,
.project-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--yellow);
}

.project-header {
  background: var(--yellow);
  color: var(--black-3);
  font-weight: 700;
  padding: 16px;
  font-size: 18px;
  border-radius: 16px 16px 0 0;
  margin: -22px -22px 16px;
  text-align: center;
  text-transform: uppercase;
}

.project-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-sections {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-sections h5 {
  margin: 0 0 6px;
}

.project-sections p {
  line-height: 1.35;
  margin: 0 0 10px;
}

.project-sections ul {
  margin: 0;
}

.project-card ul {
  font-size: 14px;
  list-style: none;
  padding-left: 0;
}

.project-card ul i {
  color: var(--yellow) !important;
  margin-right: 5px;
}

.project-card h5 i {
  color: var(--yellow) !important;
  margin-right: 5px;
}

.project-body .project-link {
  margin-top: auto;
}

.reviews-grid .project-body {
  flex: 1;
}

.reviews-grid .review-footer {
  margin-top: auto;
}

.reviews-grid .review-company {
  margin-top: 4px;
}
.section-heading-spaced {
  margin-top: 40px;
}

.review-stars {
  color: var(--yellow);
  font-size: 22px;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
  margin-top: 14px;
  font-size: 14px;
}

.review-company {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: right;
  text-transform: uppercase;
}

.project-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  transform-origin: center center;
}

.project-image-wrapper {
  position: relative;
  display: block;
  width: fit-content;
  margin: 12px auto 16px;
  border: 2px solid #000;
  outline: 4px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}

.project-glass {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: rotate(-13deg) scale(1.1);
  transform-origin: center;
  opacity: 0.15;
}

.project-image-wrapper.in-progress {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.project-image-wrapper.in-progress::after {
  content: "PROCHAINEMENT";
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 220px;
  text-align: center;
  background: #149d47;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 0;
  text-transform: uppercase;
  margin-top: 0px;
  margin-left: 15px;
  z-index: 3;
}

@media (hover: hover) and (pointer: fine) {
  .project-image-wrapper:hover {
    overflow: visible;
    z-index: 5;
  }

  .project-image-wrapper:hover .project-image {
    transform: scale(2.5);
    box-shadow:
      0 0 0 4px #fff,
      0 24px 50px rgba(0, 0, 0, 0.35);
    z-index: 3;
    position: relative;
  }
}

.team-card {
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.team-header {
  background: var(--yellow);
  color: var(--black-3);
  font-weight: 700;
  padding: 16px;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
}

.team-body {
  padding: 22px;
}

.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 0;
  margin-bottom: 0;
}

.team-role {
  font-weight: 600;
  margin-bottom: 0;
}

.team-image-wrapper {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  border: 2px solid #000;
  outline: 4px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}

.team-text {
  text-align: justify;
  margin-top: 12px;
}

.contact-card {
  text-align: center;
}

.contact-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  margin: 0 auto 20px;
  display: block;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-details i {
  color: var(--yellow);
  margin-right: 6px;
}

.map-wrapper {
  margin-top: 24px;
  background: rgba(18, 18, 18, 0.75);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe,
.map-wrapper .leaflet-map {
  width: 100%;
  height: 260px;
  border: 0;
}

.map-link {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--yellow);
  text-align: center;
}

.contact-form {
  background: rgba(18, 18, 18, 0.75);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 600;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
}

.phone-field {
  display: flex;
  gap: 12px;
}

.phone-country {
  width: 100px;
  flex: 0 0 100px;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 22px 16px;
  padding-left: 40px;
}

.phone-number {
  flex: 1 1 auto;
}

.phone-country.flag-ch {
  background-image: url("../images/flags/ch.gif");
}

.phone-country.flag-fr {
  background-image: url("../images/flags/fr.gif");
}

.phone-country.flag-be {
  background-image: url("../images/flags/be.gif");
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-select option {
  color: var(--black-3);
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.captcha-image {
  display: block;
  max-width: 140px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-feedback {
  margin-bottom: 14px;
  font-size: 14px;
}

.form-feedback.is-error {
  color: #ff6b6b;
}

.form-feedback.is-success {
  color: #4cd964;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.site-footer {
  padding: 20px 0 30px;
  text-align: center;
  background: rgb(8 8 8 / 85%);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.privacy-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2f2b41;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-float:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.rgpd-float {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2f2b41;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rgpd-float:hover {
  color: #ffffff;
  transform: translateY(-52%) translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.rgpd-panel {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) scale(0.98);
  width: min(420px, 90vw);
  max-height: 85vh;
  overflow-y: auto;
  background: rgba(18, 18, 18, 0.95);
  border: 2px solid #ffffff;
  border-radius: 18px;
  padding: 20px;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}

.rgpd-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.rgpd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9997;
}

.rgpd-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.rgpd-panel h3 {
  text-align: center;
  color: var(--yellow);
  margin: 10px 0 12px;
}

.rgpd-logo {
  display: block;
  width: 75%;
  max-width: 240px;
  margin: 0 auto 10px;
}

.rgpd-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 12px;
}

.rgpd-text i {
  color: var(--yellow);
  margin-right: 6px;
}

#rgpd-close {
  position: sticky;
  top: 12px;
  margin-left: auto;
  margin-right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: var(--black-3);
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.rgpd-slider-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.rgpd-slider-block label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.rgpd-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 10px 0 16px;
}

.rgpd-actions {
  text-align: center;
}

.rgpd-save-btn {
  background: var(--yellow);
  color: var(--black-3);
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

.conditions-card h3 {
  color: var(--yellow);
  margin: 0 0 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.conditions-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 12px;
}

.conditions-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}

.conditions-list li {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.conditions-list i {
  color: var(--yellow);
  margin-top: 2px;
}

.conditions-mail {
  color: var(--yellow);
}

.rgpd-card h3 {
  color: var(--yellow);
  margin: 18px 0 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.rgpd-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 12px;
}

.rgpd-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}

.rgpd-list li {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.rgpd-list i {
  color: var(--yellow);
  margin-top: 2px;
}

.rgpd-mail {
  color: var(--yellow);
}

.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9996;
}

.legal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.legal-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(760px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  background: rgba(18, 18, 18, 0.95);
  border: 2px solid #ffffff;
  border-radius: 18px;
  padding: 0 24px 24px 24px;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 9997;
}

.rgpd-panel {
  padding: 0 24px 24px 24px;
}

.legal-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.legal-close {
  position: sticky;
  top: 12px;
  margin-left: auto;
  margin-right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: var(--black-3);
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.rgpd-panel::-webkit-scrollbar,
.legal-panel::-webkit-scrollbar {
  width: 8px;
}

.rgpd-panel::-webkit-scrollbar-track,
.legal-panel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.rgpd-panel::-webkit-scrollbar-thumb,
.legal-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.rgpd-panel,
.legal-panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) rgba(0, 0, 0, 0.2);
}

.legal-content h3,
.legal-content h4 {
  color: var(--yellow);
  margin: 16px 0 10px;
  text-transform: uppercase;
  font-size: 18px;
}

.legal-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 12px;
}

.legal-content,
.legal-content *,
.legal-plain-card,
.legal-plain-card * {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none;
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}

.legal-list li {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.legal-list i {
  color: var(--yellow);
  margin-top: 2px;
}

.legal-mail {
  color: var(--yellow);
}

.plain-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.legal-plain-card {
  background: rgba(18, 18, 18, 0.75);
  border: 2px solid #ffffff;
}

.footer-social {
  margin-bottom: 10px;
}

.site-footer .linkedin-link {
  color: var(--yellow);
  font-size: 18px;
}

.footer-visits {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 20px;
}

.footer-copy {
  font-size: 13px;
  color: #fff;
  margin-top: 0px;
  font-weight:400;
}

.privacy-card h2 {
  color: var(--yellow);
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 22px;
}

.privacy-card h2:first-of-type {
  margin-top: 0;
}

.privacy-card h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #ffffff;
}

.privacy-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.privacy-card a {
  color: var(--yellow);
}

.privacy-card h2 + p,
.privacy-card h3 + p {
  margin-top: 0;
}

.privacy-card {
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .logo-banner {
    width: 180px;
  }

  .contact-cta {
    font-size: 14px;
    height: 44px;
    padding: 0 16px;
    line-height: 44px;
  }

  .menu-links a {
    font-size: 24px;
  }

  .menu-toggle .menu-label {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    padding: 0;
  }

  .translate-switcher .gt_switcher-popup span:first-of-type {
    display: none !important;
  }

  .translate-switcher .gt_switcher-popup span:last-of-type {
    display: none !important;
  }

  .translate-switcher .gt_switcher-popup {
    width: 44px;
    padding: 9px !important;
  }
}

@media (max-width: 540px) {
  .page-home .hero-logo {
    display: none;
  }

  .logo-banner {
    content: url("../images/site/logo creatools 20260101.png");
  }

  .hero-section {
    padding: 0 0 20px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-brand {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .logo-link {
    width: 100%;
  }

  .logo-banner {
    width: 100%;
    max-width: none;
  }

  .header-actions {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .page-projets .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .page-team .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-home .services-section .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .content-card-layout {
    flex-direction: column;
  }

  .content-card-media {
    flex: 0 0 auto;
    width: 100%;
    margin-top: 16px;
    justify-content: center;
  }

  .technical-sheet {
    width: 100%;
    height: auto;
  }

  .technical-sheet-action {
    display: block;
  }

  .site-footer {
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-projets .reviews-grid .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 540px) {
  .page-projets .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .whatsapp-float,
  .privacy-float,
  .rgpd-float {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .whatsapp-float {
    font-size: 22px;
  }
  .page-projets .reviews-grid .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .page-home .services-section .col-md-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .page-projets .projects-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100%;
  }

  .page-projets .projects-grid > .col-md-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
  }
}

@media (min-width: 1400px) {
  .page-projets .projects-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .page-home .services-section .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-lead {
    font-size: 16px;
  }

  .phone-field {
    flex-direction: column;
  }

  .phone-country {
    width: 100%;
    flex: 1 1 auto;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 180px) {
  .hero-title {
    font-size: 22px;
  }
}
