/* === HERO === */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666666;
}

.proof-stars {
    color: #fbbf24;
	font-size: 16px;
;
}
@media (max-width: 768px) {
.hero-proof {
        flex-direction: column;
        align-items: flex-start;
                      gap: 8px;
    }
}
.hero-service h1 {
margin-bottom:2rem;
}
/*REASSURANCE ICONE*/
.rister-reassurance-slider {
  padding: 0 20px;
}

.rister-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.rister-reassurance-grid.why {
  gap: 8px;
  max-width: 400px;
}

.rister-reassurance-item {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 20px 0 20px 0;
  transition: all 0.3s ease;
}

.rister-reassurance-item:hover {
  background: rgba(255, 255, 255, 0.9);
}

.rister-reassurance-item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  filter: grayscale(0.2);
}

.rister-reassurance-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  color: var(--rister-dark, #152842);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 16px;
  border: 1px solid rgba(0, 121, 142, 0.15);
  z-index: 2;
}

.rister-reassurance-item:hover .rister-reassurance-overlay,
.rister-reassurance-overlay.active {
  opacity: 1;
  visibility: visible;
}

.rister-reassurance-overlay h4 {
  font-size: 1.1rem !important;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  padding-bottom: 6px;
}

.rister-reassurance-overlay p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.rister-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1;
}

.rister-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 980px) {
  .rister-reassurance-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    scrollbar-width: none;
  }

  .rister-reassurance-grid::-webkit-scrollbar {
    display: none;
  }

  .rister-reassurance-item {
    flex: 0 0 calc(40% - 8px);
    scroll-snap-align: center;
  }

  .rister-reassurance-item img {
    height: 65px;
  }

  .rister-reassurance-overlay h4 {
    font-size: 1rem !important;
  }

  .rister-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .rister-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 121, 142, 0.3);
    transition: all 0.3s ease;
  }

  .rister-dot.active {
    background: #00798e;
    transform: scale(1.2);
  }
}

.rister-reassurance-overlay h4,
.rister-reassurance-overlay p {
  margin: 0;
  padding: 0;
}

.rister-reassurance-row {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/*SECTION POUR QUI*/
.rister-category-switcher {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.category-sidebar {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 20px;
}

.category-button {
    position: relative;
    width: 75%;
    padding-bottom: 12px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.45;
}
.category-button:hover {
    transform: translateX(24px);
    opacity: 0.8;
}
.category-button.active {
    transform: translateX(24px);
    opacity: 1;
}
.category-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e8eaed;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-button.active .category-border {
    width: calc(100% + 24px);
    background: #00798E;
    height: 3px;
}
.category-button:hover .category-border {
    width: calc(100% + 24px);
	background: #00798E;
}
.category-content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.category-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.category-icon svg {
    width: 100%;
    height: 100%;
    stroke: #00798E;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.category-label {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 600;
    color: #152842;
    line-height: 1.3;
}
.content-area {
    flex: 1;
    position: relative;
}

.content-panel {
    display: none;
    animation: fadeIn 0.6s ease;
}

.content-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-panel h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem) !important;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content-panel p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: #4a5568;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .rister-category-switcher {
        gap: 50px;
    }
    .category-sidebar {
        flex: 0 0 40%;
    }
}

@media (max-width: 768px) {
    .rister-category-switcher {
        flex-direction: column;
        gap: 40px;
    }
    .category-sidebar {
        width: 100%;
        padding-right: 0;
    }
    .category-button {
        width: 90%;
    }
    .category-button:hover,
    .category-button.active {
        transform: translateX(16px);
    }
    .category-button.active .category-border,
    .category-button:hover .category-border {
        width: calc(100% + 16px);
    }
    .content-area {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .category-content {
        gap: 12px;
    }
    .category-icon {
        width: 20px;
        height: 20px;
    }
    .category-button {
        width: 100%;
    }
}


/* ========== SECTION EXPLAINER (NOUVEAU) ========== */
/* --- Niveau 1: Bloc central --- */
.explainer-main {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.explainer-main::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #3b93a3;
    border-radius: 2px;
}

.explainer-main h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #1a3a4a !important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.explainer-main h3 svg {
    width: 28px;
    height: 28px;
    stroke: #3b93a3;
    fill: none;
    stroke-width: 1.5;
}

.explainer-main > p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.explainer-grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.explainer-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e0e4e9;
    transition: all 0.25s;
}

.explainer-list-item:hover {
    border-color: #3b93a3;
    transform: translateX(5px);
}

.explainer-list-item svg {
    width: 20px;
    height: 20px;
    stroke: #3b93a3;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.explainer-list-item span {
    font-size: 0.88rem;
    color: #1a3a4a;
    line-height: 1.5;
}

.explainer-note {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #e0e4e9;
}

.explainer-note-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.explainer-note-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.explainer-note p {
    font-size: 0.9rem;
    color: #1a3a4a;
    line-height: 1.6;
    margin: 0;
}

.explainer-note strong {
    color: #3b93a3;
}

.explainer-target {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 3px solid #3b93a3;
}

/* --- Niveau 2: Comparatif --- */
.explainer-compare-header {
    text-align: center;
    margin-bottom: 30px;
}

.explainer-compare-header h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #1a3a4a !important;
    margin-bottom: 8px;
}

.explainer-compare-header p {
    color: #666;
    font-size: 0.9rem;
}

.explainer-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.compare-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e0e4e9;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.compare-card:hover {
    border-color: #3b93a3;
    box-shadow: 0 15px 40px rgba(59, 147, 163, 0.12);
}

.compare-card.sa {
    border-top: 4px solid #3b93a3;
}

.compare-card.sarl {
    border-top: 4px solid #2d7a88;
}

.compare-card-header {
    padding: 25px 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.compare-card-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.compare-card.sa .compare-card-badge {
    background: linear-gradient(135deg, #3b93a3 0%, #2d7a88 100%);
}

.compare-card.sarl .compare-card-badge {
    background: linear-gradient(135deg, #2d7a88 0%, #1a3a4a 100%);
}

.compare-card-title h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 3px;
}

.compare-card-title span {
    font-size: 0.8rem;
    color: #666;
}

.compare-card-content {
    padding: 20px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.compare-card-content > p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.compare-card-roles {
    margin-bottom: 18px;
    flex: 1;
}

.compare-card-roles h5 {
    font-size: 0.75rem important;
    font-weight: 600;
    color: #3b93a3 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.compare-card-roles ul {
    list-style: none;
}

.compare-card-roles li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 0.82rem;
    color: #1a3a4a;
}

.compare-card-roles li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: #3b93a3;
    border-radius: 50%;
}

.compare-card-legal {
    background: #F8FAFE;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.compare-card-legal svg {
    width: 16px;
    height: 16px;
    stroke: #3b93a3;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.compare-card-legal span {
    font-size: 0.78rem;
    color: #1a3a4a;
}

.compare-card-legal strong {
    color: #3b93a3;
}

/* --- Bloc clarification --- */
.explainer-clarification {
    margin-top: 50px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 35px 40px;
    color: #1f2937;
}

.explainer-clarification h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
}

.explainer-clarification h4 svg {
    width: 24px;
    height: 24px;
    stroke: #3b93a3;
    fill: none;
    stroke-width: 2;
}

.explainer-clarification > p {
    color: #4b5563;
    margin-bottom: 20px;
}

.explainer-clarification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.clarification-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.25s;
}

.clarification-item:hover {
    border-color: #3b93a3;
    box-shadow: 0 8px 25px rgba(59, 147, 163, 0.12);
    transform: translateY(-3px);
}

.clarification-item svg {
    width: 24px;
    height: 24px;
    stroke: #3b93a3;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 8px;
}

.clarification-item span {
    font-size: 0.8rem;
    color: #374151;
    display: block;
    line-height: 1.4;
}

.explainer-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #F8FAFE;
    border: 1px solid rgba(59, 147, 163, 0.3);
    border-radius: 10px;
    padding: 18px 22px;
}

.explainer-control svg {
    width: 28px;
    height: 28px;
    stroke: #3b93a3;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.explainer-control p {
    font-size: 0.95rem;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
}

.explainer-control strong {
    color: #3b93a3;
}

/* --- RESPONSIVE: Section Explainer --- */
@media (max-width: 1024px) {
    .explainer-compare {
        grid-template-columns: 1fr;
    }
    
    .explainer-clarification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .explainer-grid-list {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .explainer-main {
        padding: 25px;
    }
    
    .explainer-clarification {
        padding: 25px;
    }
    
    .explainer-clarification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .explainer-grid-list {
        text-align: center;
    }
    
    .explainer-grid-list li {
        justify-content: center;
    }
    
    /* Compare cards slider */
    .explainer-compare {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 15px;
    }
    
    .explainer-compare::-webkit-scrollbar {
        height: 6px;
    }
    
    .explainer-compare::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .explainer-compare::-webkit-scrollbar-thumb {
        background: #3b93a3;
        border-radius: 3px;
    }
    
    .compare-card {
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .compare-card-header,
    .compare-card-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ========== SECTION RISQUES ========== */

/* --- En-tête de section --- */
.risks-section {
    padding: 70px 0;
    background: #fff;
}

.risks-header {
    text-align: center;
    margin-bottom: 50px;
}

.risks-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a3a4a;
    margin-bottom: 15px;
}

/* --- Niveau 1: Risques --- */
.risks-block {
    margin-bottom: 60px;
}

.risks-block-header {
    margin-bottom: 30px;
}

.risks-block-header h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #1a3a4a !important;
    margin-bottom: 12px;
}

.risks-block-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 800px;
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.risk-card {
    background: #fff;
    border: 1px solid #e0e4e9;
    border-radius: 14px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.risk-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
}

.risk-card:hover {
    border-color: #dc2626;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    transform: translateY(-5px);
}

.risk-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.risk-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #dc2626;
    fill: none;
    stroke-width: 1.5;
}

.risk-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 10px;
}

.risk-card p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
}

.risks-warning {
    padding: 0px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.risks-warning svg {
    width: 22px;
    height: 22px;
    stroke: #d97706;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.risks-warning p {
    font-size: 0.88rem;
    color: #92400e;
    margin: 0;
    line-height: 1.5;
}

/* --- Niveau 2: La réponse RISTER --- */
.rister-solution-header h3 {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 8px;
}

.rister-solution-header > p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.solution-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #e0e4e9;
    transition: all 0.3s;
}

.solution-card:hover {
    border-color: #3b93a3;
    box-shadow: 0 8px 25px rgba(59, 147, 163, 0.12);
    transform: translateY(-3px);
}

.solution-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b93a3 0%, #2d7a88 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 8px;
}

.solution-card-content p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
	display: flex;
    flex-direction: column;
    flex: 1;
}

.solution-result {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3b93a3;
    background: #e8f4f6;
    padding: 5px 12px;
    border-radius: 5px;
    margin-top: auto;
}

/* --- RESPONSIVE: Section Risques --- */
@media (max-width: 1024px) {
    .services-grid,
    .audience-grid,
    .rister-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Risks slider horizontal */
    .risks-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 15px;
    }
    
    .risks-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .risks-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .risks-grid::-webkit-scrollbar-thumb {
        background: #3b93a3;
        border-radius: 3px;
    }
    
    .risk-card, .solution-card {
        max-width: 250px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}


/* ========== SECTION POURQUOI RISTER ========== */

.trust-section {
    padding: 60px 0;
    background: #fff;
}

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

.trust-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 15px;
}

.trust-content > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e4e9;
}

.trust-stat {
    text-align: center;
}

.trust-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b93a3;
}

.trust-stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-top: 3px;
	line-height: 1.5;
}

.trust-image {
    display: grid;
    gap: 16px;
}
.trust-image img {
    width: 400px;
    border-radius: 16px;
	margin: 0 auto;
}

/* --- RESPONSIVE: Section Pourquoi Rister --- */
@media (max-width: 991px) {
    .hero-grid,
    .trust-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .innovation-visual {
        order: -1;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .proof-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .os-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/*Carroussel carte*/
.rister-reasons {
padding-bottom: 60px;
padding-left: max(0px, (100% - 1280px) / 2);
}

.rister-container {
max-width: 1200px;
padding-right: 16px;
}

.rister-carousel-wrapper {
position: relative;
padding-bottom: 20px;
}

.rister-carousel {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 24px;
padding: 0 0 32px 0;
cursor: grab;
scroll-behavior: smooth;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
touch-action: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}

.rister-carousel::-webkit-scrollbar {
display: none;
}

.rister-carousel.is-dragging {
cursor: grabbing;
}

.rister-card {
flex: 0 0 30%;
scroll-snap-align: start;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
border: solid 1px #ccc;
box-shadow: 0 2px 8px rgba(10, 37, 58, 0.08);
}

.rister-card-image img {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
object-fit: cover;
display: block;
}

.rister-card-title {
margin: 20px 20px 12px;
color: #0a253a;
font-weight: 700;
line-height: 1.4;
}

.rister-card-text {
margin: 0 20px 20px;
line-height: 1.6;
color: #334155;
}

.rister-carousel-progress {
position: relative;
margin: 0 auto;
width: 100%;
max-width: 250px;
height: 4px;
background: #e0e0e0;
border-radius: 2px;
}

.rister-carousel-progress::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 2px;
background: rgba(255, 255, 255, 0.5);
transform: translateX(-50%);
}

@media (max-width: 979px) {
.rister-carousel-progress::before {
display: none;
}
}

.rister-progress-bar {
height: 100%;
background: #000;
border-radius: 2px;
width: 0%;
transition: width 0.25s ease;
}

@media (max-width: 1024px) {
.rister-card {
flex: 0 0 45%;
}
.rister-reasons {
padding-top: 0;
}
}

@media (max-width: 767px) {
.rister-reasons {
padding-left: 16px;
padding-right: 16px;
}

.rister-container {
max-width: 100%;
padding-right: 0;
}

.rister-card {
flex: 0 0 85%;
}

.rister-carousel {
gap: 16px;
padding-bottom: 20px;
overflow-x: hidden;
}

.rister-carousel-progress {
max-width: 200px;
}

.rister-card-title {
margin: 16px 16px 8px;
font-size: 1rem;
}

.rister-card-text {
margin: 0 16px 16px;
font-size: 0.9rem;
}
}

/*Section tarifs*/
.rister-pricing-section ul,
.rister-pricing-section li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.rister-pricing-section li:before {
    display: none !important;
}

.rister-pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 25px;
}

.rister-plus-symbol {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #e0e4e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 400;
    color: #3b93a3;
    align-self: center;
    line-height: 1;
}

.rister-pricing-card {
    background: #fff;
    border: 2px solid #e0e4e9;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.rister-pricing-card.featured {
    border-color: #3b93a3;
}

.rister-pricing-card.rister-plus {
    border-color: #2d7a88;
    background: linear-gradient(to bottom, #fff 0%, #f0fbfc 100%);
}

.rister-card-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #3b93a3;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.rister-card-badge.plus {
    background: #2d7a88;
}

.rister-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3a4a;
    margin-top: 8px;
}

.rister-card-subtitle {
    font-size: .85rem;
    color: #666;
    margin-top: 4px;
}
.rister-card-price {
    font-size: 26px;
    font-weight: 700;
    color: #3b93a3;
    margin: 15px 0 6px;
    line-height: 1.3;
}

.rister-card-price .from {
    font-size: .4em;
    font-weight: 500;
    color: #666;
}

.rister-card-price-label {
    font-size: .85rem;
    color: #666;
    margin-bottom: 18px;
}

.rister-features-list {
    list-style: none !important;
    padding: 0 !important;
}

.rister-features-list li {
    padding: 8px 0 8px 28px !important;
    position: relative;
    color: #1a3a4a;
    font-size: .85rem;
    line-height: 1.5;
    list-style: none !important;
    margin: 0 !important;
}

.rister-features-list li::before {
    content: "✓" !important;
    display: block !important;
    position: absolute;
    left: 0;
    top: 6px;
    color: #3b93a3;
    font-weight: bold;
    font-size: 1.1em;
}

.rister-pricing-card.rister-plus .rister-features-list li::before {
    content: "+" !important;
    color: #2d7a88;
    font-size: 1.3em;
    font-weight: 700;
}

.rister-features-list li strong {
    color: #1a3a4a;
}

.rister-features-section-title {
    font-size: .75rem;
    font-weight: 700;
    color: #3b93a3;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding-bottom: 6px;
    margin-top: 20px;
    border-bottom: 2px solid #3b93a3;
}

@media(max-width: 600px) {
    .rister-pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rister-plus-symbol {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        margin: 0 auto;
    }
}

/*content show more*/
.et-show-more-content {
position: relative;
max-height: 220px;
overflow: hidden;
}

.et-show-more-content::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 80px;
pointer-events: none;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
}

.et-show-more-content.is-open {
max-height: none;
}

.et-show-more-content.is-open::after {
display: none;
}

.et-show-more-toggle {
cursor: pointer;
}