@font-face {
    font-family: 'Brown Sugar';
    src: url('fonts/brown-sugar.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #0b0b0b;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* ========================================================
   NAVIGATION (DESKTOP & MOBILE SCROLLABLE)
   ======================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 50px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.6) 70%, transparent 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-sizing: border-box;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-logo {
    font-family: 'Brown Sugar', sans-serif !important;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 0.15em;
    font-weight: normal;
    text-transform: none;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 300;
    transition: opacity 0.3s, color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links a:hover {
    color: #E26D9B;
    opacity: 1;
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0b url('assets/website/hero.webp') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(11, 11, 11, 0.6) 60%, #0b0b0b 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 880px;
}

.hero-content h1 {
    font-family: 'Brown Sugar', sans-serif !important;
    font-size: clamp(3.8rem, 8.5vw, 6.8rem);
    font-weight: normal;
    letter-spacing: 0.06em;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(11px, 2vw, 13px);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 42px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.hero-btn {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    text-decoration: none;
    padding: 13px 38px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 30px;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: rgba(11, 11, 11, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-btn:hover {
    border-color: #E26D9B;
    background: rgba(226, 109, 155, 0.15);
    transform: translateY(-2px);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.hero-scroll-cue:hover {
    opacity: 1;
}

.hero-scroll-cue span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #ffffff;
    font-weight: 300;
}

.scroll-line {
    width: 1px;
    height: 25px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================================
   STRUCTURE DES SECTIONS & TITRES
   ======================================================== */
.page-section {
    position: relative;
    padding: 100px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px auto;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #E26D9B;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E26D9B, #F29BC0);
    margin: 18px auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 14px;
    font-weight: 300;
}

/* ========================================================
   SECTION LOGOS
   ======================================================== */
.trust-section {
    background-color: #0b0b0b;
    overflow: hidden;
    padding-top: 70px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.slider-track {
    display: flex;
    gap: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    animation: scrollLogos 30s linear infinite;
    flex-shrink: 0;
}

.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 130px;
    flex-shrink: 0;
}

.logo-card {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.logo-card.logo-card-mango {
    width: 100px;
    height: 100px;
    padding: 10px;
}

.logo-card.transparent {
    background-color: transparent;
    padding: 0;
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-card.transparent img {
    border-radius: 20px;
    object-fit: cover;
}

.logo-item:hover .logo-card {
    transform: scale(1.04);
}

.logo-name {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ========================================================
   SECTION STATISTIQUES (GLASS & ROSE)
   ======================================================== */
.stats-section {
    background-color: #0d0d0d;
}

.insights-glass-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(226, 109, 155, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kpi-card.active-pink {
    border-color: rgba(226, 109, 155, 0.4);
    background: linear-gradient(180deg, rgba(226, 109, 155, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.kpi-title {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.kpi-number {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.kpi-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.kpi-subtext {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.pink-dot { background-color: #E26D9B; }
.soft-pink-dot { background-color: #F29BC0; }

.insights-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.insights-three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.insight-header h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: #ffffff;
}

.badge-total {
    font-size: 10px;
    letter-spacing: 0.05em;
    color: #E26D9B;
    background: rgba(226, 109, 155, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.data-bars-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.bar-labels .val {
    font-weight: 500;
    color: #ffffff;
}

.bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    width: 100%;
}

.bar-track.mini {
    height: 4px;
    flex: 1;
    margin: 0 15px;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
}

.pink-fill {
    background-color: #E26D9B;
}

.soft-pink-fill {
    background-color: #F29BC0;
}

.gender-split {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gender-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gender-pct {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.gender-name {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.age-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.age-row span { min-width: 80px; }
.age-row .val { min-width: 45px; text-align: right; font-weight: 500; color: #ffffff; }

/* ========================================================
   SECTION AVIS CLIENTS (DÉFILEMENT FLUIDE VERS LA DROITE)
   ======================================================== */
.reviews-section {
    background-color: #0b0b0b;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}

.reviews-slider-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    padding-left: 30px;
    padding-top: 15px;
    padding-bottom: 25px;
    animation: scrollReviewsRight 38s linear infinite;
    flex-shrink: 0;
}

.reviews-slider-wrapper:hover .reviews-track {
    animation-play-state: paused;
}

.review-card {
    width: 380px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 109, 155, 0.35);
    background: rgba(255, 255, 255, 0.035);
}

.review-quote {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

.review-author strong {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffff;
}

.review-author span {
    font-size: 10px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

@keyframes scrollReviewsRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* ========================================================
   PAGE À PROPOS (ABOUT)
   ======================================================== */
.about-container {
    max-width: 1000px;
    margin: 160px auto 60px auto;
    padding: 0 25px;
}

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

.about-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 80px;
}

.about-text {
    flex: 1.2;
    font-size: 14px;
    text-align: justify;
    display: flex;
    flex-direction: column;
}

.about-text p {
    margin-bottom: 18px;
}

.btn-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-about {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 34px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    background: rgba(226, 109, 155, 0.12);
    border: 1px solid #E26D9B;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-about:hover {
    background: #E26D9B;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 109, 155, 0.3);
}

.btn-about.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.btn-about.btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.about-image-wrapper {
    flex: 0.8;
    max-width: 380px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* SECTION MODÈLE PHOTO */
.model-section {
    max-width: 1100px;
    margin: 0 auto 90px auto;
    padding: 0 25px;
}

.model-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.model-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 30px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.model-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 109, 155, 0.4);
    background: rgba(255, 255, 255, 0.03);
}

.model-card-tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E26D9B;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.model-card h3 {
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.model-card p {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

/* ========================================================
   SECTION SETUP TECHNIQUE & MATÉRIEL
   ======================================================== */
.gear-section {
    max-width: 1100px;
    margin: 0 auto 90px auto;
    padding: 0 25px;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.gear-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 30px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gear-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 109, 155, 0.4);
    background: rgba(255, 255, 255, 0.03);
}

.gear-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.gear-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(226, 109, 155, 0.1);
    border: 1px solid rgba(226, 109, 155, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gear-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.gear-icon-svg {
    width: 22px;
    height: 22px;
    stroke: #E26D9B;
}

.gear-header-text {
    display: flex;
    flex-direction: column;
}

.gear-tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E26D9B;
    font-weight: 500;
    margin-bottom: 3px;
    display: block;
}

.gear-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
    color: #ffffff;
}

.gear-card p {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    margin-top: 6px;
}

/* SECTION ÉDUCATIVE UGC */
.ugc-guide-section {
    max-width: 1100px;
    margin: 0 auto 100px auto;
    padding: 0 25px;
}

.ugc-intro-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(226, 109, 155, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin-bottom: 50px;
    text-align: center;
}

.ugc-intro-card h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
}

.ugc-intro-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.ugc-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 109, 155, 0.35);
}

.pillar-num {
    font-size: 2rem;
    font-weight: 600;
    color: #E26D9B;
    margin-bottom: 15px;
    display: block;
}

.pillar-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

.pillar-desc {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

.comparison-wrapper {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 60px;
    overflow-x: auto;
}

.comparison-title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #E26D9B;
    font-weight: 500;
    margin-bottom: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    text-align: left;
}

.comparison-table th {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td {
    padding: 18px 15px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 300;
    line-height: 1.6;
}

.comparison-table tr.highlight-ugc {
    background: rgba(226, 109, 155, 0.05);
}

.comparison-table tr.highlight-ugc td {
    color: #ffffff;
    font-weight: 400;
}

.tag-pill {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tag-top { background: rgba(226, 109, 155, 0.2); color: #E26D9B; }
.tag-mid { background: rgba(255, 255, 255, 0.1); color: rgba(255,255,255,0.7); }
.tag-low { background: rgba(255, 255, 255, 0.05); color: rgba(255,255,255,0.4); }

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

.process-step {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 25px 20px;
}

.step-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E26D9B;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.step-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 11.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ========================================================
   PORTFOLIO UGC — CONTENEUR, FILTRES, GRILLE & MODAL
   ======================================================== */
.portfolio-container {
    max-width: 1200px;
    margin: 160px auto 80px auto;
    padding: 0 30px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 45px;
}

.portfolio-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 12px;
}

.portfolio-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}

.filter-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-top: 10px;
    padding-bottom: 14px;
    width: 100%;
    box-sizing: border-box;
}

.filter-menu::-webkit-scrollbar { display: none; }
.filter-menu { -ms-overflow-style: none; scrollbar-width: none; }

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
    font-weight: 400;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-sizing: border-box;
}

.filter-btn:hover, .filter-btn.active {
    border-color: #E26D9B;
    color: #ffffff;
    background-color: rgba(226, 109, 155, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(226, 109, 155, 0.25);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    row-gap: 45px;
}

.video-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.video-card.hidden { display: none !important; }

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background-color: #151515;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-card:hover .video-wrapper {
    transform: translateY(-4px);
    border-color: rgba(226, 109, 155, 0.4);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    background-color: #151515;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
    transform: scale(1.08);
}

.play-icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(226, 109, 155, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.play-svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.video-info {
    margin-top: 15px;
    text-align: left;
}

.video-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E26D9B;
    margin-bottom: 5px;
    font-weight: 500;
    display: block;
}

.video-title-text {
    font-size: 12.5px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 20px;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-wrapper {
    position: relative;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.modal-video-container {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 75vh;
    border-radius: 20px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(226, 109, 155, 0.3);
}

.modal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-details {
    text-align: center;
    width: 100%;
}

.modal-details .modal-category {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E26D9B;
    font-weight: 500;
}

.modal-details h3 {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: 400;
    margin-top: 4px;
}

.modal-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.modal-btn:hover {
    background: #E26D9B;
    border-color: #E26D9B;
    transform: scale(1.1);
}

.modal-close {
    top: -60px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.modal-prev {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-next {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px 45px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.footer a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #E26D9B;
}

.footer-socials {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.95;
}

.mail-svg-icon {
    stroke: #ffffff;
    fill: none;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.social-item span {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.social-item:hover {
    transform: translateY(-3px);
}

.social-item:hover .social-icon {
    transform: scale(1.15);
    opacity: 1;
}

.social-item:hover .mail-svg-icon {
    stroke: #E26D9B;
}

.social-item:hover span {
    color: #E26D9B;
}

/* ========================================================
   RESPONSIVE MOBILE
   ======================================================== */
@media (max-width: 1024px) {
    .insights-three-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .gear-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .model-card-grid {
        grid-template-columns: 1fr;
    }
    .ugc-pillars-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .about-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .about-text {
        text-align: left;
    }
    .btn-container {
        flex-direction: column;
        justify-content: center;
    }
    .btn-about {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 35px;
    }
    .filter-menu {
        justify-content: flex-start;
        padding-left: 10px;
        padding-right: 10px;
    }
    .modal-prev {
        left: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        width: 44px;
        height: 44px;
    }
    .modal-next {
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 18px;
        gap: 12px;
    }

    .nav-logo {
        font-size: 19px;
    }

    /* MENU COULISSANT HORIZONTALEMENT SUR MOBILE */
    .nav-links {
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: 4px 6px 4px 10px;
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 95%, transparent 100%);
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }
    .nav-links {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .nav-links a {
        font-size: 10.5px;
        letter-spacing: 0.12em;
    }
    
    .hero {
        background-position: center 20%;
    }
    .hero-content {
        padding: 0 16px;
    }
    .hero-subtitle {
        letter-spacing: 0.2em;
        margin-bottom: 35px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        gap: 12px;
    }
    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }
    .hero-scroll-cue {
        display: none;
    }

    .page-section {
        padding: 60px 16px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    
    .insights-glass-container {
        padding: 24px 16px;
        border-radius: 18px;
        gap: 20px;
    }
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .insights-row-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .reviews-section {
        padding-left: 0;
        padding-right: 0;
    }
    .review-card {
        width: 300px;
        padding: 26px 20px;
    }
    .reviews-track {
        gap: 20px;
        padding-left: 20px;
    }

    .footer {
        flex-direction: column;
        gap: 35px;
        text-align: center;
        padding: 45px 20px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-socials {
        gap: 35px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .about-container {
        margin-top: 130px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .comparison-wrapper {
        padding: 20px 15px;
    }
    .portfolio-container {
        margin-top: 130px;
        padding: 0 20px;
    }
    .video-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .modal-close {
        top: -45px;
        right: 5px;
    }
    .modal-video-container {
        max-height: 70vh;
    }
}