/* ==========================================
   STYLES POUR LES PAGES
   ========================================== */

/* Page Hero Commun */
.page-hero {
    background: var(--tebior-neutral);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    
    font-size: 3rem;
    font-weight: 400;
    color: var(--tebior-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--tebior-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   PAGE SOLUTIONS
   ========================================== */


.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.icon-circle.blue { background: var(--tebior-lapis-lazuli); }
.icon-circle.green { background: var(--tebior-vert-sapin); }
.icon-circle.orange { background: var(--tebior-orange); }
.icon-circle.red { background: var(--tebior-rouge); }
.icon-circle.pink { background: var(--tebior-vieux-rose); }
.icon-circle.purple { background: var(--tebior-mandarine); }

.solution-card h3 {
    
    font-size: 1.3rem;
    color: var(--tebior-dark);
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-cta-section {
    background: var(--tebior-light);
    padding: 4rem 0;
    text-align: center;
}

.contact-cta-content h2 {
    
    font-size: 2.5rem;
    color: var(--tebior-dark);
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   PAGE RÉFÉRENCES
   ========================================== */

.filters-section {
    background: var(--tebior-neutral);
    padding: 2rem 0;
}

.filters-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid var(--tebior-dark);
    color: var(--tebior-dark);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--tebior-dark);
    color: white;
}

.projects-section {
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    background: var(--tebior-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-card h3 {
    
    font-size: 1.3rem;
    color: var(--tebior-dark);
    margin-bottom: 0.5rem;
}

.project-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

/* ==========================================
   PAGE ACTUALITÉS
   ========================================== */

.news-section {
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-card.featured .news-image {
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--tebior-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    
    font-size: 1.3rem;
    color: var(--tebior-dark);
    margin-bottom: 0.5rem;
}

.news-card.featured .news-title {
    font-size: 1.8rem;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--tebior-primary);
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    text-decoration: underline;
}

.pagination {
    text-align: center;
    margin-top: 3rem;
}

.newsletter-section {
    background: var(--tebior-light);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    
    font-size: 2.5rem;
    color: var(--tebior-dark);
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--tebior-primary);
}

/* ==========================================
   PAGE MÉDIAS
   ========================================== */

.videos-section {
    padding: 4rem 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card.featured {
    grid-column: span 2;
}

.video-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.video-card.featured .video-thumbnail {
    height: 250px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    
    font-size: 1.3rem;
    color: var(--tebior-dark);
    margin-bottom: 0.5rem;
}

.video-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.press-section {
    background: var(--tebior-neutral);
    padding: 4rem 0;
}

.press-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.press-info h3,
.press-resources h3 {
    
    font-size: 1.5rem;
    color: var(--tebior-dark);
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #666;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateX(5px);
}

.resource-icon {
    font-size: 2rem;
}

.resource-content h4 {
    color: var(--tebior-dark);
    margin: 0 0 0.25rem 0;
}

.resource-content p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.press-articles-section {
    padding: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-source {
    color: var(--tebior-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-card h3 {
    
    font-size: 1.3rem;
    color: var(--tebior-dark);
    margin-bottom: 0.5rem;
}

.article-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.article-meta .date {
    color: #888;
}

.read-more {
    color: var(--tebior-primary);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* ==========================================
   PAGE CONTACT
   ========================================== */

.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    
    font-size: 2rem;
    color: var(--tebior-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-text h3 {
    
    font-size: 1.2rem;
    color: var(--tebior-dark);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #666;
    margin: 0;
}

.social-links h3 {
    
    font-size: 1.2rem;
    color: var(--tebior-dark);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h3 {
    
    font-size: 1.5rem;
    color: var(--tebior-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--tebior-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tebior-primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.map-section {
    background: var(--tebior-neutral);
    padding: 4rem 0;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    padding: 4rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    margin: 0.5rem 0;
}

.teams-section {
    padding: 4rem 0;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    
    font-size: 1.3rem;
    color: var(--tebior-dark);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-email {
    color: var(--tebior-primary);
    text-decoration: none;
    font-weight: 500;
}

.team-email:hover {
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .solutions-grid,
    .projects-grid,
    .news-grid,
    .videos-grid,
    .articles-grid,
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured,
    .video-card.featured {
        grid-column: span 1;
    }
    
    .contact-content,
    .press-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .filters-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}




/* ============================= */
/*      SECTION CATALYSEUR       */
/* ============================= */

.tebior-section-catalyseur {
    position: relative;
    background: #f5efe6;
    padding: 100px 0 140px;
    overflow: hidden;
}

/* ----- Fond topographique ----- */

.tebior-catalyseur__topography {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.tebior-catalyseur__topography svg {
    width: 100%;
    height: 100%;
}

/* ----- Wrapper ----- */

.tebior-catalyseur__inner {
    position: relative;
    z-index: 2;
    max-width: 1350px;
    margin: auto;
    padding: 0 40px;
}

/* ----- Supertitle ----- */

.tebior-catalyseur__supertitle {
    color: #005DA4;
    text-align: center;
    font-size: 16px;
    margin-bottom: 12px;
}

/* ----- Title ----- */

.tebior-catalyseur__title {
    font-size: 48px;
    text-align: center;
    font-weight: 300;
    line-height: 1.2;
    color: #2f3031;
    margin: 0;
}
@media (min-width: 992px) {
    .tebior-catalyseur__title {
        font-size: 60px;
    }
}

/* ----- Séparateur vertical ----- */

.tebior-catalyseur__vertical-separator {
    width: 1px;
    height: 80vw;
    position: absolute;
    background: #7AAED5;
    left: 50%;
    margin: 40px auto;
}

/* ----- Layout général ----- */

.tebior-catalyseur__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 165px;
}
@media (min-width: 992px) {
    .tebior-catalyseur__content {
        grid-template-columns: 1fr 2fr;
        gap: 20px;
    }
}

/* ----- Colonne gauche ----- */

.tebior-catalyseur__column-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: auto;
}

.tebior-catalyseur__text {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    color: #2f3031;

}

.tebior-catalyseur__button {
    border: 1px solid #005DA4;
    background: transparent;
    padding: 16px 24px;
    color: #005DA4;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: fit-content;
    transition: 0.3s;
    line-height: 20px;
}
.tebior-catalyseur__button:hover {
    background: #005DA4;
    color: #fff;
}

.tebior-catalyseur__handwriting {
    color: #7AAED5;
    font-size: 46px;
    line-height: 1.4;
    font-family: "La Belle Aurore", cursive;
    margin-top: 50px;
    transform: rotate(-2.278deg);
    text-align: center;
}

/* ----- Colonne droite (masques images) ----- */

.tebior-catalyseur__column-right {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Masque image : container */
.tebior-catalyseur__image-mask {
    position: relative;
    width: 80%;
    overflow: hidden;
    flex-shrink: 0;
}

/* Masques personnalisés */
/* .tebior-catalyseur__image-mask--left {
    border-radius: 120px 0 0 0;
    margin-right: -6vw;
    
}
.tebior-catalyseur__image-mask--center {
    border-radius: 0 0 0 120px;
    z-index: 5;
    top: -80px;
}
.tebior-catalyseur__image-mask--right {
    border-radius: 0 120px 0 0;
    margin-left: -6vw;
   bottom: -80px;

} */

.tebior-catalyseur__image-mask--right-b {
    border-radius: 0px 0px 120px 0px;
    margin-left: -6vw;
   bottom: -80px;
}

/* Image */
.tebior-catalyseur__image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.c-header {
  display: block;
  width: 100%;
}

.u-a5 {
  font-family: Arial;
  font-size: 37px;
  line-height: 35px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.u-b4 {
  font-family: Arial;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.3px;
  font-weight: normal;
  color: #fff;
}

a {
  text-decoration: none;
}

.u-media-wrapper {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 0;
}
.u-media-wrapper.u-media-wrapper--16-9 {
  padding-bottom: 56.25%;
}

.c-gradient-overlay {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 49% 50%, rgba(2, 21, 25, 0.3), rgba(2, 21, 25, 0.6));
}

.c-mouse-vertical-carousel {
  position: relative;
  overflow: hidden;
}
.c-mouse-vertical-carousel__list {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}
.c-mouse-vertical-carousel__list-item a {
  display: block;
  padding-bottom: 25px;
  padding-top: 25px;
  padding-left: 54.1666666667%;
}
.c-mouse-vertical-carousel__eyebrow {
  position: relative;
  padding-bottom: 12px;
}
.c-mouse-vertical-carousel__eyebrow span {
  position: absolute;
  left: -30px;
  top: 2px;
}
.c-mouse-vertical-carousel__title {
  max-width: 450px;
}
.c-mouse-vertical-carousel__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}