/* ============================================================
   GEM-CAR — Custom Styles
   /templates/shaper_helixultimate/css/gemcar/styles.css
   ============================================================ */

/* -- VARIABLES ----------------------------------------------- */
:root {
  --gc-navy:       #2f539d;
  --gc-navy-dark:  #1c1a6e;
  --gc-navy-deep:  #110f52;
  --gc-red:        #f40000;
  --gc-red-dark:   #c20000;
  --gc-blue:       #3b85ca;
  --gc-blue-light: #5fa3e0;
  --gc-white:      #ffffff;
  --gc-off-white:  #f0f2f8;
  --gc-text-muted: #a0a8c0;
  --gc-dark-bg:    #0d0c2e;
  --gc-card-bg:    rgba(255,255,255,0.04);
  --gc-card-border:rgba(59,133,202,0.18);

  --gc-grad-hero:    linear-gradient(135deg, #0d0c2e 0%, #1c1a6e 45%, #0d0c2e 100%);
  --gc-grad-cta:     linear-gradient(135deg, #2f539d 0%, #3b85ca 100%);
  --gc-grad-red:     linear-gradient(135deg, #f40000 0%, #c20000 100%);
  --gc-grad-section: linear-gradient(180deg, #0d0c2e 0%, #110f52 50%, #0d0c2e 100%);

  --gc-ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --gc-radius:     12px;
  --gc-radius-lg:  20px;
}

/* -- OVERRIDES BOOTSTRAP ------------------------------------ */
@media (min-width: 1200px) {
  .h2, h2 {
    font-size: 3rem;
  }
}

/* -- NOTES TEMPORAIRES ------------------------------------ */

.gc-hubspot-note.orange {
  background-color: #ffa500;
  color: #fff;
  font-weight: bold;
  font-size: large;
}

/* -- BASE ----------------------------------------------------- */
body {
  background-color: var(--gc-dark-bg) !important;
  color: var(--gc-white) !important;
}

/* -- HEADER --------------------------------------------------- */
.sp-header {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59,133,202,0.15) !important;
  transition: background 0.4s ease;
}

/* -- NAVIGATION ----------------------------------------------- */
.sp-megamenu-parent > li > a {
  font-size: 0.85rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
/* Cacher le Homepage */
nav a.nav-hide,
.offcanvas-menu a.nav-hide {
  display: none !important;
}
/* Aligneement du menu à droite */
#sp-menu > div:nth-child(1) {
  float: right;
}
.header-modules {
  margin-left: 0;
}
.menu-with-offcanvas {
  margin-right: -46px;
}
@supports not (-moz-appearance: none) {
  .menu-with-offcanvas {
    margin-right: -54px;
  }
}

/* -- MASQUER HAMBURGER SUR DESKTOP ---------------------------- */
@media (min-width: 992px) {
  #offcanvas-toggler {
    display: none !important;
  }
}

/* -- NAVIGATION CTA BUTTON ------------------------------------ */
.sp-megamenu-parent > li > a.nav-cta-demo,
#sp-header a.nav-cta-demo {
  background: linear-gradient(135deg, #f40000 0%, #c20000 100%) !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  margin: auto 10px auto 10px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
#sp-header a.nav-cta-demo:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

/* -- NAVIGATION CLOUD LOGIN BUTTON ---------------------------- */
.sp-megamenu-parent > li > a.nav-cloud-login,
#sp-header a.nav-cloud-login {
  background: linear-gradient(135deg, #2f539d 0%, #3b85ca 100%) !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  margin: auto 10px auto 0 !important;311
  border-radius: 6px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
#sp-header a.nav-cloud-login:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

/* -- NAVIGATION LANGUAGE BUTTON ------------------------------- */
.sp-megamenu-parent > li > a.nav-langage,
#sp-header a.nav-langage {
  background: transparent !important;
  color: #5fa3e0 !important;
  padding: 6px 14px !important;
  margin: auto 0 !important;
  border-radius: 6px !important;
  border: 1px solid rgba(59,133,202,0.5) !important;
  font-weight: 700 !important;
  line-height: normal !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s !important;
}
#sp-header a.nav-langage:hover {
  background: rgba(59,133,202,0.12) !important;
  color: #ffffff !important;
  border-color: rgba(59,133,202,0.8) !important;
  transform: translateY(-1px) !important;
}

/* -- BOUTONS GLOBAUX ------------------------------------------ */
.gc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.gc-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.gc-btn-primary {
  background: var(--gc-grad-cta);
  color: #fff !important;
}
.gc-btn-red {
  background: var(--gc-grad-red);
  color: #fff !important;
}
.gc-btn-outline {
  background: transparent;
  color: var(--gc-white) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}
.gc-btn-outline:hover {
  border-color: rgba(255,255,255,0.7) !important;
}
form .gc-btn {
  font-size: 1.3rem;
}

/* -- UTILITAIRES ---------------------------------------------- */
.gc-eyebrow {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gc-blue);
  margin-bottom: 12px;
}
.gc-gradient-text {
  background: var(--gc-grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gc-gradient-text-red {
  background: var(--gc-grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gc-gradient-text-white {
  background: var(--gc-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* -- SECTION DIVIDERS ----------------------------------------- */
.gc-glow-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59,133,202,0.15) 20%,
    rgba(59,133,202,0.5) 50%,
    rgba(59,133,202,0.15) 80%,
    transparent 100%
  );
  margin: 0;
  position: relative;
}
.gc-glow-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59,133,202,0.6),
    transparent
  );
  border-radius: 50%;
  filter: blur(3px);
}
.gc-section-top {
  border-top: 1px solid rgba(59,133,202,0.12);
  box-shadow: inset 0 1px 0 rgba(59,133,202,0.06);
}

/* -- SCROLL REVEAL -------------------------------------------- */
.gc-reveal {
  opacity: 0;
  transition: opacity 0.85s var(--gc-ease-expo),
              transform 0.85s var(--gc-ease-expo);
  will-change: opacity, transform;
}
.gc-reveal.from-up    { transform: translateY(52px); }
.gc-reveal.from-left  { transform: translateX(-52px); }
.gc-reveal.from-right { transform: translateX(52px); }
.gc-reveal.from-scale { transform: scale(0.92); }
.gc-reveal.revealed   { opacity: 1; transform: none; }

.gc-reveal.d1 { transition-delay: 0.06s; }
.gc-reveal.d2 { transition-delay: 0.14s; }
.gc-reveal.d3 { transition-delay: 0.22s; }
.gc-reveal.d4 { transition-delay: 0.30s; }

/* -- FOOTER --------------------------------------------------- */
#sp-footer {
  border-top: 1px solid rgba(59,133,202,0.1) !important;
}

/* -- HERO ----------------------------------------------------- */
.gc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,133,202,0.12);
  border: 1px solid rgba(59,133,202,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gc-blue-light);
}
.sp-page-builder .hero-section h1,
#sp-main-body h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--gc-white);
}
.gc-hero-lead {
  font-size: 1.3rem;
  color: var(--gc-text-muted);
  line-height: 1.4;
  max-width: 550px;
}
.gc-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* -- HERO CONTENT SPACING ------------------------------------- */
.sppb-addon-raw-html {
  padding: 0 56px;
}
.gc-hero-badge {
  margin-bottom: 24px;
}
#sp-main-body h1 {
  margin-bottom: 24px;
}
.gc-hero-lead {
  margin-bottom: 36px;
}

/* -- HERO COLUMN VERTICAL ALIGN ------------------------------- */
#home .sppb-row {
  align-items: center;
}
#home.sppb-section {
  min-height: 680px;
  display: flex;
  align-items: center;
}

/* -- HERO MOCKUP FRAME ---------------------------------------- */
.gc-hero-mockup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px 20px 20px;
}
.gc-mockup-frame {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(59,133,202,0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5),
              0 0 0 1px rgba(59,133,202,0.1);
  width: 100%;
  max-width: 690px;
}
.gc-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(59,133,202,0.15);
}
.gc-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.gc-mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gc-text-muted);
  letter-spacing: 0.05em;
  margin-left: 6px;
}
.gc-mockup-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* -- HERO AMBIENT ANIMATIONS ---------------------------------- */
#home {
  position: relative;
  overflow: hidden;
}
#home::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,83,157,0.6) 0%, transparent 65%);
  animation: gc-orb-pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
#home::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,0,0,0.4) 0%, transparent 65%);
  animation: gc-orb-pulse 10s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}
@keyframes gc-orb-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1;   }
}

/* S'assurer que le contenu reste au-dessus */
#home .sppb-container-inner {
  position: relative;
  width: 100%;
  z-index: 2;
}

/* -- PHOTO STRIP ---------------------------------------------- */
.gc-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
  overflow: hidden;
}
.gc-photo-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gc-photo-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform 0.5s var(--gc-ease-expo);
  filter: brightness(0.7);
}
.gc-photo-panel:hover .gc-photo-panel-img {
  transform: scale(1.05);
  filter: brightness(0.5);
}
.gc-photo-panel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  transition: background 0.3s;
}
.gc-photo-panel:hover .gc-photo-panel-overlay {
  background: linear-gradient(to top, rgba(13,12,46,0.85) 0%, rgba(13,12,46,0.3) 100%);
}
.gc-photo-panel-label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.gc-photo-panel-zoom {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, transform 0.2s;
}
.gc-photo-panel:hover .gc-photo-panel-zoom {
  color: var(--gc-blue-light);
  transform: scale(1.2);
}

/* -- LIGHTBOX ------------------------------------------------- */
.gc-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999 !important;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.gc-lightbox-overlay.active {
  display: flex;
}
.gc-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.gc-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  border: 1px solid rgba(59,133,202,0.2);
}
.gc-lightbox-caption {
  color: var(--gc-text-muted);
  font-size: 0.85rem;
  margin-top: 14px;
  letter-spacing: 0.05em;
}
.gc-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}
.gc-lightbox-close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

/* -- INTRO ---------------------------------------------------- */
.gc-lead {
  font-size: 1.1rem;
  color: var(--gc-text-muted);
  line-height: 1.4;
  margin-top: 16px;
  max-width: 100%;
}

/* -- STAT CARDS ----------------------------------------------- */
.gc-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gc-stat-card {
  background: var(--gc-card-bg);
  border: 1px solid var(--gc-card-border);
  border-radius: var(--gc-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s;
}
.gc-stat-card:hover {
  border-color: rgba(59,133,202,0.4);
}
.gc-stat-card--wide {
  grid-column: span 2;
}
.gc-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gc-white);
  line-height: 1;
}
.gc-stat-num--lg {
  font-size: 2.8rem;
  margin-bottom: 4px;
}
.gc-stat-desc {
  font-size: 1.1rem;
  color: var(--gc-text-muted);
  line-height: 1.4;
}

/* -- V14 / CLOUD SECTIONS ------------------------------------ */
.gc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.gc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--gc-text-muted);
  line-height: 1.4;
}
.gc-feature-item strong {
  color: var(--gc-white);
}
.gc-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gc-grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.gc-feature-icon svg {
  width: 13px;
  height: 13px;
  fill: #fff;
}
.gc-reassurance {
  background: rgba(47,83,157,0.12);
  border: 1px solid rgba(47,83,157,0.3);
  border-left: 3px solid var(--gc-blue);
  border-radius: var(--gc-radius);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--gc-text-muted);
  line-height: 1.4;
}
.gc-btn-ghost {
  background: transparent;
  color: var(--gc-text-muted) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.gc-btn-ghost:hover {
  color: var(--gc-white) !important;
  border-color: rgba(255,255,255,0.4) !important;
}

/* -- PLATFORM CARD ------------------------------------------- */
.gc-platform-card {
  background: var(--gc-card-bg);
  border: 1px solid var(--gc-card-border);
  border-radius: var(--gc-radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.gc-platform-card:hover {
  border-color: rgba(59,133,202,0.4);
}
.gc-platform-card-header {
  margin-bottom: 20px;
}
.gc-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.gc-platform-badge--desktop {
  background: rgba(59,133,202,0.15);
  color: var(--gc-blue-light);
  border: 1px solid rgba(59,133,202,0.3);
}
.gc-platform-badge--cloud {
  background: rgba(244,0,0,0.12);
  color: #ff6b6b;
  border: 1px solid rgba(244,0,0,0.25);
}
.gc-platform-card h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gc-white);
  margin-bottom: 4px;
}
.gc-platform-subtitle {
  font-size: 1.1rem;
  color: var(--gc-text-muted);
}
.gc-platform-divider {
  height: 1px;
  background: var(--gc-card-border);
  margin: 20px 0;
}
.gc-mini-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gc-mini-feature {
  font-size: 1.1rem;
  color: var(--gc-text-muted);
  padding-left: 30px;
  position: relative;
}
.gc-mini-feature::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gc-blue);
  font-size: 1.1rem;
}
.gc-platform-note {
  font-size: 1.1rem;
  color: rgba(160,168,192,0.6);
  font-style: italic;
  text-align: center;
}

/* -- WHY GEM-CAR --------------------------------------------- */
.gc-text-center {
  text-align: center;
}
.gc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gc-why-card {
  background: var(--gc-card-bg);
  border: 1px solid var(--gc-card-border);
  border-radius: var(--gc-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.gc-why-card:hover {
  border-color: rgba(59,133,202,0.4);
  transform: translateY(-3px);
}
.gc-why-card--wide {
  grid-column: span 2;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.gc-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gc-grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gc-why-icon--red {
  background: var(--gc-grad-red);
}
.gc-why-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.gc-why-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gc-white);
}
.gc-why-card p {
  font-size: 1.1rem;
  color: var(--gc-text-muted);
  line-height: 1.4;
  margin-bottom: 0px;
}

/* -- SUPPORT -------------------------------------------------- */
.gc-contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.gc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.gc-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(59,133,202,0.12);
  border: 1px solid rgba(59,133,202,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gc-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gc-blue);
}
.gc-contact-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gc-text-muted);
  margin-bottom: 4px;
}
.gc-contact-value {
  font-size: 1.4rem;
  color: var(--gc-white);
  font-weight: 500;
}

/* -- FAQ ------------------------------------------------------ */
.gc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#support .faq-title {
  font-size: 1.60rem;
}
.gc-faq-item {
  border: 1px solid var(--gc-card-border);
  border-radius: var(--gc-radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.gc-faq-item:hover {
  border-color: rgba(59,133,202,0.35);
}
.gc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--gc-card-bg);
  border: none;
  color: var(--gc-white);
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.gc-faq-q:hover {
  background: rgba(255,255,255,0.06);
}
.gc-faq-chevron {
  width: 20px;
  height: 20px;
  fill: var(--gc-blue);
  flex-shrink: 0;
  transition: transform 0.3s var(--gc-ease-expo);
}
.gc-faq-item.open .gc-faq-chevron {
  transform: rotate(180deg);
}
.gc-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1.1rem;
  color: var(--gc-text-muted);
  line-height: 1.4;
  background: rgba(255,255,255,0.02);
  transition: max-height 0.4s var(--gc-ease-expo),
              padding 0.3s ease;
}
.gc-faq-item.open .gc-faq-a {
  max-height: 300px;
  padding: 16px 20px;
}

/* -- DEMO SECTION -------------------------------------------- */
.gc-demo-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.gc-demo-inner .gc-lead {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.gc-demo-form-placeholder {
    margin-top: 40px;
}
.gc-hubspot-note {
    background: rgba(59,133,202,0.08);
    border: 1px dashed rgba(59,133,202,0.35);
    border-radius: var(--gc-radius);
    padding: 24px 32px;
    font-size: 0.9rem;
    color: var(--gc-text-muted);
    font-style: italic;
    text-align: center;
}

/* -- DEMO FORM ----------------------------------------------- */
.gc-demo-form {
  text-align: left;
  background: rgba(41,56,123,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--gc-radius);
  padding: 32px;
  margin-top: 32px;
}
.gc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.gc-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gc-form-field label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gc-text-muted);
}
.gc-form-field input,
.gc-form-field select,
.gc-form-field textarea {
  background: rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--gc-white) !important;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gc-form-field input:focus,
.gc-form-field select:focus,
.gc-form-field textarea:focus {
  border-color: var(--gc-blue);
  background: rgba(255,255,255,0.11);
}
.gc-form-field input::placeholder,
.gc-form-field textarea::placeholder {
  color: rgba(160,168,192,0.65);
}
.gc-form-field select option {
  background: var(--gc-dark-bg);
  color: var(--gc-white);
}
.gc-form-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* -- HUBSPOT FORM STYLING ------------------------------------ */

/* Conteneur principal */
.gc-contact-form-hubspot,
.gc-demo-form-hubspot {
  margin-top: 0 !important;
}
.hs-form-frame,
.hs-form-frame iframe {
  width: 100% !important;
  border: none !important;
}
/* Wrapper du formulaire */
.gc-contact-form-hubspot .hs-form-frame,
.gc-demo-form-hubspot .hs-form-frame {
  background: rgba(41,56,123,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--gc-radius);
  /*padding: 32px;*/
  /*margin-top: 32px;*/
  text-align: left;
}
    .gc-demo-form-hubspot .hs-form-frame {
      margin-top: 40px;
    }

/* -- RETOUCHES RESPONSIVE DESIGN ----------------------------- */

/* -- Navigation ---------------------------------------------- */
.sticky-header-placeholder {
  height: 0px;
}
@media (max-width: 575px) {
  #sp-header {
    height: 68px;
  }
  #sp-header .logo {
    height: 68px;
  }
}
@media (max-width: 991px) {
  #sp-header {
    height: 68px;
  }
  #sp-header .logo {
    height: 68px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1099px) {
  /* Padding des boutons CTA */
  .sp-megamenu-parent > li > a.nav-cta-demo,
  #sp-header a.nav-cta-demo {
    padding: 8px 10px !important;
  }
  .sp-megamenu-parent > li > a.nav-cloud-login,
  #sp-header a.nav-cloud-login {
    padding: 8px 10px !important;
  }
  .sp-megamenu-parent > li > a.nav-langage,
  #sp-header a.nav-langage {
    padding: 6px 10px !important;
  }
  /* Taille de police globale du menu */
  .sp-megamenu-parent > li > a {
    font-size: 0.70rem !important;
  }
  /* Padding des items du menu */
  .sp-megamenu-parent > li > a,
  .sp-megamenu-parent > li span {
    padding: 0 6px;
  }
  /* -- TEXTES COURTS POUR LES ITEMS DE MENU ------------------ */
  /* Masquer le texte original */
  #sp-header a.nav-software,
  #sp-header a.nav-cloud-item,
  #sp-header a.nav-why-item {
    font-size: 0 !important;
  }
  /* Styles communs aux textes de remplacement */
  #sp-header a.nav-software::after,
  #sp-header a.nav-cloud-item::after,
  #sp-header a.nav-why-item::after {
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  /* Version française */
  html[lang="fr-ca"] #sp-header a.nav-software::after    { content: "Logiciel"; }
  html[lang="fr-ca"] #sp-header a.nav-cloud-item::after  { content: "Infonuagique"; }
  html[lang="fr-ca"] #sp-header a.nav-why-item::after    { content: "Pourquoi?";  }
  /* Version anglaise */
  html[lang="en-ca"] #sp-header a.nav-software::after    { content: "Software (V14)"; }
  html[lang="en-ca"] #sp-header a.nav-cloud-item::after  { content: "Cloud (V16)"; }
  html[lang="en-ca"] #sp-header a.nav-why-item::after    { content: "Why GEM-CAR"; }
}
@media only screen and (min-width: 1100px) and (max-width: 1199px) {
  /* Padding des boutons CTA */
  .sp-megamenu-parent > li > a.nav-cta-demo,
  #sp-header a.nav-cta-demo {
    padding: 8px 10px !important;
  }
  .sp-megamenu-parent > li > a.nav-cloud-login,
  #sp-header a.nav-cloud-login {
    padding: 8px 10px !important;
  }
  .sp-megamenu-parent > li > a.nav-langage,
  #sp-header a.nav-langage {
    padding: 6px 10px !important;
  }
  /* Taille de police globale du menu */
  .sp-megamenu-parent > li > a {
    font-size: 0.80rem !important;
  }
  /* Padding des items du menu */
  .sp-megamenu-parent > li > a,
  .sp-megamenu-parent > li span {
    padding: 0 8px;
  }
  /* -- TEXTES COURTS POUR LES ITEMS DE MENU ------------------ */
  /* Masquer le texte original */
  #sp-header a.nav-software,
  #sp-header a.nav-cloud-item,
  #sp-header a.nav-why-item {
    font-size: 0 !important;
  }
  /* Styles communs aux textes de remplacement */
  #sp-header a.nav-software::after,
  #sp-header a.nav-cloud-item::after,
  #sp-header a.nav-why-item::after {
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  /* Version française */
  html[lang="fr-ca"] #sp-header a.nav-software::after    { content: "Logiciel"; }
  html[lang="fr-ca"] #sp-header a.nav-cloud-item::after  { content: "Infonuagique"; }
  html[lang="fr-ca"] #sp-header a.nav-why-item::after    { content: "Pourquoi?";  }
  /* Version anglaise */
  html[lang="en-ca"] #sp-header a.nav-software::after    { content: "Software (V14)"; }
  html[lang="en-ca"] #sp-header a.nav-cloud-item::after  { content: "Cloud (V16)"; }
  html[lang="en-ca"] #sp-header a.nav-why-item::after    { content: "Why GEM-CAR"; }
}
@media only screen and (min-width: 1200px) and (max-width: 1349px) {
  /* Padding des boutons CTA */
  .sp-megamenu-parent > li > a.nav-cta-demo,
  #sp-header a.nav-cta-demo {
    padding: 8px 14px !important;
  }
  .sp-megamenu-parent > li > a.nav-cloud-login,
  #sp-header a.nav-cloud-login {
    padding: 8px 14px !important;
  }
  .sp-megamenu-parent > li > a.nav-langage,
  #sp-header a.nav-langage {
    padding: 6px 12px !important;
  }
  /* Taille de police globale du menu */
  .sp-megamenu-parent > li > a {
    font-size: 0.78rem !important;
  }
  /* Padding des items du menu */
  .sp-megamenu-parent > li > a,
  .sp-megamenu-parent > li span {
    padding: 0 10px;
  }
  /* -- TEXTES COURTS POUR LES ITEMS DE MENU ------------------ */
  #sp-header a.nav-software,
  #sp-header a.nav-cloud-item,
  #sp-header a.nav-why-item {
  /* Masquer le texte original */
    font-size: 0 !important;
  }
  #sp-header a.nav-software::after,
  #sp-header a.nav-cloud-item::after,
  #sp-header a.nav-why-item::after {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  /* Version française */
  html[lang="fr-ca"] #sp-header a.nav-software::after   { content: "Logiciel"; }
  html[lang="fr-ca"] #sp-header a.nav-cloud-item::after { content: "Infonuagique"; }
  html[lang="fr-ca"] #sp-header a.nav-why-item::after   { content: "Pourquoi?"; }
  /* Version anglaise */
  html[lang="en-ca"] #sp-header a.nav-software::after   { content: "Software (V14)"; }
  html[lang="en-ca"] #sp-header a.nav-cloud-item::after { content: "Cloud (V16)"; }
  html[lang="en-ca"] #sp-header a.nav-why-item::after   { content: "Why GEM-CAR"; }
}

@media only screen and (min-width: 1350px) and (max-width: 1447px) {
  /* Padding des boutons CTA */
  .sp-megamenu-parent > li > a.nav-cta-demo,
  #sp-header a.nav-cta-demo {
    padding: 8px 14px !important;
  }
  .sp-megamenu-parent > li > a.nav-cloud-login,
  #sp-header a.nav-cloud-login {
    padding: 8px 14px !important;
  }
  .sp-megamenu-parent > li > a.nav-langage,
  #sp-header a.nav-langage {
    padding: 6px 12px !important;
  }
  /* Taille de police globale du menu */
  .sp-megamenu-parent > li > a {
    font-size: 0.88rem !important;
  }
  /* Padding des items du menu */
  .sp-megamenu-parent > li > a,
  .sp-megamenu-parent > li span {
    padding: 0 10px;
  }
  /* -- TEXTES COURTS POUR LES ITEMS DE MENU ------------------ */
  #sp-header a.nav-software,
  #sp-header a.nav-cloud-item,
  #sp-header a.nav-why-item {
  /* Masquer le texte original */
    font-size: 0 !important;
  }
  #sp-header a.nav-software::after,
  #sp-header a.nav-cloud-item::after,
  #sp-header a.nav-why-item::after {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  /* Version française */
  html[lang="fr-ca"] #sp-header a.nav-software::after   { content: "Logiciel (V14)"; }
  html[lang="fr-ca"] #sp-header a.nav-cloud-item::after { content: "Infonuagique (V16)"; }
  html[lang="fr-ca"] #sp-header a.nav-why-item::after   { content: "Pourquoi?"; }
  /* Version anglaise */
  html[lang="en-ca"] #sp-header a.nav-software::after   { content: "Software (V14)"; }
  html[lang="en-ca"] #sp-header a.nav-cloud-item::after { content: "Cloud (V16)"; }
  html[lang="en-ca"] #sp-header a.nav-why-item::after   { content: "Why GEM-CAR"; }
}

/* -- Section : Hero ---------------------------------------- */
@media only screen and (max-width: 1373px){
  #home.sppb-section {
    min-height: auto !important;
    padding-top: 40px !important;
    padding-bottom: 80px !important;
    align-items: flex-start !important;
  }
  #home .sppb-row {
    align-items: flex-start !important;
  }
  .sp-page-builder .hero-section h1,
  #sp-main-body h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  }
}
@media only screen and (min-width: 1200x) and (max-width: 1373px) {
  .sp-page-builder .page-content #home {
    height: 610px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1373px) {
#home .video-presentation {
    top: 120px;
  }
}
@media only screen and (min-width: 810px) and (max-width: 977px) {
  .sp-page-builder .page-content #home {
    height: 995px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 809px) {
  .sp-page-builder .page-content #home {
    height: 900px;
  }
}
@media only screen and (max-width: 499px){
  .sp-page-builder .page-content #home {
    height: 900px;
  }
}
@media only screen and (max-width: 438px){
  .sp-page-builder .page-content #home {
    height: 1000px;
  }
}

/* -- Section : Photo Stripe -------------------------------- */
@media only screen and (max-width: 515px) {
  .gc-photo-strip {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  .gc-photo-panel {
    height: 200px;
  }
}
@media only screen and (min-width: 516px) and (max-width: 767px) {
  .gc-photo-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    height: 320px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .gc-photo-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    height: 320px;
  }
}
@media only screen and (min-width: 1101px) and (max-width: 1285px) {
  .gc-photo-strip {
    grid-template-columns: repeat(4, 1fr) !important;
    height: 200px;
  }
}

/* -- Section : Intro --------------------------------------- */
@media only screen and (max-width: 678px) {
  .gc-stat-grid {
    grid-template-columns: 1fr !important;
  }
  .gc-stat-card--wide {
    grid-column: span 1 !important;
  }
}

/* -- Section : Why GEM-CAR --------------------------------- */
@media only screen and (max-width: 678px) {
  .gc-why-grid {
    grid-template-columns: 1fr !important;
  }
  .gc-why-card--wide {
    grid-column: span 1 !important;
  }
}

/* -- Section : 2 colonnes ---------------------------------- */
@media only screen and (max-width: 767px) {
  #intro .sppb-column:first-child,
  #software .sppb-column:first-child,
  #cloud .sppb-column:first-child,
  #support .sppb-column:first-child,
  #contact .sppb-column:first-child {
    margin-bottom: 75px !important;
  }
}

/* -- Section : Footer -------------------------------------- */
@media only screen and (max-width: 615px) {
  .gc-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}