:root {
    --primary-color: #0053a0;
    --primary-dark: #004480;
    --secondary-color: #00a77f;
    --secondary-dark: #008c69;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --border-radius: 8px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-light {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--light-color);
}
.btn-light:hover {
    background-color: #fff;
    color: var(--primary-dark);
}
.btn-outline-light {
    color: var(--light-color);
    border-color: var(--light-color);
}
.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.sig-section {
    padding: 5rem 0;
}
.sig-section-header {
    margin-bottom: 3rem;
}
.sig-section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sig-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.sig-section-description {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
}
.bg-light {
    background-color: #f8fafc;
}

.sig-badge {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sig-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.sig-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}
.sig-card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sig-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}
.sig-card-icon-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline-width: 2px;
    outline-color: var(--light-gray);
    border-width: 1px;
    border-style: solid;
    border-color: var(--light-gray);
    overflow: hidden;
    margin: 0 auto 1rem;
}

.sig-card-icon-container img {
    height: 100px;
    width: auto;
}

.highlight {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}
.highlight h2 {
    color: #0053a0;
    font-size: 1.75rem;
    margin-bottom: 20px;
}
.highlight ul {
    margin-bottom: 0;
}
.highlight li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.highlight em {
    color: #5cbf8c;
    margin-right: 10px;
    font-size: 1.1rem;
}

.accent-text {
    color: inherit;
    transition: color 2s ease-in-out;
    background-color: transparent;
    padding: 0;
}
.accent-text.highlight {
    color: #5cbf8c !important;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.pt-column-content {
    padding: 20px;
    list-style-type: none;
}
.pt-column-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    background-color: transparent;
}
.pt-column-content li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #5cbf8c;
    background: none;
}
.pt-column-content .tooltip-container {
    border-bottom: none;
    background: transparent;
}
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: help;
    border-bottom: 1px dotted #5cbf8c;
}
.tooltip-content {
    position: absolute;
    bottom: 130%;
    left: 0;
    transform: translateY(-10px);
    background-color: #fff;
    color: #333;
    padding: 15px;
    border-radius: 8px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    width: 280px;
    max-width: 90vw;
    box-sizing: border-box;
    font-size: 14px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(92, 191, 140, 0.2);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
    border-left: 4px solid #5cbf8c;
    pointer-events: none;
}
.tooltip-container:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cta-button {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.primary-bg {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}
.primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.primary-bg:hover {
    background-color: var(--secondary-dark);
}
.primary-outline:hover {
    background-color: var(--primary-color);
    color: white;
}
.featured {
    border: 2px solid #e9b109;
    position: relative;
}
.featured::before {
    content: 'Populaire';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e9b109;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-bottom-left-radius: 8px;
}
.quantity-selector {
    margin-bottom: 1rem;
}
.price-info {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}
.total-price {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.promotion-code {
    margin-bottom: 1rem;
}
.sig-feature-list {
  list-style-position: inside;
  padding-left: 2.5em;
  margin-left: 1em;
}
.volume-pricing li {
    margin-bottom: 0.5rem;
}
.pricing-table {
    padding: 4rem 0;
    background-color: #fffc;
}
.pricing-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}
.pricing-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.amount {
    font-size: 2.5rem;
    font-weight: 700;
}
.period {
    font-size: 0.9rem;
    opacity: 0.8;
}
.pricing-options {
    padding: 1.5rem;
}
.option {
    margin-bottom: 1.5rem;
}
.option h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.option p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}
.option-divider {
    margin: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
}
.pricing-detail {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}


  .sig-clients-section {
    /* Pour l'intégration Sitefinity, background-color via variable */
    background: var(--light-color, #f8fafc);
  }
  .sig-clients-logos {
    border: 1.5px solid var(--light-gray,#e2e8f0);
    box-shadow: 0 4px 24px 0 rgba(0,83,160,0.06), 0 1.5px 7px 0 rgba(92,191,140,0.07);
  }
  .sig-client-logo {
    opacity: 0.92;
    filter: grayscale(0.4);
    transition: filter 0.3s, transform 0.3s, opacity 0.3s;
    max-height: 60px;
    object-fit: contain;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
  }
  .sig-client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 2px 8px 0 rgba(0,83,160,0.08);
    background: #f4fafd;
  }
  @media (max-width: 767.98px) {
    .sig-clients-logos { padding: 1.5rem 0.5rem; }
    .sig-client-logo { max-height: 44px; }
  }





/* --- Backgrounds différenciés pour sections à cards Sigmund --- */
.sig-section-bg-blue {
  background: #eaf2fa; /* bleu très pâle, harmonieux avec #0053a0 */
}
.sig-section-bg-green {
  background: #eafaf5; /* vert très pâle, harmonieux avec #5cbf8c */
}
.sig-section-bg-clouds {
  background: #f5f8fa; /* clouds, très doux */
}
.sig-section-bg-gradient {
  background: linear-gradient(135deg, #eaf2fa 0%, #eafaf5 100%);
}
.sig-section-bg-pale {
  background: #f8fafc; /* neutre, moderne */
}

/* Accentuation de l’ombre sur les cards pour sections colorées */
.sig-section-bg-blue .sig-card,
.sig-section-bg-green .sig-card,
.sig-section-bg-clouds .sig-card,
.sig-section-bg-gradient .sig-card {
  box-shadow: 0 10px 32px -6px rgba(0,83,160,0.10), 0 1.5px 7px 0 rgba(92,191,140,0.09);
}

/* --- Effet scroll image card Sigmund --- */
.test-card-image {
  transition: transform 2s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.test-card-image.scrolled {
  transform: translateY(-18px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(0,83,160,0.07);
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .test-card-image.scrolled {
    transform: translateY(-10px) scale(1.025);
  }
}
@media (max-width: 575.98px) {
  .test-card-image.scrolled {
    transform: translateY(-5px) scale(1.01);
  }
}

/* --- Boutons Sigmund harmonisés --- */

/* --- Image Hero Sigmund --- */
.fa-chevron-down:before {
    content: none !important;
    display: none !important;
}
.sig-hero-image-anim {
  background: #fff;
  border: 6px solid #5cbf8c;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0,83,160,0.07);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.sig-hero-image-anim:hover, .sig-hero-image-anim:focus {
  transform: scale(1.045);
  box-shadow: 0 16px 48px 0 rgba(92,191,140,0.18), 0 8px 32px 0 rgba(0,83,160,0.09);
}

.sig-btn {
  background: var(--primary-color);
  color: #fff;
  border-radius: 2rem;
  padding: 0.85rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 3px 16px 0 rgba(0,83,160,0.07);
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.sig-btn:hover, .sig-btn:focus {
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(92,191,140,0.13);
}
.sig-btn-outline {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 2rem;
  padding: 0.85rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 3px 16px 0 rgba(0,83,160,0.07);
  transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.sig-btn-outline:hover, .sig-btn-outline:focus {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
  box-shadow: 0 6px 24px 0 rgba(92,191,140,0.13);
}

/* --- Témoignages UX --- */
.testimonial-card {
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,83,160,0.07), 0 1.5px 7px 0 rgba(92,191,140,0.08);
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
  border: 1.5px solid #e2e8f0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 12px 32px 0 rgba(0,83,160,0.12), 0 2px 8px 0 rgba(92,191,140,0.13);
  border-color: #5cbf8c;
}
.testimonial-quote {
  color: #5cbf8c;
}
.testimonial-text {
  font-size: 1.1rem;
  color: #34495e;
  font-style: italic;
  position: relative;
  margin-left: 8px;
}
.sig-icon-above-card {
  top: -38px;
  left: -28px;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: #ecf0f1; /* clouds */
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,83,160,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
}
.sig-icon-above-card .sig-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.sig-test-icon-large {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sig-test-icon-medium {
  width: 70px;
  max-width: 100%;
  height: auto;
  display: block;
}
.testimonial-author {
  margin-top: auto;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,83,160,0.07);
}
.testimonial-author-name {
  font-size: 1.07rem;
  color: #0053a0;
}
.testimonial-author-role {
  color: #64748b;
}
@media (max-width: 991.98px) {
  .testimonial-card { min-height: 280px; }
}
@media (max-width: 767.98px) {
  .testimonial-card { min-height: 220px; }
}

*/
@media (max-width: 767.98px) {
  .testimonial-card { min-height: 220px; */
*/

