/* ==========================================================================
   QUARTIX OFFICIAL COMPLETE DESIGN SYSTEM & STYLESHEET (fr-fr)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700;900&family=Cairo:wght@400;600;700;800&display=swap');

:root {
  --qtx-green: #13ab5b;
  --qtx-green-hover: #0e8746;
  --qtx-green-light: #e8f7ef;
  --qtx-dark-navy: #343a44;
  --qtx-offblack: #1f2121;
  --qtx-gray: #858585;
  --qtx-lightgray: #f4f4f4;
  --qtx-darkgray: #3f4752;
  --qtx-border: #e5e5e5;
  --qtx-red: #cf2e2e;

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-arabic: 'Cairo', sans-serif;
}

[dir="rtl"] {
  --font-heading: 'Cairo', sans-serif;
  --font-body: 'Cairo', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--qtx-offblack);
  background-color: #ffffff;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--qtx-offblack);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--qtx-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--qtx-green-hover);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.qtx-global-green {
  color: var(--qtx-green);
}

.qtx-global-strikethrough {
  text-decoration: line-through;
  color: #94a3b8;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.btn-green {
  background-color: var(--qtx-green);
  color: #ffffff !important;
}

.btn-green:hover {
  background-color: var(--qtx-green-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.btn-white {
  background-color: transparent;
  color: var(--qtx-offblack) !important;
  font-weight: 600;
  text-decoration: underline;
  padding: 14px 20px;
}

.btn-white:hover {
  color: var(--qtx-green) !important;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
}

.btn-dark {
  background-color: var(--qtx-dark-navy);
  color: #ffffff !important;
}

.btn-dark:hover {
  background-color: var(--qtx-offblack);
}

.btn-inline {
  display: inline-block;
}

.badge-pop {
  display: inline-block;
}

/* ==========================================================================
   OFFICIAL QUARTIX 1:1 FOOTER (EXACT MATCH)
   ========================================================================== */
.qtx-official-footer {
  background-color: #2d3748;
  color: #a0aec0;
  padding: 60px 0 30px 0;
  font-family: var(--font-body, 'Inter', sans-serif);
}

.qtx-official-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.1fr 1.1fr 1.3fr;
  gap: 30px;
  margin-bottom: 45px;
}

.footer-col-item h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-heading, sans-serif);
}

.footer-col-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-item ul li a {
  color: #cbd5e1;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.45;
}

.footer-col-item ul li a:hover {
  color: #13ab5b;
}

.footer-col-item .view-more-link {
  display: inline-block;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-item .view-more-link:hover {
  color: #13ab5b;
}

.footer-mid-grid {
  display: grid;
  grid-template-columns: 1.1fr 3.7fr;
  gap: 30px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.footer-newsletter-wrap h4,
.footer-client-wrap h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--font-heading, sans-serif);
}

.footer-newsletter-wrap p {
  color: #cbd5e1;
  font-size: 13.5px;
  margin-bottom: 14px;
}

.newsletter-form-row {
  display: flex;
  gap: 10px;
  max-width: 460px;
}

.newsletter-form-row input {
  flex: 1;
  height: 42px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  color: #1f2121;
}

.newsletter-form-row button {
  background: #13ab5b;
  color: #ffffff;
  border: none;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form-row button:hover {
  background: #0e7d43;
}

.footer-bottom-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  color: #94a3b8;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: #13ab5b;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-mid-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-legal {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================================================
   1. TOP TRUSTPILOT BAR (QUARTIX EXACT CLONE)
   ========================================================================== */
.global-trustpilotbar {
  background-color: #343a44;
  color: #ffffff;
  padding: 8px 0;
  font-family: var(--font-heading);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.trustpilot-inner-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.tp-star-box-green {
  display: flex;
  gap: 2px;
}

.tp-star-box-green i {
  background: #00b67a;
  color: #ffffff;
  padding: 3px 5px;
  border-radius: 2px;
  font-size: 10px;
}

.tp-brand-title {
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

/* ==========================================================================
   2. HEADER & MEGA-MENU (QUARTIX EXACT CLONE)
   ========================================================================== */
header.qtx-header {
  background: #ffffff !important;
  border-bottom: 1px solid #ebebeb;
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  width: 100%;
}

header.qtx-header .container {
  max-width: 100% !important;
  padding: 0 32px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.qtx-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
  width: 100%;
}

.qtx-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qtx-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.qtx-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.qtx-logo .badge-25 {
  font-size: 10px;
  background: #e8f7ef;
  color: var(--qtx-green);
  border: 1px solid rgba(19, 171, 91, 0.35);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.qtx-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.qtx-nav > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
}

.qtx-nav > li > a, .qtx-nav > li > span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--qtx-offblack);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
  padding: 12px 0;
}

.qtx-nav > li:hover > a, .qtx-nav > li:hover > span {
  color: var(--qtx-green);
}

.qtx-nav > li:hover i.fa-chevron-down {
  transform: rotate(180deg);
  color: var(--qtx-green) !important;
}

/* ==========================================================================
   HEADER RIGHT ACTIONS & BUTTONS (EXACT QUARTIX 1:1)
   ========================================================================== */
.qtx-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.qtx-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #13ab5b !important;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.qtx-phone:hover {
  color: #0e7d43 !important;
}

.qtx-country-select {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.qtx-support-link {
  font-family: var(--font-body, sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  color: #1f2121 !important;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.qtx-support-link:hover {
  color: #13ab5b !important;
}

.btn-login-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border: 1.5px solid #13ab5b !important;
  border-radius: 6px;
  color: #13ab5b !important;
  background: transparent !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-login-outline:hover {
  background: #e8f7ee !important;
  border-color: #0e7d43 !important;
  color: #0e7d43 !important;
}

.btn-start-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  background: #13ab5b !important;
  color: #ffffff !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: none !important;
  transition: background 0.2s ease;
}

.btn-start-solid:hover {
  background: #0e7d43 !important;
  color: #ffffff !important;
}

/* ==========================================================================
   MEGA-MENU DROPDOWNS (QUARTIX EXACT CLONE 1:1)
   ========================================================================== */
.qtx-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #ebebeb;
  padding: 22px;
  display: grid;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 99999;
  text-align: left;
}

.qtx-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.qtx-nav > li.open .qtx-dropdown,
.qtx-nav > li:hover .qtx-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.qtx-nav > li.open i.fa-chevron-down,
.qtx-nav > li:hover i.fa-chevron-down {
  transform: rotate(180deg);
  color: var(--qtx-green) !important;
}

.qtx-dropdown.dropdown-wide {
  width: 980px;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 0.95fr;
  left: -60px;
}

.qtx-dropdown.dropdown-medium {
  width: 520px;
  grid-template-columns: 1fr 1fr;
  left: -60px;
}

.qtx-dropdown.dropdown-compact {
  width: 340px;
  grid-template-columns: 1fr;
  left: -20px;
}

/* BADGE NEW IN NAVBAR */
.nav-badge-new {
  display: inline-block;
  background-color: #13ab5b;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 2px;
  vertical-align: 1px;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

/* OUTILS / CALCULATEURS DROPDOWN (EXACT QUARTIX 1:1) */
.qtx-dropdown.dropdown-calculateurs,
.qtx-dropdown.dropdown-outils {
  width: 880px !important;
  display: grid !important;
  grid-template-columns: 320px 1fr !important;
  gap: 24px !important;
  padding: 22px 24px !important;
  left: -220px !important;
  border-radius: 12px !important;
}

.dropdown-outils-section {
  display: flex;
  flex-direction: column;
}

.dropdown-outils-section.section-calculateurs {
  border-right: 1px solid #edf2f7;
  padding-right: 24px;
}

.dropdown-section-heading {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2121;
  font-family: var(--font-heading, sans-serif);
  margin-bottom: 14px;
  letter-spacing: 0.1px;
}

.dropdown-outils-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dropdown-outils-item {
  display: block;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  margin-bottom: 6px;
}

.dropdown-outils-item:hover {
  background: #f8fafc;
  border-color: #edf2f7;
}

.dropdown-outils-item .item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2121;
  font-family: var(--font-heading, sans-serif);
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.dropdown-outils-item .item-title i {
  color: #13ab5b;
  font-size: 13.5px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-outils-item:hover .item-title {
  color: #13ab5b;
}

.dropdown-outils-item .item-desc {
  display: block;
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  font-weight: 400;
  transition: color 0.2s ease;
}

.dropdown-outils-item:hover .item-desc {
  color: #334155;
}

/* MEGA MENU LINKS, TITLES & DESCRIPTIONS */
.qtx-dropdown a {
  text-decoration: none;
  display: block;
}

.qtx-dropdown .menu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: #1f2121;
  font-family: var(--font-heading, sans-serif);
  line-height: 1.3;
  margin-bottom: 5px;
  transition: color 0.2s ease;
}

.qtx-dropdown .menu-title i {
  color: #13ab5b;
  font-size: 14.5px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.qtx-dropdown .menu-desc {
  display: block;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.45;
  font-weight: 400;
  transition: color 0.2s ease;
}

.qtx-dropdown a:hover .menu-title {
  color: #13ab5b;
}

.qtx-dropdown a:hover .menu-desc {
  color: #334155;
}

/* DEVENIR PARTENAIRE DROPDOWN (EXACT QUARTIX 1:1) */
.qtx-dropdown.dropdown-partenaire-exact {
  width: 680px !important;
  display: grid !important;
  grid-template-columns: 1.25fr 1fr !important;
  gap: 20px !important;
  padding: 24px !important;
  left: -180px !important;
  border-radius: 12px !important;
}

.partenaire-promo-card {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.partenaire-promo-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #1f2121;
  margin: 0 0 6px 0;
  font-family: var(--font-heading, sans-serif);
}

.partenaire-promo-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
  margin: 0 0 16px 0;
}

.partenaire-promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.partenaire-promo-list li {
  font-size: 12.5px;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.35;
}

.partenaire-promo-list li i {
  color: #13ab5b;
  font-size: 14px;
  flex-shrink: 0;
}

.partenaire-calc-card-nav {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
}

.partenaire-calc-card-nav .calc-nav-icon {
  font-size: 34px;
  color: #13ab5b;
  margin-bottom: 12px;
}

.partenaire-calc-card-nav h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #1f2121;
  margin: 0 0 6px 0;
  font-family: var(--font-heading, sans-serif);
}

.partenaire-calc-card-nav p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
  margin: 0 0 16px 0;
  max-width: 240px;
}

.partenaire-calc-card-nav .calc-nav-cta {
  font-size: 13.5px;
  font-weight: 700;
  color: #13ab5b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.partenaire-calc-card-nav .calc-nav-cta:hover {
  color: #0e7d43;
  background: rgba(19, 171, 91, 0.08);
}

.partenaire-calc-card-nav .calc-nav-cta i {
  transition: transform 0.2s ease;
}

.partenaire-calc-card-nav .calc-nav-cta:hover i {
  transform: translateX(4px);
}

/* PRICING DROPDOWN (QUARTIX EXACT CLONE) */
.qtx-dropdown.dropdown-pricing {
  width: 580px;
  padding: 22px;
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  left: -120px;
}

.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pricing-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px 14px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.pricing-card-item:hover {
  border-color: #13ab5b;
  box-shadow: 0 4px 15px rgba(19, 171, 91, 0.12);
  transform: translateY(-2px);
}

.pricing-card-item h5 {
  font-size: 15px;
  font-weight: 800;
  color: #1f2121;
  margin: 0 0 6px 0;
  font-family: var(--font-heading, sans-serif);
}

.pricing-card-item p {
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

.pricing-benefits-box {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px 18px;
  border: 1px solid #edf2f7;
}

.pricing-benefits-box h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #13ab5b;
  margin: 0 0 12px 0;
  text-align: center;
  font-family: var(--font-heading, sans-serif);
}

.pricing-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-benefits-list li {
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-benefits-list li i {
  color: #13ab5b;
  font-size: 13px;
}

.pricing-dropdown-bottom-link {
  text-align: center;
  margin-top: 2px;
}

.pricing-dropdown-bottom-link a {
  font-size: 13.5px;
  font-weight: 700;
  color: #13ab5b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

/* PRICING 4-CARDS SECTION (EXACT QUARTIX CLONE) */
.pricing-grid-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-grid-cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid-cards-4 {
    grid-template-columns: 1fr;
  }
}

.pricing-plan-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.pricing-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.pricing-plan-card .badge-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #13ab5b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.pricing-plan-card .plan-topline {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}

.pricing-plan-card .plan-title {
  font-size: 26px;
  font-weight: 800;
  color: #1f2121;
  margin-bottom: 10px;
  font-family: var(--font-heading, sans-serif);
}

.pricing-plan-card .plan-price {
  font-size: 36px;
  font-weight: 800;
  color: #13ab5b;
}

.pricing-plan-card .plan-price-unit {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 22px;
  line-height: 1.4;
}

.pricing-plan-card .btn-plan-cta {
  background: #13ab5b;
  color: #ffffff;
  text-align: center;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
  transition: background 0.2s ease;
}

.pricing-plan-card .btn-plan-cta:hover {
  background: #0e7d43;
}

.pricing-plan-card .plan-divider {
  border: 0;
  height: 1px;
  background: #edf2f7;
  margin: 0 0 20px 0;
}

.pricing-plan-card .plan-list-heading {
  font-size: 13px;
  font-weight: 700;
  color: #1f2121;
  margin-bottom: 14px;
}

.pricing-plan-card .plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-plan-card .plan-features-list li {
  font-size: 13.5px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.35;
}

.pricing-plan-card .plan-features-list li i {
  color: #13ab5b;
  font-size: 15px;
  flex-shrink: 0;
}

/* GREEN CARD (MODE PRIVÉ) */
.pricing-plan-card.green-card {
  background: #47a667;
  background: linear-gradient(180deg, #44a565 0%, #3e9a5d 100%);
  color: #ffffff;
  border: none;
}

.pricing-plan-card.green-card .green-topline {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-plan-card.green-card .green-title {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
}

.pricing-plan-card.green-card .green-sub {
  color: #ffffff;
  font-size: 13.5px;
  margin-top: 14px;
  margin-bottom: 24px;
}

.pricing-plan-card.green-card .white-btn {
  background: #ffffff;
  color: #1f2121;
  font-weight: 700;
}

.pricing-plan-card.green-card .white-btn:hover {
  background: #f1f5f9;
  color: #13ab5b;
}

.pricing-plan-card.green-card .green-divider {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-plan-card.green-card .green-heading {
  color: #ffffff;
}

.pricing-plan-card.green-card .green-list li {
  color: #ffffff;
}

.pricing-plan-card.green-card .green-list li i {
  color: #ffffff;
}

.qtx-dropdown.dropdown-align-right {
  left: auto;
  right: 0;
}

.dropdown-col h5 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
}

.dropdown-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-col ul li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.dropdown-col ul li a:hover {
  background: #f8fafc;
}

.dropdown-col ul li a span.menu-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2121;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-col ul li a span.menu-title i {
  color: #13ab5b;
  font-size: 13px;
}

.dropdown-col ul li a span.menu-desc {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.3;
  margin-top: 3px;
  padding-left: 21px;
  font-weight: 400;
}

.dropdown-col ul li a:hover span.menu-title {
  color: #13ab5b;
}

.qtx-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #13ab5b;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-phone:hover {
  color: #0e8746;
}

.flag-dropdown-mini {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  cursor: pointer;
}

.header-vsep {
  color: #cbd5e1;
  font-size: 14px;
}

.header-support-link {
  color: #1f2121;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-support-link:hover {
  color: #13ab5b;
}

.btn-outline-green {
  border: 1px solid #13ab5b;
  color: #13ab5b;
  background: transparent;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-outline-green:hover {
  background: #13ab5b;
  color: #ffffff;
}

.btn-solid-green {
  background: #13ab5b;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.btn-solid-green:hover {
  background: #0e8746;
}

@media (max-width: 1480px) {
  header.qtx-header .container {
    padding: 0 16px !important;
  }
  .qtx-nav {
    gap: 8px;
  }
  .qtx-nav > li > a, .qtx-nav > li > span {
    font-size: 12.5px;
  }
  .qtx-header-right {
    gap: 8px;
  }
  .header-phone {
    font-size: 13px;
  }
  .header-support-link {
    font-size: 12.5px;
  }
  .btn-outline-green {
    padding: 6px 12px;
    font-size: 12.5px;
  }
  .btn-solid-green {
    padding: 6px 14px;
    font-size: 12.5px;
  }
}

.qtx-nav > li i.fa-chevron-down {
  font-size: 11px;
  color: #13ab5b !important;
  margin-left: 3px;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   3. HERO BLOCK WITH LIST
   ========================================================================== */
.hero-block-with-list-wrapper {
  background: #ffffff;
  padding: 50px 0 70px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hero-block-with-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1.title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--qtx-offblack);
  margin-bottom: 18px;
  line-height: 1.18;
}

.hero-content p.subtitle {
  font-size: 19px;
  color: #4b5563;
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-bullet-list {
  list-style: none;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-bullet-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--qtx-offblack);
}

.hero-bullet-list .tickicon {
  width: 24px;
  height: 24px;
  background-color: var(--qtx-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--qtx-gray);
}

.hero-image-box {
  position: relative;
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hero-image-box img {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-image-badge-floating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #ebebeb;
}

.hero-image-badge-floating .badge-green-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--qtx-green-light);
  color: var(--qtx-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ==========================================================================
   4. STATS COUNTUPS (EXACT QUARTIX 1:1)
   ========================================================================== */
.qtx-section-countups {
  background: #ffffff;
  color: var(--qtx-offblack);
  padding: 55px 0 50px 0;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  width: 100%;
}

.qtx-section-countups .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  align-items: flex-start;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.stat-item p.title {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 6px;
  font-family: var(--font-heading, sans-serif);
}

.stat-item .statistic {
  font-family: var(--font-heading, sans-serif);
  font-size: 52px;
  font-weight: 800;
  color: #1f2121;
  line-height: 1.15;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-item .statistic span.post {
  color: #13ab5b;
  font-weight: 800;
  margin-left: 2px;
}

.stat-item p.text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.45;
  max-width: 250px;
  margin: 0 auto;
}

/* ==========================================================================
   5. EXPANDABLE FEATURES ACCORDION
   ========================================================================== */
.qtx-section-expfeatures {
  padding: 80px 0;
  background: #ffffff;
}

.qtx-section-expfeatures .widthtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.qtx-section-expfeatures .widthtitle h2 {
  font-size: 34px;
  font-weight: 800;
}

.expfeatures-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.features-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-acc-item {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #ffffff;
}

.feature-acc-item.open {
  border-color: var(--qtx-green);
  box-shadow: 0 6px 20px rgba(19, 171, 91, 0.1);
  background: #fafafa;
}

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

.feature-acc-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--qtx-offblack);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.feature-acc-item.open .feature-acc-number {
  background: var(--qtx-green);
  color: #ffffff;
}

.feature-acc-header h3 {
  font-size: 18px;
  font-weight: 700;
  flex-grow: 1;
}

.feature-acc-desc {
  padding-top: 12px;
  padding-left: 50px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  display: none;
}

.feature-acc-item.open .feature-acc-desc {
  display: block;
}

.expfeatures-image {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid #e5e5e5;
}

/* ==========================================================================
   6. PLANS ET FORFAITS (PRICING TILES - QUARTIX 100% EXACT)
   ========================================================================== */
.qtx-section-plans {
  background: #f4f4f4;
  padding: 80px 0;
}

.qtx-section-plans .plans-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px auto;
}

.qtx-section-plans .plans-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.qtx-section-plans .plans-header p {
  color: #4b5563;
  font-size: 17px;
}

.pricing-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-tile-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-tile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pricing-tile-card .pill-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #13ab5b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tile-card .top-line {
  font-size: 13px;
  color: var(--qtx-gray);
  font-weight: 600;
  margin-bottom: 6px;
  min-height: 20px;
}

.pricing-tile-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing-tile-card .btn {
  width: 100%;
  margin-bottom: 20px;
}

.pricing-tile-card hr {
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 18px;
}

.pricing-tile-card .listtitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-features-qtx {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.pricing-features-qtx li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--qtx-offblack);
}

.pricing-features-qtx li i {
  color: var(--qtx-green);
  margin-top: 3px;
  font-size: 14px;
}

/* Green Pricing Card (Mode Privé) */
.pricing-tile-card.green-card {
  background: #13ab5b;
  color: #ffffff;
  border-color: #13ab5b;
}

.pricing-tile-card.green-card .top-line {
  color: #e8f7ef;
}

.pricing-tile-card.green-card h3 {
  color: #ffffff;
}

.pricing-tile-card.green-card hr {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.pricing-tile-card.green-card .listtitle {
  color: #ffffff;
}

.pricing-tile-card.green-card .pricing-features-qtx li {
  color: #ffffff;
}

.pricing-tile-card.green-card .pricing-features-qtx li i {
  color: #ffffff;
}

.pricing-tile-card.green-card .btn-white {
  background: #ffffff;
  color: #13ab5b !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.pricing-tile-card.green-card .btn-white:hover {
  background: #f0fdf4;
}

/* ==========================================================================
   CLIENT LOGOS GRID SECTION
   ========================================================================== */
.qtx-section-logos {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.qtx-section-logos h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--qtx-offblack);
  margin-bottom: 36px;
}

.logos-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.25s ease;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-item span.logo-text-fallback {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: #475569;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   7. MODULES COMPLÉMENTAIRES (ADD-ONS)
   ========================================================================== */
.qtx-section-addons {
  padding: 80px 0;
  background: #ffffff;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.addon-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.addon-card:hover {
  border-color: var(--qtx-green);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.addon-card .addon-top {
  font-size: 12px;
  color: var(--qtx-gray);
  font-weight: 600;
  min-height: 32px;
  margin-bottom: 6px;
}

.addon-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.addon-card .btn {
  width: 100%;
  margin-bottom: 16px;
}

/* ==========================================================================
   8. CLIENT REVIEWS & TRUSTPILOT / GOOGLE SLIDER
   ========================================================================== */
.qtx-section-reviews {
  padding: 80px 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.reviews-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 20px 0;
}

.reviews-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.qtx-review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-height: 260px;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .qtx-review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .qtx-review-card {
    flex: 0 0 100%;
  }
}

.qtx-review-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--qtx-offblack);
  margin-bottom: 12px;
}

.qtx-review-card p.quote {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.qtx-review-card p.author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--qtx-offblack);
  text-align: right;
  margin-top: auto;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.reviews-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.reviews-dots span:hover {
  background: #cbd5e1;
  transform: scale(1.15);
}

.reviews-dots span.active {
  background: #13ab5b;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(1);
}

/* ==========================================================================
   9. PRENEZ LE CONTRÔLE DE VOTRE FLOTTE (DEEP DIVE BLOCKS)
   ========================================================================== */
.qtx-section-deepdive {
  padding: 80px 0;
  background: #ffffff;
}

.deepdive-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}

.deepdive-block:last-child {
  border-bottom: none;
}

.deepdive-block.flipped {
  grid-template-columns: 1fr 1.1fr;
}

.deepdive-block.flipped .deepdive-text {
  order: 1;
}

.deepdive-block.flipped .deepdive-image {
  order: 2;
}

.deepdive-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--qtx-offblack);
  line-height: 1.25;
}

.deepdive-text p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

.deepdive-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.deepdive-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.deepdive-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--qtx-offblack);
  line-height: 1.6;
}

.deepdive-text ul li i {
  color: var(--qtx-green);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.deepdive-text ul li div {
  flex: 1;
}

.deepdive-image img {
  border-radius: 12px;
  box-shadow: none;
  width: 100%;
}

/* ==========================================================================
   10. CTA BANNER ("Conçu pour chaque équipe de votre entreprise")
   ========================================================================== */
/* ==========================================================================
   10. CTA BANNER ("Conçu pour chaque équipe de votre entreprise" - QUARTIX 1:1)
   ========================================================================== */
.qtx-section-cta-v2 {
  background: #343a44;
  color: #ffffff;
  padding: 70px 0 0 0;
  text-align: center;
  overflow: hidden;
}

.qtx-section-cta-v2 .container {
  max-width: 980px;
  margin: 0 auto;
}

.qtx-section-cta-v2 h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.qtx-section-cta-v2 p.subtext {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 28px auto;
}

.qtx-section-cta-v2 .btn-wrap {
  margin-bottom: 40px;
}

.qtx-cta-graphic-container {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
}

.laptop-screen-frame {
  background: #000000;
  border-radius: 18px 18px 0 0;
  border: 12px solid #1a1e24;
  border-bottom: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  height: 290px;
}

.laptop-screen-frame img.sat-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.team-badge.left-badge {
  left: -48px;
  top: 100px;
}

.team-badge.right-badge {
  right: -48px;
  top: 130px;
}

.team-badge .avatar-row {
  position: relative;
  margin-bottom: 6px;
}

.team-badge .avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #13ab5b;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: #ffffff;
}

.team-badge .avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Green pointer triangles pointing at the laptop screen bezel */
.team-badge.left-badge .avatar-row::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #13ab5b;
}

.team-badge.right-badge .avatar-row::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #13ab5b;
}

.team-badge .pill-title {
  background: #13ab5b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
}

/* ==========================================================================
   10. TWO-COLUMN INDUSTRIES (SERVICES & TRANSPORT - QUARTIX EXACT 1:1)
   ========================================================================== */
.qtx-section-industries {
  padding: 80px 0;
  background: #ffffff;
}

.industries-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.industry-box {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 36px 32px;
  border: none;
}

.industry-box h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--qtx-offblack);
  margin-bottom: 14px;
}

.industry-box p.subtitle {
  font-size: 15px;
  color: #1f2121;
  font-weight: 600;
  margin-bottom: 20px;
}

.industry-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #1f2121;
}

.industry-box ul li {
  display: flex !important;
  align-items: flex-start !important;
  line-height: 1.55;
}

.industry-box ul li::before {
  content: "•";
  color: #1f2121;
  font-size: 22px;
  line-height: 1;
  margin-right: 12px;
  font-weight: bold;
}

/* ==========================================================================
   11. CASE STUDIES CAROUSEL (TÉMOIGNAGES DE CLIENTS - QUARTIX EXACT 1:1)
   ========================================================================== */
.qtx-section-case-studies {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.case-studies-header-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
  width: 100% !important;
}

.case-studies-header-row h2 {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--qtx-offblack) !important;
  margin: 0 !important;
}

.btn-voir-tout {
  border: 1px solid #13ab5b !important;
  color: #13ab5b !important;
  background: #ffffff !important;
  padding: 8px 22px !important;
  border-radius: 8px !important;
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.btn-voir-tout:hover {
  background: #13ab5b !important;
  color: #ffffff !important;
}

.case-studies-subtext {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 860px;
  margin-bottom: 36px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.case-study-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.case-study-card .img-thumb {
  height: 180px;
  background: #f1f5f9;
  overflow: hidden;
}

.case-study-card .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card .content-box {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-study-card .content-box h4 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #13ab5b !important;
  margin-bottom: 12px !important;
}

.case-study-card .content-box p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

.case-study-card .content-box p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

/* ==========================================================================
   12. FAQ ACCORDION (QUARTIX EXACT 1:1)
   ========================================================================== */
.qtx-section-faq {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.qtx-section-faq h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1f2121;
  margin-bottom: 30px;
}

.faq-qtx-list {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e5e5e5;
}

.faq-qtx-item {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}

.faq-qtx-item .faq-title {
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1f2121;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
}

.faq-qtx-item .faq-title .faq-chevron {
  color: #13ab5b;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.faq-qtx-item:hover .faq-title {
  color: #13ab5b;
}

.faq-qtx-item .faq-desc {
  padding: 0 0 20px 26px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  display: none;
}

.faq-qtx-item.open .faq-desc {
  display: block;
}

.faq-qtx-item.open .faq-title {
  color: #13ab5b;
}

.faq-qtx-item.open .faq-chevron {
  transform: rotate(90deg);
}

/* ==========================================================================
   13. OFFICIAL HOMEPAGE CONTACT FORM BLOCK & CLIENT LOGOS (QUARTIX EXACT 1:1)
   ========================================================================== */
.homepageformblock {
  background: #ffffff;
  padding: 90px 0;
  border-top: 1px solid #ebebeb;
}

.homepageformblock-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: flex-start;
}

.homepageformblock .content h2.title {
  font-size: 36px;
  font-weight: 800;
  color: #1f2121;
  margin-bottom: 24px;
  line-height: 1.25;
}

.homepageformblock .content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.homepageformblock .content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1f2121;
}

.homepageformblock .content ul li i {
  color: #13ab5b;
  font-size: 20px;
}

.client-logos-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.client-logos-showcase .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  min-height: 60px;
}

.homepageformblock .formouter {
  background: #ffffff;
  border: 2px solid #13ab5b;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(19, 171, 91, 0.06);
}

.homepageformblock .formtitle {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: #1f2121;
  line-height: 1.35;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.input-wrapper label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.input-wrapper input, .input-wrapper select {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  background: #ffffff;
  width: 100%;
}

.input-wrapper input:focus, .input-wrapper select:focus {
  border-color: #13ab5b;
  box-shadow: 0 0 0 3px rgba(19, 171, 91, 0.2);
}

/* ==========================================================================
   14. OFFICIAL FOOTER (PAGE-FOOTER-NEW)
   ========================================================================== */
footer.page-footer-new {
  background: #292929;
  color: #ffffff;
  padding: 70px 0 30px 0;
}

.footer-linklists {
  display: grid;
  grid-template-columns: repeat(6, 1fr) 1.5fr;
  gap: 20px;
  margin-bottom: 50px;
}

.linklist h4.label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.linklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.linklist ul li a {
  color: #cbd5e1;
  font-size: 13px;
}

.linklist ul li a:hover {
  color: #ffffff;
}

.linklist a.viewall {
  color: var(--qtx-green);
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-top: 8px;
}

.newsletterform-col h4.label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletterform-col p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.newsletter-mini-wrap {
  display: flex;
  gap: 6px;
}

.newsletter-mini-wrap input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #475569;
  background: #1e293b;
  color: #ffffff;
  font-size: 13px;
  outline: none;
}

.footer-legal-bottom {
  border-top: 1px solid #404040;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-legal-bottom a {
  color: #94a3b8;
  margin-left: 18px;
}

.footer-legal-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1200px) {
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .case-studies-grid, .reviews-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-linklists {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-block-with-list, .expfeatures-wrap, .deepdive-block, .homepageformblock-wrap, .industries-2col-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .qtx-nav, .header-phone, .header-login {
    display: none;
  }
  .addons-grid, .case-studies-grid, .reviews-grid-cards, .stats-grid, .pricing-tiles-grid, .footer-linklists {
    grid-template-columns: 1fr;
  }
  .footer-legal-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
