/* ============================================
   FONTS
   ============================================ */
@font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    width: 100%;
    background: #0D0D2B;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', 'Garet', sans-serif;
    color: #1A1A2E;
    background: #0D0D2B;
    overflow-x: clip;
    overscroll-behavior: none;
    line-height: 1.6;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

main {
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.btn-arrow {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

.btn-primary {
    background: #3B3BF9;
    color: #fff;
    border: 2px solid #3B3BF9;
}

.btn-primary:hover {
    background: #2929d6;
    border-color: #2929d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 59, 249, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: #1A1A2E;
    border: 1.5px solid #1A1A2E;
}

.btn-outline-dark:hover {
    background: #1A1A2E;
    color: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    transition: padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease, mix-blend-mode 0s;
}

.site-header.header-blended {
    mix-blend-mode: difference;
}

.site-header.header-dark-text .header-logo .logo-img {
    filter: brightness(0) saturate(100%);
}

.site-header.header-dark-text .header-cta {
    color: #150D3A;
    border-color: #150D3A;
}

.site-header.header-dark-text .burger-btn {
    color: #150D3A;
    border-color: #150D3A;
}

.site-header.header-dark-text .burger-btn .burger-icon span {
    background: #150D3A;
}

.site-header.header-dark-text .lang-switcher {
    border-color: #150D3A;
}

.site-header.header-dark-text .lang-switcher a {
    color: #150D3A;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.menu-open {
    mix-blend-mode: normal;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 22px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-header.hide-right .header-right {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.7rem;
}

.burger-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    color: #fff;
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 1001;
}

.burger-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
}

.burger-icon span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.burger-btn.active .burger-icon span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
}

.burger-btn.active .burger-icon span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang-switcher a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    line-height: normal;
}

.lang-switcher a:hover {
    color: #fff;
}

.lang-switcher a.active {
    color: #fff;
}

.lang-switcher .lang-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
}


/* ============================================
   FULLSCREEN NAV
   ============================================ */
.fullscreen-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 85vw;
    height: 100vh;
    background: #0D0D2B;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 50px 50px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0.5s;
}

.fullscreen-nav.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0s;
}

.nav-content {
    text-align: left;
}

.nav-links li {
    overflow: hidden;
}

.nav-links a {
    display: inline-block;
    font-family: 'Garet', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    padding: 10px 0;
    transition: all 0.4s ease;
    transform: translateX(30px);
    opacity: 0;
}

.fullscreen-nav.active .nav-links a {
    transform: translateX(0);
    opacity: 1;
}

.fullscreen-nav.active .nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.fullscreen-nav.active .nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.fullscreen-nav.active .nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.fullscreen-nav.active .nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.fullscreen-nav.active .nav-links li:nth-child(5) a { transition-delay: 0.3s; }
.fullscreen-nav.active .nav-links li:nth-child(6) a { transition-delay: 0.35s; }

.nav-links a:hover {
    opacity: 0.5;
}

.nav-footer {
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: left;
}

.nav-footer a {
    transition: color 0.3s ease;
}

.nav-footer a:hover {
    color: #fff;
}

.nav-contact p {
    margin-bottom: 4px;
}

.nav-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.nav-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: #fff;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #151540 0%, #0D0D2B 50%, #08081e 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-img {
    width: clamp(250px, 50vw, 600px);
    height: auto;
    display: block;
    margin: 0 auto 20px;
    clip-path: inset(0 100% 0 0);
    animation: revealLeftToRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

@keyframes revealLeftToRight {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

.hero-logo {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7rem);
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0 auto 30px;
    text-align: center;
}

.hero-title {
    font-family: 'Garet', sans-serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: #fff;
    line-height: 1.4;
    margin-bottom: 40px;
}

.hero-cta {
    font-size: 0.75rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollWheelMove 2s ease-in-out infinite;
}

@keyframes scrollWheelMove {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MEDIA VIDEO SECTIONS
   ============================================ */
.media-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0D0D2B;
    animation: videoPulse 2s ease-in-out infinite;
}

.video-background.loaded {
    animation: none;
}

@keyframes videoPulse {
    0%, 100% { background: #0D0D2B; }
    50% { background: #151540; }
}

.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

.media-logo-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.media-video.in-view .media-logo-overlay {
    opacity: 1;
    transform: translateY(0);
}

.media-logo-overlay img {
    height: clamp(60px, 7vw, 100px);
    width: auto;
    filter: brightness(0) invert(1);
}

.media-logo-small img {
    height: clamp(40px, 5vw, 70px);
}

.media-stats {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right;
}

.stat-item {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media-video.in-view .stat-item {
    opacity: 1;
    transform: translateX(0);
}

.media-video.in-view .stat-item:nth-child(1) { transition-delay: 0.2s; }
.media-video.in-view .stat-item:nth-child(2) { transition-delay: 0.4s; }
.media-video.in-view .stat-item:nth-child(3) { transition-delay: 0.6s; }

.stat-number {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-top: 4px;
}

.media-cta {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media-video.in-view .media-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* ============================================
   TESTIMONIALS INTRO
   ============================================ */
.testimonials-intro {
    padding: 80px 60px 0;
    background: #fff;
}

.testimonials-intro-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonials-intro-tag {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #0D0D2B;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.testimonials-intro-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #0D0D2B;
}

.testimonials-intro-right p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

.testimonials-intro-right strong {
    color: #0D0D2B;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 60px 40px 80px;
    background: #fff;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-count {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5rem);
    color: #0D0D2B;
    line-height: 1;
}

.testimonials-title {
    font-family: 'Garet', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #0D0D2B;
    margin-top: 8px;
    margin-bottom: 20px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: inline-flex;
    gap: 2px;
    background: #0D0D2B;
    padding: 6px 10px;
    border-radius: 4px;
}

.stars .star {
    color: #fff;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.95rem;
    color: #666;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -8px;
}

.carousel-track {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 8px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    transition: all 0.4s ease;
    background: #fff;
}

.testimonial-card:hover {
    border-color: #c0c0c0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.card-content {
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #333;
}

.read-more-link {
    color: #3B3BF9;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.read-more-link:hover {
    opacity: 0.7;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #0D0D2B;
}

.author-info {
    font-size: 0.85rem;
    color: #1A1A2E;
}

.card-stars {
    display: flex;
    gap: 2px;
    background: #0D0D2B;
    padding: 5px 8px;
    border-radius: 4px;
    width: fit-content;
}

.card-stars .star {
    color: #fff;
    font-size: 0.85rem;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 8px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #0D0D2B;
    transform: scale(1.2);
}

.carousel-arrows {
    display: flex;
    gap: 8px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #1A1A2E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A2E;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #1A1A2E;
    color: #fff;
}

/* ============================================
   KEY NUMBERS SECTION
   ============================================ */
.key-numbers {
    position: relative;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0D0D2B;
}

.key-numbers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.key-numbers-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.key-numbers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 43, 0.7);
}

.key-numbers-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.key-numbers .clients-count,
.key-numbers .testimonials-title {
    color: #fff;
}

.key-numbers-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    padding: 0 40px;
}

.key-number-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 70px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.key-numbers.in-view .key-number-card {
    opacity: 1;
    transform: translateY(0);
}

.key-numbers.in-view .key-number-card:nth-child(2) {
    transition-delay: 0.2s;
}

.key-number {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.key-number-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   MEDIA PARTNERS SECTION
   ============================================ */
.media-partners {
    padding: 100px 40px 80px;
    background: #fff;
    overflow: hidden;
}

.media-partners-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-eyebrow {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #3B3BF9;
    text-transform: uppercase;
    line-height: 1.1;
}

.section-title-large {
    font-family: 'Garet', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #1A1A2E;
    margin-top: 4px;
}

.header-cta-dark {
    background: #3B3BF9;
    color: #fff;
    border: 2px solid #3B3BF9;
}

.header-cta-dark:hover {
    background: #2929d6;
    border-color: #2929d6;
}

.partners-carousel {
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-card {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    background: #1a1a2e;
    color: #fff;
    transition: all 0.5s ease;
}

.partner-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.partner-card:hover .partner-card-bg {
    transform: scale(1.05);
}

.partner-card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 30, 60, 0.3) 0%, rgba(13, 13, 43, 0.85) 100%);
    display: flex;
    align-items: flex-start;
    padding: 28px;
    z-index: 1;
}

.partner-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.partner-name {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.partner-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    padding-right: 50px;
}

.partner-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    position: absolute;
    right: 28px;
    bottom: 28px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-arrow {
    background: #fff;
    color: #0D0D2B;
    border-color: #fff;
}

.partners-controls {
    margin-top: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0D0D2B;
    color: #fff;
    padding-top: 80px;
    width: 100%;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-heading {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-about p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-contact a {
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-ctas .btn-primary {
    width: 100%;
    justify-content: center;
}

.footer-ctas .btn-outline-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    justify-content: center;
}

.footer-ctas .btn-outline-dark:hover {
    background: #fff;
    color: #1A1A2E;
    border-color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 100px 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3B3BF9;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 59, 249, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2929d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 59, 249, 0.45);
}

/* ============================================
   L'AGENCE PAGE - HERO
   ============================================ */
.agence-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.agence-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.agence-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 43, 0.55);
    z-index: 1;
}

.agence-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.agence-breadcrumb {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.agence-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.agence-breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

.agence-hero-title {
    font-family: 'Garet', sans-serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: #fff;
    line-height: 1.4;
    margin-bottom: 16px;
}

.agence-hero-logo {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7rem);
    color: #fff;
    letter-spacing: 0.02em;
}

/* ============================================
   L'AGENCE PAGE - TABS SECTION
   ============================================ */
.agence-tabs-section {
    padding: 60px 60px 100px;
    background: #000;
}

.agence-tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.agence-tab-buttons-inner {
    display: inline-flex;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    gap: 0;
}

.agence-tab-btn {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333;
    padding: 14px 28px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.agence-tab-btn.active {
    color: #fff;
    background: #3B3BF9;
}

.agence-tab-btn:hover:not(.active) {
    color: #000;
}

.agence-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
}

.agence-tab-content {
    display: none;
}

.agence-tab-content.active {
    display: block;
    animation: tabFadeIn 0.4s ease forwards;
}

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

.agence-tabs-left {
    padding: 50px;
    order: 2;
}

.tab-content-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.agence-tab-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.tab-ctas {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.valeur-item {
    margin-bottom: 28px;
}

.valeur-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.agence-tabs-right {
    order: 1;
}

.agence-tab-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    display: block;
}

/* ============================================
   LEGAL PAGES (CGU, Mentions Légales)
   ============================================ */
.legal-hero {
    padding: 180px 60px 60px;
    background: radial-gradient(ellipse at center, #151540 0%, #0D0D2B 50%, #08081e 100%);
    text-align: center;
}

.legal-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #fff;
    margin-top: 16px;
}

.legal-content {
    padding: 60px 60px 100px;
    background: #fff;
}

.legal-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #0D0D2B;
    margin-top: 48px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.legal-content h3 {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0D0D2B;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.legal-content .legal-subtitle {
    font-size: 1.05rem;
    color: #0D0D2B;
    margin-bottom: 32px;
}

.legal-content strong {
    color: #0D0D2B;
}

.legal-content a {
    color: #3B3BF9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #0D0D2B;
    text-decoration: underline;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow-x: clip;
    overflow-y: visible;
    padding-bottom: 40px;
    padding-top: 120px;
    box-sizing: border-box;
}

.careers-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.careers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.careers-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 24px;
}

.careers-hero-logo {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.careers-values {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.careers-values-clip {
    max-width: 1400px;
    margin: 0 auto;
}

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

.careers-value-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.value-card-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.careers-value-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.careers-values-arrow {
    display: none;
}

.careers-jobs {
    padding: 80px 60px 100px;
    background: #fff;
}

.careers-jobs-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.careers-jobs-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #0D0D2B;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.careers-jobs-title em {
    font-style: italic;
    font-weight: 800;
}

.job-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 28px;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.job-card-image {
    width: 180px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.job-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.job-card-content {
    min-width: 0;
}

.job-department {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: #3B3BF9;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.job-department-green {
    background: #22c55e;
}

.job-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0D0D2B;
    margin-bottom: 8px;
}

.job-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    gap: 16px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #888;
}

.job-meta-item svg {
    color: #888;
}

.job-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.job-actions .btn {
    justify-content: center;
}

.careers-discover {
    text-align: center;
    margin-top: 40px;
}

/* Contact Modal */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.contact-modal-overlay.active {
    display: flex;
}

.contact-modal {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

.contact-modal-close:hover {
    color: #000;
}

.contact-modal-title {
    font-family: 'Garet', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-modal-title em {
    font-style: italic;
    font-weight: 800;
    font-family: 'Garet', sans-serif;
    color: #0D0D2B;
}

.contact-modal-subtitle {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.contact-modal-form .form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-modal-form .form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-align: left;
}

.contact-modal-form .form-field input,
.contact-modal-form .form-field textarea {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f2f2f5;
    box-sizing: border-box;
    transition: background 0.2s ease;
}

.contact-modal-form .form-field input:focus,
.contact-modal-form .form-field textarea:focus {
    outline: none;
    background: #e8e8f0;
}

.contact-modal-form .form-field textarea {
    width: 100%;
    resize: vertical;
    min-height: 120px;
}

.contact-modal-form .form-submit {
    width: auto;
    margin-top: 8px;
    padding: 10px 32px;
    font-size: 0.85rem;
}

.form-status {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    min-height: 1.2em;
}

.form-status.success {
    color: #22c55e;
}

.form-status.error {
    color: #ef4444;
}

@media (max-width: 768px) {
    .contact-modal {
        padding: 36px 24px;
    }

    .contact-modal-title {
        font-size: 1.5rem;
    }

}

/* ============================================
   PARTICIPER PAGE
   ============================================ */
.participer-hero {
    padding: 180px 60px 60px;
    background: radial-gradient(ellipse at center, #151540 0%, #0D0D2B 50%, #08081e 100%);
    text-align: center;
}

.participer-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.participer-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.participer-hero-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    color: #fff;
    line-height: 1.2;
}

.participer-form-section {
    padding: 80px 60px 80px;
    background: #fff;
}

.participer-form-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.participer-form-left {
    display: flex;
}

.participer-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.participer-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #0D0D2B;
    line-height: 1.15;
    margin-bottom: 24px;
}

.participer-title em {
    font-style: italic;
    font-weight: 800;
}

.participer-subtitle {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: #3B3BF9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

.participer-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-field {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.form-field:first-child {
    border-top: 1px solid #eee;
}

.form-field label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0D0D2B;
}

.form-field input,
.form-field select {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    background: #f9f9fb;
    color: #0D0D2B;
    transition: border-color 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #3B3BF9;
    background: #fff;
}

.form-field input::placeholder {
    color: #aaa;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-hint {
    font-weight: 400;
    font-size: 0.8rem;
    color: #999;
}

.media-multiselect {
    position: relative;
}

.media-multiselect-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    background: #f9f9fb;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #0D0D2B;
    transition: border-color 0.3s ease;
    min-height: 44px;
}

.media-multiselect-trigger:hover {
    border-color: #3B3BF9;
}

.media-multiselect.open .media-multiselect-trigger {
    border-color: #3B3BF9;
    border-radius: 30px 30px 0 0;
}

.media-multiselect-placeholder {
    color: #999;
}

.media-multiselect-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    flex: 1;
}

.media-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(59, 59, 249, 0.1);
    color: #3B3BF9;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.media-tag-remove {
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    opacity: 0.7;
}

.media-tag-remove:hover {
    opacity: 1;
}

.media-multiselect-arrow {
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.media-multiselect.open .media-multiselect-arrow {
    transform: rotate(180deg);
}

.media-multiselect-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #3B3BF9;
    border-top: none;
    border-radius: 0 0 20px 20px;
    z-index: 100;
    max-height: 250px;
    overflow: hidden;
    flex-direction: column;
}

.media-multiselect.open .media-multiselect-dropdown {
    display: flex;
}

.media-search {
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    outline: none;
    background: #f9f9fb;
}

.media-options {
    overflow-y: auto;
    max-height: 200px;
}

.media-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #0D0D2B;
    transition: background 0.2s ease;
}

.media-option:hover {
    background: #f0f0ff;
}

.media-option input[type="checkbox"] {
    accent-color: #3B3BF9;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.media-option input:checked + span {
    color: #3B3BF9;
    font-weight: 600;
}

.media-option.hidden {
    display: none;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    background: #f9f9fb;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: #3B3BF9;
    background: #fff;
}

.phone-code-select {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #0D0D2B;
    border: none;
    border-right: 1px solid #e0e0e0;
    background: transparent;
    outline: none;
    padding: 12px 8px 12px 16px;
    cursor: pointer;
    flex-shrink: 0;
    max-width: 170px;
}

.phone-input-wrapper input {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    flex: 1;
    min-width: 0;
}

.phone-input-wrapper input:focus {
    border: none !important;
}

.form-submit {
    width: 100%;
    margin-top: 32px;
    padding: 18px 32px;
    font-size: 0.9rem;
    border-radius: 30px;
    text-align: center;
    justify-content: center;
}

.form-required-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   PARTNER DETAIL PAGE
   ============================================ */
.partner-hero {
    padding: 180px 60px 80px;
    background: #fff;
    text-align: center;
}

.partner-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.partner-hero-logo {
    max-width: 320px;
    height: auto;
    margin: 100px auto 24px;
    display: block;
}

.partner-hero-tagline {
    font-family: 'Garet', sans-serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: #150D3A;
    font-style: italic;
}

.partner-hero .agence-breadcrumb,
.partner-hero .agence-breadcrumb a {
    color: #150D3A;
}

.partner-hero .agence-breadcrumb a:hover {
    color: #3B3BF9;
}

.partner-hero .breadcrumb-sep {
    color: rgba(21, 13, 58, 0.4);
}

.partner-logo-lg {
    height: 50px;
}

.partner-logo-sm {
    height: 25px;
}

.partner-logo-xl {
    height: 65px;
}

.partner-logo-white {
    filter: none;
}

.partner-logo-invert {
    filter: none;
    mix-blend-mode: normal;
}

/* ============================================
   PARTNER DETAIL - TABBED SECTION
   ============================================ */
.partner-tabs-section {
    background: #fff;
}

.partner-tabs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 80px;
    text-align: center;
}

.partner-tab-filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 10px;
    background: #150D3A;
    border-radius: 50px;
    padding: 6px;
    margin-top: 60px;
    margin-bottom: 10px;
}

.partner-tab-btn {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.partner-tab-btn:hover {
    color: #fff;
}

.partner-tab-btn.active {
    background: #fff;
    color: #1a1a2e;
}

.partner-tab-panel {
    display: none;
    animation: tabFadeIn 0.5s ease;
    text-align: left;
}

.partner-tab-panel.active {
    display: block;
}

/* Image Slider + Cards Wrapper */
.partner-tab-content-wrap {
    position: relative;
    margin-top: 40px;
}

.partner-slider {
    position: relative;
    width: 100%;
    margin-top: 20px;
    border-radius: 16px;
    background: #e8e8ee;
}

.partner-slider-track {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
}

.partner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.partner-slide.active {
    opacity: 1;
}

.partner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partner-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.partner-slider-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.partner-slider-btn.slider-prev {
    left: 16px;
}

.partner-slider-btn.slider-next {
    right: 16px;
}

.partner-slider-thumbs {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.partner-slider-thumb {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-slider-thumb.active {
    border-color: #fff;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.partner-slider-thumb:hover {
    opacity: 1;
}

.partner-slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Info Cards Carousel (positioned inside slider) */
.partner-info-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    z-index: 2;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.partner-info-cards::-webkit-scrollbar {
    display: none;
}

.partner-info-cards .partner-info-card {
    flex: 0 0 calc(33.333% - 11px);
    scroll-snap-align: start;
    min-width: 280px;
}

.partner-info-card {
    background: rgba(80, 80, 80, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-info-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.partner-info-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.partner-info-icon svg {
    stroke: #fff;
}

.partner-info-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.partner-info-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.partner-info-card p.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-info-card p.expanded {
    display: block;
    max-height: none;
    overflow-y: visible;
}

.partner-info-link {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.partner-info-link:hover {
    opacity: 0.7;
}


.partner-section-label {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3B3BF9;
    margin-bottom: 32px;
}

.partner-cta-section {
    padding: 80px 60px;
    background: #fff;
    text-align: center;
}

.partner-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.partner-cta-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #0D0D2B;
    margin-bottom: 32px;
}

.partner-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   NOS MEDIAS PAGE - HERO
   ============================================ */
.medias-hero {
    padding: 180px 60px 80px;
    background: radial-gradient(ellipse at center, #151540 0%, #0D0D2B 50%, #08081e 100%);
    text-align: center;
}

.medias-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.medias-hero-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-top: 16px;
}

/* ============================================
   NOS MEDIAS PAGE - FILTERS & GRID
   ============================================ */
.medias-section {
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.medias-filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 40px;
    background: #150D3A;
    border-radius: 50px;
    padding: 6px;
}

.filter-btn {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: #fff;
}

.filter-btn.active {
    background: #fff;
    color: #1a1a2e;
}

.medias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.medias-grid .partner-card {
    flex: none;
}

.partner-card.filter-hidden {
    display: none;
}

/* ============================================
   WHATSAPP STICKY BUTTON
   ============================================ */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
    padding: 180px 60px 80px;
    background: radial-gradient(ellipse at center, #151540 0%, #0D0D2B 50%, #08081e 100%);
    text-align: center;
}

.blog-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.blog-hero-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-top: 16px;
}

.blog-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-filters {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.blog-filters-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-filter-select {
    padding: 10px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-family: 'Garet', sans-serif;
    font-size: 0.85rem;
    background: #fff;
    color: #1a1a2e;
    cursor: pointer;
    min-width: 180px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231a1a2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-filter-select:focus {
    outline: none;
    border-color: #4a3aff;
}

.blog-search-wrapper {
    position: relative;
}

.blog-search-input {
    padding: 10px 18px 10px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-family: 'Garet', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    color: #1a1a2e;
    min-width: 220px;
    width: 100%;
}

.blog-search-input:focus {
    outline: none;
    border-color: #4a3aff;
}

.blog-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.blog-clear-filters {
    padding: 10px 20px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-family: 'Garet', sans-serif;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-clear-filters:hover {
    border-color: #4a3aff;
    color: #4a3aff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(74, 58, 255, 0.10);
}

/* Featured first card spans full width */
.blog-card.blog-card-featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.blog-card.blog-card-featured .blog-card-image {
    flex: 0 0 55%;
    aspect-ratio: auto;
    min-height: 360px;
}

.blog-card.blog-card-featured .blog-card-content {
    padding: 40px;
    justify-content: center;
}

.blog-card.blog-card-featured .blog-card-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.blog-card.blog-card-featured .blog-card-excerpt {
    -webkit-line-clamp: 4;
    font-size: 0.95rem;
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.blog-card-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-card-badge {
    padding: 4px 12px;
    background: #4a3aff;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-date {
    font-size: 0.8rem;
    color: #999;
}

.blog-card-title {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a3aff;
    text-transform: none;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-link {
    gap: 12px;
}

.blog-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 1.1rem;
    color: #999;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.blog-page-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    font-family: 'Garet', sans-serif;
    font-size: 0.9rem;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-page-btn:hover {
    border-color: #4a3aff;
    color: #4a3aff;
}

.blog-page-btn.active {
    background: #4a3aff;
    border-color: #4a3aff;
    color: #fff;
}

/* ============================================
   BLOG DETAIL PAGE
   ============================================ */
.blog-detail-hero {
    padding: 180px 60px 60px;
    background: radial-gradient(ellipse at center, #151540 0%, #0D0D2B 50%, #08081e 100%);
    text-align: center;
}

.blog-detail-hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-detail-badge {
    padding: 4px 12px;
    background: #4a3aff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.blog-detail-title {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.3;
}

.blog-detail-featured {
    max-width: 900px;
    margin: 5px auto 0;
    position: relative;
    z-index: 2;
    padding: 0 60px;
    overflow: visible;
    border-radius: 16px;
}

.blog-detail-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    margin-top: -20px;
}

/* Two-column layout: sidebar + content */
.blog-detail-layout {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 60px 80px;
    gap: 48px;
}

.blog-detail-sidebar {
    flex: 0 0 260px;
    position: relative;
}

.blog-detail-sidebar-inner {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.blog-sidebar-author {
    margin-bottom: 24px;
}

.blog-sidebar-author-label {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.blog-sidebar-author-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-sidebar-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-sidebar-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 700;
    font-size: 0.9rem;
}

.blog-sidebar-author-name {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #1a1a2e;
    text-transform: uppercase;
}

.blog-sidebar-social {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.blog-sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #1a1a2e;
    transition: color 0.3s;
}

.blog-sidebar-social a:hover {
    color: #4a3aff;
}

.blog-sidebar-newsletter {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 0;
}

.blog-sidebar-newsletter-title {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.blog-sidebar-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 12px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
}

.blog-sidebar-newsletter input[type="email"]:focus {
    border-color: #4a3aff;
}

.blog-sidebar-newsletter button {
    width: 100%;
    padding: 12px;
    background: #4a3aff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.blog-sidebar-newsletter button:hover {
    background: #3a2ae0;
}

.blog-sidebar-newsletter-privacy {
    font-size: 0.7rem;
    color: #999;
    margin-top: 12px;
    line-height: 1.4;
}

.blog-sidebar-newsletter-privacy a {
    color: #4a3aff;
    text-decoration: underline;
}

.blog-detail-body {
    flex: 1;
    min-width: 0;
}

.blog-detail-body h2 {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin: 40px 0 16px;
}

.blog-detail-body h3 {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 32px 0 12px;
}

.blog-detail-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #444;
    line-height: 1.8;
    list-style: disc;
}

.blog-detail-body ol {
    list-style: decimal;
}

.blog-detail-body li {
    margin-bottom: 8px;
}

.blog-detail-body strong {
    color: #1a1a2e;
}

.blog-detail-body a {
    color: #3B3BF9;
    text-decoration: underline;
}

.blog-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.85rem;
    overflow-x: auto;
    display: block;
}

.blog-detail-body tbody {
    display: table;
    width: 100%;
}

.blog-detail-body th,
.blog-detail-body td {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

/* Vidéos intégrées (YouTube/Vimeo via l'éditeur) : plein cadre, responsive 16:9 */
.blog-detail-body .ql-video,
.blog-detail-body iframe,
.ql-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 220px;
    border: 0;
    border-radius: 12px;
    margin: 24px 0;
}

.blog-detail-body th {
    background: #150D3A;
    color: #fff;
    font-weight: 600;
}

.blog-detail-body tr:nth-child(even) {
    background: #f9f9fb;
}

.blog-detail-body td:first-child {
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}

.blog-detail-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}

.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 32px;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.blog-detail-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4a3aff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.blog-detail-author-info span {
    display: block;
}

.blog-detail-author-name {
    font-weight: 700;
    color: #1a1a2e;
}

.blog-detail-author-label {
    font-size: 0.85rem;
    color: #999;
}

.blog-related {
    background: #f5f5fa;
    padding: 60px;
    position: relative;
}

.blog-related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.blog-related-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-related h2 {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0;
}

.blog-related-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #4a3aff;
    color: #fff;
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
}

.blog-related-cta:hover {
    background: #3a2ae0;
}

.blog-related-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.blog-related-grid::-webkit-scrollbar {
    display: none;
}

.blog-related-grid .blog-card {
    flex: 0 0 calc(33.333% - 16px);
    width: calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    box-sizing: border-box;
    scroll-snap-align: start;
}

.blog-carousel-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.blog-carousel-arrow {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    cursor: pointer;
    pointer-events: auto;
    padding: 0;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: opacity 0.3s, box-shadow 0.3s;
}

.blog-carousel-arrow:hover {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.blog-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.blog-carousel-dot.active {
    background: #1a1a2e;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .careers-values {
        padding: 0 20px;
    }

    .careers-values-inner {
        gap: 12px;
    }

    .careers-value-card {
        padding: 24px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-section {
        padding: 40px 30px;
    }

    .blog-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-related-grid .blog-card {
        flex: 0 0 calc(50% - 12px);
        width: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .partner-tabs-wrapper {
        padding: 0 40px 60px;
    }

    .partner-cta-section {
        padding: 60px 40px;
    }

    .medias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .medias-section {
        padding: 40px;
    }

    .medias-filters {
        background: none;
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .filter-btn {
        font-size: 0.7rem;
        padding: 10px 20px;
        border: 2px solid #150D3A;
        border-radius: 50px;
        color: #150D3A;
    }

    .filter-btn:hover {
        color: #150D3A;
        background: rgba(21,13,58,0.08);
    }

    .filter-btn.active {
        background: #150D3A;
        border-color: #150D3A;
        color: #fff;
    }

    .filter-btn.active:hover {
        color: #fff;
    }

    .agence-tabs-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .agence-tabs-right {
        order: -1;
    }

    .agence-tab-image {
        max-height: 400px;
    }

    .agence-tabs-section {
        padding: 40px 40px 80px;
    }

    .agence-tabs-left {
        padding: 40px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }

    .partner-card {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .media-stats {
        right: 30px;
    }

    .stat-number {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    .key-numbers-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .key-number-card {
        padding: 40px 60px;
    }

    .partner-slider-track {
        aspect-ratio: 4 / 3;
    }

    .partner-info-cards {
        padding: 20px;
    }

    .job-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-card-image {
        width: 100%;
        height: 220px;
    }

    .job-actions {
        flex-direction: row;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 20px 50px;
    }

    .blog-section {
        padding: 30px 20px;
    }

    .blog-filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-filter-select,
    .blog-search-input {
        min-width: unset;
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card.blog-card-featured {
        flex-direction: column;
    }

    .blog-card.blog-card-featured .blog-card-image {
        flex: none;
        aspect-ratio: 16 / 10;
        min-height: unset;
    }

    .blog-card.blog-card-featured .blog-card-content {
        padding: 24px;
    }

    .blog-card.blog-card-featured .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-detail-hero {
        padding: 140px 20px 40px;
    }

    .blog-detail-featured {
        padding: 0 20px;
    }

    .blog-detail-layout {
        flex-direction: column;
        padding: 32px 20px 60px;
        gap: 32px;
    }

    .blog-detail-sidebar {
        flex: none;
    }

    .blog-detail-sidebar-inner {
        position: static;
    }

    .blog-detail-body {
        padding: 0;
    }

    .blog-related {
        padding: 40px 20px;
    }

    .blog-related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .blog-related-grid .blog-card {
        flex: 0 0 calc(50% - 12px);
        width: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .blog-carousel-arrows {
        left: 10px;
        right: 10px;
    }

    .testimonials-intro {
        padding: 60px 20px 0;
    }

    .testimonials-intro-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-intro-tag {
        font-size: 1.6rem;
    }

    .testimonials-intro-subtitle {
        font-size: 1.4rem;
    }

    .legal-hero {
        padding: 140px 20px 40px;
    }

    .legal-hero h1 {
        font-size: 1.8rem;
    }

    .legal-content {
        padding: 40px 20px 60px;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    .careers-hero {
        padding-bottom: 60px;
        overflow: hidden;
    }

    .careers-hero-logo {
        font-size: 2.8rem;
    }

    .careers-hero-title {
        font-size: 1.5rem;
    }

    .careers-values {
        position: relative;
        padding: 0 40px;
        margin-top: 40px;
        margin-bottom: 30px;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .careers-values-clip {
        overflow: hidden;
    }

    .careers-values-inner {
        display: flex;
        gap: 20px;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .careers-value-card {
        min-width: 0;
        flex: 0 0 100%;
        padding: 24px;
        box-sizing: border-box;
    }

    .careers-values-arrow {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 4px;
        cursor: pointer;
        color: #fff;
        z-index: 3;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .careers-arrow-prev {
        left: 8px;
    }

    .careers-arrow-next {
        right: 8px;
    }

    .careers-values-arrow:hover {
        opacity: 1;
    }

    .careers-jobs {
        padding: 40px 20px 60px;
    }

    .job-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .job-card-image {
        width: 100%;
        height: 200px;
    }

    .job-actions {
        flex-direction: column;
        gap: 10px;
    }

    .job-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .participer-hero {
        padding: 140px 20px 40px;
    }

    .participer-hero-title {
        font-size: 1.6rem;
    }

    .participer-form-section {
        padding: 40px 20px 60px;
    }

    .participer-form-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .participer-title {
        font-size: 2rem;
    }

    .participer-image {
        max-height: 400px;
    }

    .form-field {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .partner-hero {
        padding: 140px 20px 50px;
    }

    .partner-hero-logo {
        max-width: 200px;
    }

    .partner-tabs-wrapper {
        padding: 0 20px 40px;
    }

    .partner-tab-btn {
        font-size: 0.7rem;
        padding: 10px 20px;
        border: 2px solid #150D3A;
        background: transparent;
        color: #150D3A;
    }

    .partner-tab-btn:hover {
        color: #150D3A;
        background: rgba(21,13,58,0.08);
    }

    .partner-tab-btn.active {
        background: #150D3A;
        border-color: #150D3A;
        color: #fff;
    }

    .partner-tab-btn.active:hover {
        color: #fff;
    }

    .partner-tab-filters {
        background: none;
        border-radius: 0;
        padding: 0;
        margin-top: 40px;
        margin-bottom: 10px;
        display: flex;
        gap: 8px;
    }

    .partner-slider {
        border-radius: 12px;
        margin-top: 24px;
    }

    .partner-slider-track {
        aspect-ratio: 3 / 4;
    }

    .partner-info-cards {
        gap: 12px;
    }

    .partner-info-cards .partner-info-card {
        flex: 0 0 100%;
        min-width: unset;
        scroll-snap-align: start;
    }

    .partner-info-cards {
        scroll-padding-left: 20px;
        gap: 20px;
    }



    .partner-info-card {
        padding: 24px;
    }

    .partner-slider-btn {
        width: 36px;
        height: 36px;
    }

    .partner-slider-btn.slider-prev {
        left: 10px;
    }

    .partner-slider-btn.slider-next {
        right: 10px;
    }

    .partner-slider-thumbs {
        display: none;
    }

    .partner-chevron {
        position: absolute;
        top: 30%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.3);
        border: none;
        border-radius: 50%;
        padding: 10px;
        cursor: pointer;
        color: #fff;
        z-index: 3;
        opacity: 0.85;
        transition: opacity 0.3s ease, background 0.3s ease;
    }

    .partner-chevron:active {
        opacity: 1;
        background: rgba(0,0,0,0.5);
    }

    .partner-chevron.chevron-prev {
        left: 10px;
    }

    .partner-chevron.chevron-next {
        right: 10px;
    }

    .partner-cards-nav {
        position: absolute;
        bottom: 70px;
        background: none;
        border: none;
        padding: 4px;
        cursor: pointer;
        color: #fff;
        z-index: 3;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .partner-cards-nav:active {
        opacity: 1;
    }

    .partner-cards-nav.cards-prev {
        left: 4px;
    }

    .partner-cards-nav.cards-next {
        right: 4px;
    }

    .partner-cta-section {
        padding: 50px 20px;
    }

    .partner-cta-buttons {
        flex-direction: column;
    }

    .partner-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .medias-hero {
        padding: 140px 20px 50px;
    }

    .medias-section {
        padding: 30px 20px;
    }

    .medias-grid {
        grid-template-columns: 1fr;
    }

    .medias-filters {
        background: none;
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .filter-btn {
        font-size: 0.7rem;
        padding: 10px 20px;
        border: 2px solid #150D3A;
        background: transparent;
        color: #150D3A;
    }

    .filter-btn:hover {
        color: #150D3A;
        background: rgba(21,13,58,0.08);
    }

    .filter-btn.active {
        background: #150D3A;
        border-color: #150D3A;
        color: #fff;
    }

    .filter-btn.active:hover {
        color: #fff;
    }

    .agence-tabs-section {
        padding: 30px 16px 60px;
    }

    .agence-tab-buttons {
        padding: 0 16px;
    }

    .agence-tab-buttons-inner {
        width: 100%;
    }

    .agence-tab-btn {
        font-size: 0.6rem;
        padding: 10px 8px;
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }

    .agence-tabs-left {
        padding: 30px 20px;
    }

    .tab-content-title {
        font-size: 1.3rem;
    }

    .tab-ctas {
        flex-direction: column;
    }

    .tab-ctas .btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .agence-tabs-left {
        overflow: hidden;
    }

    .agence-tab-btn {
        flex-shrink: 1;
        min-width: 0;
    }

    .agence-hero-logo {
        font-size: clamp(1.8rem, 8.5vw, 3rem);
    }

    .site-header {
        padding: 16px 20px;
    }

    .header-cta {
        display: none;
    }

    .lang-switcher {
        padding: 9px 16px;
        font-size: 0.65rem;
    }

    .burger-btn {
        padding: 8px 16px;
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .hero-logo {
        font-size: clamp(1.8rem, 8.5vw, 3rem);
    }


    .media-stats {
        right: 20px;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .media-cta {
        bottom: 20px;
        left: 20px;
        right: auto;
        padding: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-color: #fff;
        color: #0D0D2B;
        font-size: 0 !important;
        gap: 0;
    }

    .media-cta .btn-arrow {
        font-size: 1.2rem !important;
    }

    .media-logo-overlay {
        bottom: 80px;
        left: 20px;
    }

    .media-logo-overlay img {
        height: clamp(30px, 8vw, 45px);
    }

    .media-logo-small img {
        height: clamp(22px, 6vw, 35px);
    }

    .testimonials {
        padding: 60px 20px 50px;
    }

    .testimonials-carousel {
        margin: 0;
    }

    .carousel-track {
        padding: 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 24px;
    }

    .carousel-controls {
        padding: 0;
    }

    .media-partners {
        padding: 60px 20px 50px;
    }

    .media-partners-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .partner-card {
        flex: 0 0 100%;
    }

    .key-numbers {
        padding: 40px 0;
    }

    .key-numbers-content {
        flex-direction: row;
        gap: 16px;
    }

    .key-number-card {
        padding: 24px 28px;
    }

    .key-number {
        font-size: 2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-legal span {
        width: 100%;
    }

    .footer-legal a {
        white-space: nowrap;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-ctas {
        align-items: stretch;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .blog-related-grid .blog-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-logo {
        width: auto;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .clients-count {
        font-size: 3rem;
    }

    .section-eyebrow {
        font-size: 1.8rem;
    }

    .section-title-large {
        font-size: 1.3rem;
    }
}
