/* =========================================================
   CONTACT PAGE — logo-only navbar, 1250px container
   + SECTION CONTACT NEW — ticket #15068
   Refonte du hero de la page de demande de démo
   ========================================================= */
#section-contact-new.section-contact-new {
  --scn-grey: #f4f4f4;
  --scn-orange: #FF441B;
  --scn-text: #1a1a1a;
  --scn-text-muted: #6b7280;
  --scn-border: #e5e7eb;

  position: relative;
  border-bottom: 1px solid #f4f4f4;
  background: linear-gradient(to right, var(--scn-grey) 0%, var(--scn-grey) 50%, #ffffff 50%, #ffffff 100%);
  color: var(--scn-text);
  font-family: inherit;
  padding: 0;
  overflow: hidden;
}

#section-contact-new .section-contact-new__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: var(--v5-max, 1250px);
  margin: 0 auto;
  padding: 0 var(--v5-g, 15px);
}

#section-contact-new .section-contact-new__left,
#section-contact-new .section-contact-new__right {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
}
#section-contact-new .section-contact-new__left {
  padding: 50px 0 80px;
}
#section-contact-new .section-contact-new__right {
  padding: 50px 0 80px 50px;
}

#section-contact-new .section-contact-new__left-content,
#section-contact-new .section-contact-new__right-content {
  width: 100%;
  max-width: 560px;
}

/* ---------- Experts badge ---------- */
#section-contact-new .section-contact-new__experts-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px 5px 6px;
  border: 1px solid rgba(255, 68, 27, 0.35);
  border-radius: 999px;
  background: rgba(255, 68, 27, 0.05);
  margin-bottom: 32px;
}

#section-contact-new .section-contact-new__avatars {
  position: relative;
  display: flex;
  align-items: center;
}

#section-contact-new .section-contact-new__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -8px;
  background: #e5e7eb;
}

#section-contact-new .section-contact-new__avatar:first-child {
  margin-left: 0;
}

#section-contact-new .section-contact-new__experts-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--scn-orange);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---------- Title ---------- */
#section-contact-new .section-contact-new__title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--scn-text);
  margin: 0 0 32px 0;
}

#section-contact-new .section-contact-new__title-accent {
  background: linear-gradient(90deg, #FF441B 0%, #FF8436 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Benefits list ---------- */
#section-contact-new .section-contact-new__benefits {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

#section-contact-new .section-contact-new__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--scn-text);
}

#section-contact-new .section-contact-new__check-wrapper {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid #22c55e;
}

#section-contact-new .section-contact-new__check {
  color: #22c55e;
}

#section-contact-new .section-contact-new__benefits strong {
  font-weight: 800;
}

/* ---------- Rating ---------- */
#section-contact-new .section-contact-new__clients-count {
  margin: 28px 0 4px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--scn-text-muted);
}

#section-contact-new .section-contact-new__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

#section-contact-new .section-contact-new__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b301;
}

#section-contact-new .section-contact-new__rating-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--scn-text);
}

/* ---------- Partner logos ---------- */
#section-contact-new .section-contact-new__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  width: 100%;
}

#section-contact-new .section-contact-new__logo {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* ---------- Tabs ---------- */
#section-contact-new .section-contact-new__tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--scn-border);
  margin-bottom: 28px;
  margin-top: -1rem;
}

#section-contact-new .section-contact-new__tab {
  background: none;
  border: 0;
  outline: none;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--scn-text-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}

#section-contact-new .section-contact-new__tab:hover {
  color: var(--scn-text);
  text-decoration: none;
}

#section-contact-new .section-contact-new__tab:focus {
  outline: none;
  box-shadow: none;
}

#section-contact-new .section-contact-new__tab:focus-visible {
  outline: 2px solid rgba(255, 68, 27, 0.4);
  outline-offset: 4px;
  border-radius: 2px;
}

#section-contact-new .section-contact-new__tab.active {
  color: var(--scn-orange);
}

#section-contact-new .section-contact-new__tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--scn-orange);
}

/* ---------- Tab panes ---------- */
#section-contact-new .section-contact-new__tab-content {
  display: grid;
}

#section-contact-new .section-contact-new__tab-pane {
  grid-area: 1 / 1;
  visibility: hidden;
}

#section-contact-new .section-contact-new__tab-pane.active {
  visibility: visible;
}

/* ---------- Form title ---------- */
#section-contact-new .section-contact-new__form-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--scn-text);
  margin: 0 0 8px 0;
}

#section-contact-new .section-contact-new__form-title-accent {
  background: linear-gradient(90deg, #FF441B 0%, #FF8436 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#section-contact-new .section-contact-new__form-subtitle {
  font-size: 1rem !important;
  color: var(--scn-text-muted);
  margin: 0 0 24px 0;
}

/* ---------- Form grid ---------- */
#section-contact-new .section-contact-new__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

#section-contact-new .section-contact-new__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#section-contact-new .section-contact-new__field--full {
  grid-column: 1 / -1;
}

#section-contact-new .section-contact-new__double-input {
  display: flex;
  gap: 8px;
}

#section-contact-new .section-contact-new__double-input>* {
  flex: 1 1 0;
  min-width: 0;
}

#section-contact-new .section-contact-new__form-error {
  grid-column: 1 / -1;
  margin: 0 0 1rem 0;
  padding: 10px 14px;
  background: rgba(255, 68, 27, 0.08);
  border: 1px solid rgba(255, 68, 27, 0.2);
  border-radius: 8px;
  color: var(--scn-orange);
  font-size: 1rem !important;
  font-weight: 600;
}

#section-contact-new .section-contact-new__legal {
  font-size: 12px !important;
  color: var(--scn-text-muted);
  line-height: 1.4;
  margin: 4px 0 0 0;
}

#section-contact-new .section-contact-new__legal a {
  color: var(--scn-text-muted);
  text-decoration: underline;
}

#section-contact-new .section-contact-new__label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--scn-text);
  margin: 0;
}

#section-contact-new .section-contact-new__required {
  color: var(--scn-orange);
}

#section-contact-new .section-contact-new__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--scn-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--scn-text);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#section-contact-new .section-contact-new__input::placeholder {
  color: #9ca3af;
}

#section-contact-new .section-contact-new__input:focus {
  outline: none;
  border-color: var(--scn-orange);
  box-shadow: 0 0 0 3px rgba(255, 68, 27, 0.1);
}

#section-contact-new .section-contact-new__input--error {
  border-color: var(--scn-orange);
  box-shadow: 0 0 0 3px rgba(255, 68, 27, 0.1);
}

#section-contact-new .section-contact-new__size-options--error .section-contact-new__size-option span {
  border-color: var(--scn-orange);
}

/* ---------- Size options ---------- */
#section-contact-new .section-contact-new__size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#section-contact-new .section-contact-new__size-option {
  flex: 1 1 0;
  min-width: 70px;
  position: relative;
  cursor: pointer;
  margin: 0;
}

#section-contact-new .section-contact-new__size-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#section-contact-new .section-contact-new__size-option span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  border: 1px solid var(--scn-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--scn-text);
  background: #ffffff;
  transition: border-color 0.2s, background 0.2s;
}

#section-contact-new .section-contact-new__size-option span small {
  font-size: 10px;
  font-weight: 500;
  color: var(--scn-text-muted);
  margin-top: 2px;
}

#section-contact-new .section-contact-new__size-option:hover span {
  border-color: var(--scn-orange);
}

#section-contact-new .section-contact-new__size-option input:checked+span {
  border-color: var(--scn-orange);
  background: rgba(255, 68, 27, 0.08);
  color: var(--scn-orange);
}

/* ---------- Add message link ---------- */
#section-contact-new .section-contact-new__add-message {
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--scn-orange);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  align-self: flex-start;
}

#section-contact-new .section-contact-new__add-message:hover,
#section-contact-new .section-contact-new__add-message:focus {
  color: #e63a13;
  text-decoration: none;
  outline: none;
}

#section-contact-new .section-contact-new__textarea {
  resize: vertical;
  min-height: 96px;
  font-family: inherit;
}

/* ---------- Submit button ---------- */
#section-contact-new .section-contact-new__submit,
#section-contact-new .section-contact-new__call-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--scn-orange);
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

#section-contact-new .section-contact-new__submit:hover:not(:disabled),
#section-contact-new .section-contact-new__call-cta:hover:not(:disabled) {
  background: #e63a13;
  transform: translateY(-1px);
}

#section-contact-new .section-contact-new__submit:disabled,
#section-contact-new .section-contact-new__call-cta:disabled {
  cursor: default;
  opacity: 0.9;
}

#section-contact-new .section-contact-new__submit--link,
#section-contact-new .section-contact-new__call-cta {
  text-decoration: none;
  margin-top: 16px;
}

#section-contact-new .section-contact-new__submit--link:hover,
#section-contact-new .section-contact-new__call-cta:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ---------- Call tab ---------- */
#section-contact-new .section-contact-new__call-hours {
  font-size: 1rem !important;
  color: var(--scn-text-muted);
  margin: 1rem 0 20px;
}

#section-contact-new .section-contact-new__call-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--scn-border);
  border-radius: 12px;
  margin-bottom: 24px;
}

#section-contact-new .section-contact-new__call-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 68, 27, 0.12);
  color: var(--scn-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

#section-contact-new .section-contact-new__call-team {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#section-contact-new .section-contact-new__call-team strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--scn-text);
}

#section-contact-new .section-contact-new__call-team span {
  font-size: 13px;
  color: var(--scn-text-muted);
}

#section-contact-new .section-contact-new__call-footer {
  padding-top: 20px;
  border-top: 1px solid var(--scn-border);
}

#section-contact-new .section-contact-new__call-footer-text {
  font-size: 1rem !important;
  color: var(--scn-text-muted);
  margin: 0 0 8px 0;
}

#section-contact-new .section-contact-new__call-footer-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--scn-orange);
  text-decoration: none;
}

#section-contact-new .section-contact-new__call-footer-link:hover {
  color: #e63a13;
  text-decoration: underline;
}

/* ---------- Trust row ---------- */
#section-contact-new .section-contact-new__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 22px;
  padding: 0;
  margin: 20px 0 12px 0;
}

#section-contact-new .section-contact-new__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--scn-text-muted);
}

/* ---------- Callback line ---------- */
#section-contact-new .section-contact-new__callback {
  text-align: center;
  font-size: 1rem !important;
  color: var(--scn-text-muted);
  margin: 0;
}

#section-contact-new .section-contact-new__callback a {
  color: var(--scn-text);
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Responsive — section contact new ---------- */
@media (max-width: 991px) {
  #section-contact-new.section-contact-new {
    background: #ffffff;
  }

  #section-contact-new .section-contact-new__inner {
    flex-direction: column;
  }

  #section-contact-new .section-contact-new__left {
    background: var(--scn-grey);
  }

  #section-contact-new .section-contact-new__right {
    background: #ffffff;
  }

  #section-contact-new .section-contact-new__left {
    flex: 1 1 100%;
    padding: 48px 0 64px;
  }
  #section-contact-new .section-contact-new__right {
    flex: 1 1 100%;
    padding: 48px 0 64px 0;
  }

  #section-contact-new .section-contact-new__left-content,
  #section-contact-new .section-contact-new__right-content {
    max-width: 100%;
    margin: 0 auto;
  }

  #section-contact-new .section-contact-new__title {
    font-size: 36px;
  }

  #section-contact-new .section-contact-new__form-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  #section-contact-new .section-contact-new__left {
    padding: 40px 0 56px;
  }
  #section-contact-new .section-contact-new__right {
    padding: 40px 0 56px 0;
  }

  #section-contact-new .section-contact-new__title {
    font-size: 30px;
  }

  #section-contact-new .section-contact-new__form {
    grid-template-columns: 1fr;
  }

  #section-contact-new .section-contact-new__tabs {
    gap: 20px;
  }

  #section-contact-new .section-contact-new__size-options {
    gap: 6px;
  }

  #section-contact-new .section-contact-new__size-option {
    min-width: 56px;
  }

  #section-contact-new .section-contact-new__size-option span {
    padding: 8px 2px;
    font-size: 13px;
  }

  #section-contact-new .section-contact-new__logos {
    gap: 16px;
  }
}

/* Hide the reCAPTCHA v3 floating badge (Google requires the reCAPTCHA
   attribution text to be visible in the form legal notice instead). */
.grecaptcha-badge {
  display: none !important;
}
