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

:root {
    --orange: #FF6B35;
    --black: #1A1A1A;
    --off-white: #F4F4F0;
    --gray: #666;
    --gray-light: #F8F8F8;
    --spacing: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) * 3);
}

/* ===================================
   HEADER MODERNE
   =================================== */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.header-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-modern {
    max-width: 1280px;
    margin: 0 auto;
    padding: calc(var(--spacing) * 2) calc(var(--spacing) * 4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--black);
    transition: all 0.2s ease;
}

.logo-modern:hover {
    opacity: 0.8;
}

.logo-modern img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.2s ease;
}

.nav-links-modern {
    display: flex;
    gap: 44px;
    list-style: none;
    align-items: center;
}

.nav-ctas-group {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-links-modern a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    color: #333;
    transition: all 0.2s ease;
}

.nav-links-modern a:not(.btn-nav):not(.btn-nav-soutenir):hover {
    color: var(--orange);
}

.nav-links-modern a:not(.btn-nav):not(.btn-nav-soutenir)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
}

.nav-links-modern a:not(.btn-nav):not(.btn-nav-soutenir):hover::after {
    width: 100%;
}

.nav-links-modern a.active {
    color: var(--orange);
    font-weight: 600;
}

.nav-links-modern a.active::after {
    width: 100%;
}

.btn-nav-soutenir {
    background: var(--orange);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-nav-soutenir:hover {
    background: #e55a2b;
}

.btn-nav-soutenir::after {
    display: none;
}

.btn-nav {
    background: transparent;
    color: var(--black);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background: var(--black);
    color: white;
}

.btn-nav::before {
    display: none;
}

.btn-nav::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* ===================================
   HERO PHOTO
   =================================== */
.hero-photo {
    position: relative;
    min-height: calc(100vh - 72px - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: calc(72px + 20px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
}

.hero-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-photo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.6) 40%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

/* Floating shapes for depth */
.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--orange);
    top: -200px;
    right: -200px;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    bottom: -100px;
    left: -100px;
    animation: floatShape 10s ease-in-out infinite alternate-reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: white;
    top: 30%;
    left: 10%;
    animation: floatShape 6s ease-in-out infinite alternate;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-photo-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: calc(var(--spacing) * 3);
}

/* Hero tag */
.hero-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 4);
    animation: fadeInUp 0.6s ease both;
    letter-spacing: 0.5px;
}

/* Animated title lines */
.hero-title-animated {
    color: white;
    margin-bottom: calc(var(--spacing) * 3);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-line {
    display: block;
}

.hero-line-1 {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.2s;
}

.hero-line-2 {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.4s;
}

.hero-line-3 {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.6s;
}

.hero-accent {
    color: var(--orange);
    text-shadow: 0 4px 40px rgba(255, 107, 53, 0.4);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing) * 5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.8s;
    line-height: 1.8;
}

.hero-photo-ctas {
    display: flex;
    gap: calc(var(--spacing) * 2);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 1s;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 1.4s;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
    color: inherit;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
    transition: border-color 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-arrow {
    border-color: white;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* Button arrow */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(4px);
}

/* Section tags */
.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===================================
   BUTTONS MODERN
   =================================== */
.btn-modern {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary-modern {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary-modern:hover {
    background: white;
    color: var(--black);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* ===================================
   STATS ANIMATED
   =================================== */
.stats-animated {
    background: white;
    padding: calc(var(--spacing) * 8) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing) * 4);
    text-align: center;
}

.stat-animated {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding: calc(var(--spacing) * 5) calc(var(--spacing) * 2);
}

.stat-animated:nth-child(1) { transition-delay: 0.1s; }
.stat-animated:nth-child(2) { transition-delay: 0.25s; }
.stat-animated:nth-child(3) { transition-delay: 0.4s; }

.stat-animated.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number-animated {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
}

.stat-plus-animated {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
}

.stat-label-animated {
    display: block;
    color: var(--gray);
    font-weight: 500;
    margin-top: calc(var(--spacing) * 1);
    font-size: 0.95rem;
}

/* ===================================
   ACTIONS CARDS
   =================================== */
.actions-cards {
    padding: calc(var(--spacing) * 10) 0 calc(var(--spacing) * 12) 0;
    background: var(--gray-light);
}

.section-header-modern {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 6);
}

.section-header-modern h2 {
    margin-bottom: calc(var(--spacing) * 2);
}

.section-header-modern p {
    color: var(--gray);
    font-size: 1.125rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing) * 4);
}

.action-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.action-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.action-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-card:hover .action-card-image img {
    transform: scale(1.08);
}

.action-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    transition: background 0.4s ease;
}

.action-card:hover .action-card-overlay {
    background: linear-gradient(to bottom, transparent 20%, rgba(255, 107, 53, 0.7) 100%);
}

.action-card-content {
    padding: calc(var(--spacing) * 4);
}

.action-card-content h3 {
    margin-bottom: calc(var(--spacing) * 1);
    color: var(--black);
    transition: color 0.3s ease;
}

.action-card:hover .action-card-content h3 {
    color: var(--orange);
}

.action-card-content p {
    color: var(--gray);
    margin-bottom: calc(var(--spacing) * 2);
}

.action-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    display: inline-block;
}

.action-card:hover .action-link {
    opacity: 1;
    transform: translateX(0);
}

.action-arrow {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   WHO SECTION
   =================================== */
.who-section {
    padding: calc(var(--spacing) * 12) 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing) * 8);
    align-items: center;
}

.who-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.who-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}


.who-image:hover img {
    transform: scale(1.03);
}

.who-content h2 {
    margin-bottom: calc(var(--spacing) * 3);
    color: var(--black);
}

.who-lead {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: calc(var(--spacing) * 3);
}

.who-content p {
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--gray);
}

.who-content strong {
    color: var(--orange);
}

.who-content .btn-modern {
    margin-top: calc(var(--spacing) * 4);
}

/* ===================================
   SPONSORS SECTION
   =================================== */
.sponsors-section {
    padding: calc(var(--spacing) * 10) 0 calc(var(--spacing) * 8) 0;
    background: white;
    overflow: hidden;
}

.sponsors-section h2 {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 5);
}

.carousel-track-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: calc(var(--spacing) * 8);
    animation: scroll 40s linear infinite;
    width: max-content;
}

.sponsor-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing) * 3);
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.sponsor-logo img,
.sponsor-logo object {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sponsor-logo:hover img,
.sponsor-logo:hover object {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

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

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

/* ===================================
   CTA MODERN
   =================================== */
.cta-modern {
    padding: calc(var(--spacing) * 12) 0;
    background: linear-gradient(135deg, #0f0f0f 0%, var(--black) 50%, #2a2a2a 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-modern .container {
    position: relative;
    z-index: 1;
}

.cta-modern h2 {
    color: white;
    margin-bottom: calc(var(--spacing) * 2);
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-modern p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: calc(var(--spacing) * 5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: calc(var(--spacing) * 2);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER MODERN
   =================================== */
.footer-modern {
    background: var(--black);
    color: rgba(255, 255, 255, 0.8);
    padding: calc(var(--spacing) * 8) 0 calc(var(--spacing) * 4) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing) * 6);
    margin-bottom: calc(var(--spacing) * 6);
}

.footer-col h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: calc(var(--spacing) * 1);
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-logo {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: calc(var(--spacing) * 2);
}

.footer-socials {
    display: flex;
    gap: calc(var(--spacing) * 2);
    margin-top: calc(var(--spacing) * 2);
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: calc(var(--spacing) * 4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger delays for cards */
.fade-in:nth-child(2) { transition-delay: 0.15s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.45s; }

/* ===================================
   RESPONSIVE
   =================================== */
/* ===================================
   PAGES INTERNES
   =================================== */
.hero-internal {
    padding: calc(var(--spacing) * 16) 0 calc(var(--spacing) * 8) 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, white 100%);
    margin-top: 72px;
    text-align: center;
}

.hero-internal h1 {
    margin-bottom: calc(var(--spacing) * 3);
}

.hero-internal-lead {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: calc(var(--spacing) * 12) 0;
    background: white;
}

.content-intro {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 8);
}

.content-intro h2 {
    margin-bottom: calc(var(--spacing) * 2);
}

.content-lead {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing) * 4);
}

.content-card {
    background: var(--gray-light);
    padding: calc(var(--spacing) * 4);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: white;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.content-card h3 {
    color: var(--orange);
    margin-bottom: calc(var(--spacing) * 2);
}

/* ===================================
   ACTIONS PAGE
   =================================== */

.action-axe {
    padding: calc(var(--spacing) * 10) 0;
    background: white;
}

.action-axe-alt {
    background: var(--gray-light);
}

.axe-header {
    max-width: 800px;
    margin-bottom: calc(var(--spacing) * 8);
}

.axe-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.axe-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: calc(var(--spacing) * 3);
}

.axe-header-center .axe-title-wrapper {
    justify-content: center;
}

.axe-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--orange);
}

.axe-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0;
    color: var(--black);
    letter-spacing: -0.02em;
}

.axe-header p {
    color: var(--gray);
    font-size: 1.125rem;
    line-height: 1.8;
    padding-left: 76px; /* 56px (circle) + 20px (gap) */
}

.axe-header-center p {
    padding-left: 0;
}

.realisations {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) * 8);
}

.realisation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing) * 8);
    align-items: center;
    background: white;
    border-radius: 32px;
    padding: calc(var(--spacing) * 4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.realisation:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.realisation-reversed .realisation-content {
    order: -1;
}

.realisation-image {
    border-radius: 24px;
    overflow: hidden;
    height: 460px;
    position: relative;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.realisation-content {
    padding: calc(var(--spacing) * 4);
}

.realisation-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--black);
    letter-spacing: -0.02em;
}

.realisation-content p {
    color: var(--gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: calc(var(--spacing) * 3);
}

.realisation-date {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: calc(var(--spacing) * 3);
}

.realisation-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: calc(var(--spacing) * 2);
}

.realisation-meta span {
    background: var(--gray-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.05);
}

.action-axe-alt .realisation-meta span {
    background: white;
}

/* Featured realisation (full width, hero-style) */
.realisation-featured {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 560px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.realisation-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.realisation-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center 30%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.realisation-featured:hover img {
    transform: scale(1.05);
}

.realisation-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.realisation-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: calc(var(--spacing) * 8);
    max-width: 800px;
    width: 100%;
    color: white;
    z-index: 2;
}

.realisation-featured-content .realisation-date {
    background: var(--orange);
    color: white;
}

.realisation-featured-center .realisation-featured-content {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.realisation-featured-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: calc(var(--spacing) * 2);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.realisation-featured-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: calc(var(--spacing) * 4);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.realisation-featured-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.realisation-featured-meta span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.action-photo-break {
    padding: 0;
    margin: 0;
    overflow: hidden;
    max-height: 300px;
}

.action-photo-break img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ===================================
   ASSOCIATION PAGE
   =================================== */

/* Association hero */
.asso-overlay {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.35) 0%, rgba(26, 26, 26, 0.85) 100%) !important;
}

.asso-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: white;
    margin-bottom: calc(var(--spacing) * 2);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
}

.asso-values {
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: calc(var(--spacing) * 1);
}

/* Team member grid */
.team-member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing) * 8);
    align-items: center;
    margin-bottom: calc(var(--spacing) * 10);
}

.team-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.team-photo-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.team-photo-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-photo-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.6) 100%);
    pointer-events: none;
}

.team-role-badge {
    position: absolute;
    bottom: 16px;
    z-index: 2;
    background: var(--orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-role-badge.left { left: 16px; }
.team-role-badge.right { right: 16px; }

.team-member-name {
    font-size: 2.25rem;
    margin-bottom: calc(var(--spacing) * 2);
    font-weight: 800;
    line-height: 1.1;
}

.team-pills {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing) * 1.5);
    margin-bottom: calc(var(--spacing) * 3);
}

.team-pill {
    background: var(--gray-light);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.team-bio {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: calc(var(--spacing) * 3);
}

.team-bio strong {
    color: var(--black);
}

.team-quote {
    border-left: 4px solid var(--orange);
    padding: calc(var(--spacing) * 2) calc(var(--spacing) * 3);
    background: rgba(255, 107, 53, 0.03);
    border-radius: 0 12px 12px 0;
}

.team-quote p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    font-style: italic;
    margin: 0;
}

/* Info cards */
.info-cards-section {
    background: var(--gray-light);
    padding: calc(var(--spacing) * 10) 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing) * 3);
}

.info-card {
    background: white;
    padding: calc(var(--spacing) * 4);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: calc(var(--spacing) * 1);
    font-weight: 700;
}

.info-card p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.info-link {
    color: var(--orange);
    font-weight: 600;
}

/* Team Section Modern */
.team-section-modern {
    padding: calc(var(--spacing) * 15) 0;
    background: white;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: calc(var(--spacing) * 6);
    max-width: 1100px;
    margin: calc(var(--spacing) * 8) auto 0;
}

.team-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.team-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--orange);
}

.team-photo-modern {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.team-photo-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-modern:hover .team-photo-modern img {
    transform: scale(1.08);
}

.team-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.team-content-modern {
    padding: calc(var(--spacing) * 5);
}

.team-content-modern h3 {
    font-size: 1.75rem;
    margin-bottom: calc(var(--spacing) * 1);
    color: var(--black);
}

.team-role-modern {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: calc(var(--spacing) * 3);
}

.team-details {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing) * 2);
    margin-bottom: calc(var(--spacing) * 3);
}

.detail-item {
    background: var(--gray-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--gray);
}

.team-bio-modern {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Info Legal Section */
.info-legal-section {
    padding: calc(var(--spacing) * 12) 0;
    background: var(--gray-light);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing) * 4);
}

.legal-card {
    background: white;
    padding: calc(var(--spacing) * 5);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.legal-icon {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.legal-card h3 {
    color: var(--black);
    margin-bottom: calc(var(--spacing) * 2);
    font-size: 1.25rem;
}

.legal-card p {
    color: var(--gray);
    margin-bottom: calc(var(--spacing) * 1);
}

.legal-card a {
    color: var(--orange);
    font-weight: 600;
}

.legal-card a:hover {
    text-decoration: underline;
}

.team-section {
    padding: calc(var(--spacing) * 12) 0;
    background: var(--gray-light);
}

.section-title-center {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 2);
}

.section-subtitle-center {
    text-align: center;
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: calc(var(--spacing) * 8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing) * 6);
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.team-photo {
    height: 320px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: calc(var(--spacing) * 4);
}

.team-role {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 2);
}

.team-info h3 {
    margin-bottom: calc(var(--spacing) * 1);
}

.team-meta {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.values-section {
    padding: calc(var(--spacing) * 12) 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing) * 6);
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.value-item h3 {
    color: var(--orange);
    margin-bottom: calc(var(--spacing) * 2);
}

.value-item p {
    color: var(--gray);
}

.nav-links-modern a.active {
    color: var(--orange);
    font-weight: 600;
}

/* ===================================
   PAGE ASSOCIATION - NOUVEAU DESIGN
   =================================== */

/* Hero Association */
.hero-asso {
    padding: calc(var(--spacing) * 20) 0 calc(var(--spacing) * 15) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--orange) 100%);
    margin-top: 72px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-asso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26, 26, 26, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.hero-asso .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 3);
    animation: fadeInUp 0.6s ease;
}

.hero-asso h1 {
    color: white;
    margin-bottom: calc(var(--spacing) * 3);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-asso-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

/* Section badges */
.section-badge,
.section-badge-center {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 2);
}

.section-badge-center {
    display: block;
    text-align: center;
}

/* Story Section */
.story-section {
    padding: calc(var(--spacing) * 15) 0;
    background: white;
}

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

.story-section h2 {
    margin-bottom: calc(var(--spacing) * 5);
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: calc(var(--spacing) * 3);
}

.story-text strong {
    color: var(--black);
    font-weight: 600;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
    border-left: 4px solid var(--orange);
    padding: calc(var(--spacing) * 3);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
    margin-top: calc(var(--spacing) * 4);
}

/* Timeline Section */
.timeline-section {
    padding: calc(var(--spacing) * 15) 0;
    background: var(--gray-light);
}

.timeline {
    max-width: 900px;
    margin: calc(var(--spacing) * 8) auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, rgba(255, 107, 53, 0.3) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: calc(var(--spacing) * 8);
    animation: fadeInUp 0.6s ease backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.timeline-year {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: calc(var(--spacing) * 1);
}

.timeline-content h3 {
    color: var(--black);
    margin-bottom: calc(var(--spacing) * 1);
}

.timeline-content p {
    color: var(--gray);
}

/* Founders Section */
.founders-section {
    padding: calc(var(--spacing) * 15) 0;
    background: white;
}

.founders-grid {
    display: grid;
    gap: calc(var(--spacing) * 10);
    max-width: 1100px;
    margin: 0 auto;
}

.founder-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: calc(var(--spacing) * 6);
    align-items: start;
    background: var(--gray-light);
    border-radius: 24px;
    overflow: hidden;
    padding: calc(var(--spacing) * 4);
    transition: all 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.founder-photo-large {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.founder-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-photo-large img {
    transform: scale(1.05);
}

.founder-content {
    padding: calc(var(--spacing) * 2) 0;
}

.founder-role {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 2);
}

.founder-content h3 {
    font-size: 2rem;
    margin-bottom: calc(var(--spacing) * 1);
}

.founder-meta {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: calc(var(--spacing) * 3);
}

.founder-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: calc(var(--spacing) * 3);
}

.founder-quote {
    background: white;
    border-left: 4px solid var(--orange);
    padding: calc(var(--spacing) * 2) calc(var(--spacing) * 3);
    border-radius: 8px;
    font-style: italic;
    color: var(--black);
    font-weight: 500;
    margin-top: calc(var(--spacing) * 3);
}

/* Mission Section Asso */
.mission-section-asso {
    padding: calc(var(--spacing) * 15) 0;
    background: var(--gray-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing) * 4);
    max-width: 1100px;
    margin: calc(var(--spacing) * 8) auto 0;
}

.mission-card-asso {
    background: white;
    padding: calc(var(--spacing) * 5);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.mission-card-asso:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.mission-card-asso h3 {
    color: var(--orange);
    margin-bottom: calc(var(--spacing) * 2);
}

.mission-card-asso p {
    color: var(--gray);
    line-height: 1.7;
}

/* Local Impact Section */
.local-impact-section {
    padding: calc(var(--spacing) * 15) 0;
    background: white;
}

.local-impact-content {
    max-width: 900px;
    margin: 0 auto;
}

.local-impact-text h2 {
    margin-bottom: calc(var(--spacing) * 3);
}

.local-impact-text > p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: calc(var(--spacing) * 5);
    line-height: 1.8;
}

.impact-list {
    list-style: none;
}

.impact-list li {
    display: flex;
    gap: calc(var(--spacing) * 3);
    margin-bottom: calc(var(--spacing) * 5);
    padding: calc(var(--spacing) * 4);
    background: var(--gray-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.impact-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.impact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.impact-list strong {
    display: block;
    color: var(--orange);
    font-size: 1.125rem;
    margin-bottom: calc(var(--spacing) * 1);
}

.impact-list p {
    color: var(--gray);
    line-height: 1.7;
}

/* Help Section */
.help-section {
    padding: calc(var(--spacing) * 15) 0;
    background: var(--gray-light);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing) * 4);
    max-width: 1100px;
    margin: calc(var(--spacing) * 8) auto 0;
}

.help-card {
    background: white;
    padding: calc(var(--spacing) * 5);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--orange);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.help-card h3 {
    color: var(--black);
    margin-bottom: calc(var(--spacing) * 2);
}

.help-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: calc(var(--spacing) * 3);
}

.help-link {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links-modern {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: calc(var(--spacing) * 3);
        gap: calc(var(--spacing) * 2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-links-modern.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-photo {
        min-height: calc(100vh - 72px - 20px);
        margin-top: calc(72px + 10px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }
    
    .hero-title-animated {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-floating-shapes {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 3);
    }
    
    .stat-number-animated {
        font-size: 2.5rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 4);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 4);
    }
    
    /* Association page responsive */
    .hero-asso {
        padding: calc(var(--spacing) * 12) 0 calc(var(--spacing) * 8) 0;
    }
    
    .hero-asso h1 {
        font-size: 1.75rem;
    }
    
    .hero-asso-lead {
        font-size: 1rem;
    }

    /* Actions page responsive */
    .realisation {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 4);
        padding: calc(var(--spacing) * 3);
    }

    .realisation-reversed {
        grid-template-columns: 1fr;
    }

    .realisation-reversed .realisation-content {
        order: 0;
    }

    .realisation-image {
        height: 300px;
    }

    .axe-header {
        margin-bottom: calc(var(--spacing) * 4);
    }

    .axe-header p {
        padding-left: 0;
    }

    .action-axe {
        padding: calc(var(--spacing) * 6) 0;
    }

    .realisation-content {
        padding: calc(var(--spacing) * 2);
    }

    .realisation-content h3 {
        font-size: 1.75rem;
    }

    .action-photo-break,
    .action-photo-break img {
        max-height: 220px;
        height: 220px;
    }

    .realisation-featured {
        height: 460px;
    }

    .realisation-featured-content {
        padding: calc(var(--spacing) * 4);
    }

    .realisation-featured-content h3 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-marker {
        left: 0;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 3);
    }
    
    .founder-photo-large {
        height: 400px;
    }
    
    .mission-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-list li {
        flex-direction: column;
        gap: calc(var(--spacing) * 2);
        text-align: center;
    }

    
    /* New team section responsive */
    .team-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .team-photo-modern {
        height: 350px;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .team-details {
        justify-content: center;
    }
}

/* Association page responsive */
@media (max-width: 992px) {
    .team-member-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-grid.reversed {
        direction: ltr;
    }

    .team-photo-wrap img {
        height: 420px;
    }

    .team-member-name {
        font-size: 1.875rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 2);
    }

    .asso-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 480px) {
    .team-photo-wrap img {
        height: 320px;
    }

    .team-member-name {
        font-size: 1.5rem;
    }

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

    .asso-values {
        font-size: 1.1rem;
    }
}

/* ===================================
   PAGE 4L TROPHY — V5
   =================================== */

/* --- J-X floating badge --- */
.t-jx-badge {
    position: fixed;
    top: 92px;
    right: 24px;
    z-index: 900;
    background: rgba(26,26,26,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    animation: fadeInUp 0.6s ease both 1.6s;
    transition: transform 0.3s ease;
}
.t-jx-badge:hover {
    transform: scale(1.05);
}
.t-jx-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}
.t-jx-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

/* --- reveal on scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======== HERO ======== */
.t-hero {
    position: relative;
    min-height: calc(100vh - 72px - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: calc(72px + 20px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
}
.t-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.t-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.t-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,26,26,0.3) 0%,
        rgba(26,26,26,0.5) 35%,
        rgba(26,26,26,0.92) 100%
    );
    z-index: 1;
}
/* floating shapes */
.t-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.t-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.t-shape-1 {
    width: 600px; height: 600px;
    background: var(--orange);
    top: -200px; right: -200px;
    animation: floatShape 8s ease-in-out infinite alternate;
}
.t-shape-2 {
    width: 400px; height: 400px;
    background: var(--orange);
    bottom: -100px; left: -100px;
    animation: floatShape 10s ease-in-out infinite alternate-reverse;
}
.t-shape-3 {
    width: 200px; height: 200px;
    background: white;
    top: 35%; left: 8%;
    animation: floatShape 6s ease-in-out infinite alternate;
}
/* particles */
.t-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.t-particle {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,107,53,0.5);
    animation: particleUp 9s ease-in infinite;
}
.t-particle:nth-child(2n) {
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.25);
    animation-duration: 11s;
}
.t-particle:nth-child(3n) {
    width: 5px; height: 5px;
    background: rgba(255,107,53,0.3);
    animation-duration: 14s;
}
@keyframes particleUp {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    8% { opacity: 1; transform: translateY(-8vh) scale(1); }
    85% { opacity: 0.4; }
    100% { transform: translateY(-105vh) scale(0.2); opacity: 0; }
}
/* hero content */
.t-hero-content {
    position: relative;
    z-index: 10;
    max-width: 860px;
    padding: 40px 24px 80px;
}
.t-hero-tag {
    display: inline-block;
    background: rgba(255,107,53,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,107,53,0.3);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease both;
    letter-spacing: 0.5px;
}
.t-hero-h1 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.t-hero-l1 {
    display: block;
    font-size: clamp(2rem,5vw,3.5rem);
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease both 0.2s;
}
.t-hero-l2 {
    display: block;
    font-size: clamp(4.5rem,12vw,9rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 6px 40px rgba(255,107,53,0.35);
    animation: fadeInUp 0.8s ease both 0.4s;
}
.t-hero-p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease both 0.6s;
}
/* countdown */
.t-cd {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease both 0.8s;
}
.t-cd-box {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 18px 14px 14px;
    min-width: 78px;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.t-cd-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,107,53,0.3);
}
.t-cd-n {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}
.t-cd-l {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 700;
}
.t-cd-sep {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.2);
    font-weight: 700;
    padding-bottom: 16px;
}
.t-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease both 1s;
}
.t-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 0.8s ease both 1.4s;
    text-decoration: none;
}
.t-scroll-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ======== STATS FLOATING ======== */
.t-stats {
    position: relative;
    z-index: 20;
    margin-top: -50px;
    padding: 0 24px;
    margin-bottom: 20px;
}
.t-stats-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.t-stats-card:hover {
    box-shadow: 0 28px 70px rgba(0,0,0,0.14);
    transform: translateY(-2px);
}
.t-stat {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}
.t-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.t-stat-n {
    display: inline;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--black);
    line-height: 1;
}
.t-stat-u {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    margin-left: 2px;
}
.t-stat-l {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

/* ======== MISSION CARDS ======== */
.t-mission {
    padding: 80px 0 60px;
    background: var(--off-white);
}
.t-title {
    font-size: clamp(2rem,4vw,3rem);
    color: var(--black);
    text-align: center;
    margin-bottom: 16px;
}
.t-sub {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.t-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.t-card {
    background: white;
    border-radius: 24px;
    padding: 36px 30px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.t-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}
.t-card-1::before { background: linear-gradient(180deg, #FF6B35, #ff9f6e); }
.t-card-2::before { background: linear-gradient(180deg, #3B82F6, #93C5FD); }
.t-card-3::before { background: linear-gradient(180deg, #10B981, #6EE7B7); }
.t-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-card-1::after { background: rgba(255,107,53,0.05); }
.t-card-2::after { background: rgba(59,130,246,0.05); }
.t-card-3::after { background: rgba(16,185,129,0.05); }
.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}
.t-card:hover::after {
    transform: scale(1.8);
}
.t-card-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.06;
    position: absolute;
    top: 16px;
    right: 24px;
}
.t-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-card:hover .t-card-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}
.t-card-icon-red {
    background: rgba(255,107,53,0.12);
    color: #FF6B35;
}
.t-card-icon-blue {
    background: rgba(59,130,246,0.12);
    color: #3B82F6;
}
.t-card-icon-green {
    background: rgba(16,185,129,0.12);
    color: #10B981;
}
.t-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}
.t-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0 0 16px;
}
.t-card-badge {
    display: inline-block;
    background: rgba(0,0,0,0.04);
    color: var(--gray);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ======== WAVE DIVIDER ======== */
.t-wave-divider {
    margin-top: -1px;
    line-height: 0;
    background: var(--off-white);
}
.t-wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ======== ROUTE — SCROLL-ANIMATED ======== */
.t-route {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;
}
.t-route::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 85%, rgba(255,107,53,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(255,107,53,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.t-route .container {
    position: relative;
    z-index: 1;
}
.t-route-header {
    text-align: center;
    margin-bottom: 24px;
}
/* Map dot grid handled by SVG pattern */
/* Map */
.t-map {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding: 20px;
}
.t-map-svg {
    width: 100%;
    height: auto;
    display: block;
}
.t-map-path, .t-map-glow {
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
}
/* SVG stop groups */
.t-stop {
    opacity: 0.3;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-stop.active {
    opacity: 1;
}
/* Car */
.t-car {
    position: absolute;
    z-index: 10;
    will-change: left, top, transform;
    pointer-events: none;
}
.t-car-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.35) 0%, transparent 65%);
    pointer-events: none;
}
/* Route progress bar */
.t-route-bar {
    max-width: 600px;
    margin: 28px auto 0;
    position: relative;
}
.t-route-km {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.t-route-km span {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.35rem;
}
.t-route-bar-track {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: visible;
    position: relative;
}
.t-route-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ff9f6e);
    border-radius: 4px;
    width: 0%;
    transition: width 0.05s linear;
    position: relative;
}
.t-route-bar-fill::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 14px rgba(255,107,53,0.8), 0 0 30px rgba(255,107,53,0.4);
}
.t-route-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/* Mobile route */
.t-route-mobile-wrap {
    display: none;
}
.t-route-mobile-header {
    text-align: center;
    margin-bottom: 28px;
}
.t-route-mobile-header .t-title {
    margin-top: 12px;
}
.t-rm-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-left: 2px solid rgba(255,255,255,0.1);
    margin-left: 10px;
    position: relative;
}
.t-rm-last {
    border-left-color: transparent;
}
.t-rm-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--orange);
    border: 2px solid white;
    flex-shrink: 0;
    position: relative;
    margin-left: -17px;
    box-shadow: 0 0 8px rgba(255,107,53,0.4);
}
.t-rm-dot-end {
    width: 16px; height: 16px;
    margin-left: -19px;
    animation: dotPulseEnd 2s ease-in-out infinite;
}
@keyframes dotPulseEnd {
    0%,100% { box-shadow: 0 0 8px rgba(255,107,53,0.4); }
    50% { box-shadow: 0 0 20px rgba(255,107,53,0.8); }
}
.t-rm-item strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}
.t-rm-item span {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ======== TEAM ======== */
.t-team {
    padding: 100px 0;
    background: white;
}
.t-team-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.t-team-left {
    position: relative;
}
.t-team-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.t-team-img-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-team-img-wrap:hover img {
    transform: scale(1.04);
}
.t-team-num {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-team-img-wrap:hover .t-team-num {
    transform: scale(1.1) rotate(-5deg);
}
.t-team-right .section-tag {
    margin-bottom: 12px;
}
.t-member {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-light);
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 10px;
    border-left: 4px solid var(--orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-member:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.t-member-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t-member h4 {
    margin: 0 0 2px;
    font-size: 1.05rem;
    color: var(--black);
}
.t-member p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}
.t-team-desc {
    color: var(--gray);
    line-height: 1.7;
    margin: 20px 0 28px;
    font-size: 1rem;
}
.t-team-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ======== RESPONSIVE 4L ======== */
@media (max-width: 900px) {
    .t-hero {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 24px;
    }
    .t-cards {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
    .t-team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }
    .t-map {
        display: none;
    }
    .t-route-bar {
        display: none;
    }
    .t-route-mobile-wrap {
        display: block;
        padding: 60px 0;
    }
    .t-route-header {
        display: none;
    }
    .t-stats-card {
        flex-wrap: wrap;
        gap: 20px;
        padding: 28px 16px;
    }
    .t-stat-div {
        display: none;
    }
    .t-stat {
        min-width: 40%;
    }
}
@media (max-width: 600px) {
    .t-hero {
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
        min-height: calc(100vh - 72px - 20px);
        margin-top: calc(72px + 10px);
    }
    .t-cd-box {
        min-width: 60px;
        padding: 14px 8px 10px;
    }
    .t-cd-n {
        font-size: 1.6rem;
    }
    .t-hero-l2 {
        font-size: clamp(3.5rem, 16vw, 6rem);
    }
    .t-stats {
        margin-top: -30px;
    }
    .t-stats-card {
        border-radius: 20px;
    }
    .t-stat-n {
        font-size: 1.8rem;
    }
}


/* ======== ITINERAIRE SCROLLYTELLING ======== */
.t-scrolly {
    position: relative;
    height: 600vh;
    background: #09090b;
    margin: 0;
    padding: 0;
}
.t-scrolly-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.t-scrolly-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1e 0%, #09090b 100%);
}
.t-scrolly-hud {
    position: absolute;
    top: 90px;
    left: 40px;
    z-index: 100;
    pointer-events: none;
    max-width: 400px;
}
.t-scrolly-km-hud {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
}
.t-scrolly-bar-tk {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}
.t-scrolly-bar-fl {
    height: 100%;
    width: 0%;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--orange);
}
.t-scrolly-camera {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.t-scrolly-world {
    position: absolute;
    top: 0;
    left: 0;
    width: 2000px;
    height: 2500px;
    transform-origin: 0 0;
    will-change: transform;
}
.t-scrolly-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.t-scrolly-car {
    position: absolute;
    z-index: 50;
    will-change: transform;
}
.car-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,107,53,0.4) 0%, rgba(255,107,53,0) 70%);
    border-radius: 50%;
    z-index: -1;
}
.sh-card {
    position: absolute;
    width: 320px;
    background: rgba(15, 15, 18, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 40;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    pointer-events: none;
    contain: layout style paint;
}
.sh-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255, 107, 53, 0.15);
}
.sh-card h3 {
    font-size: 1.5rem;
    margin: 0 0 4px 0;
    color: var(--orange);
    font-family: "Space Grotesk", sans-serif;
}
.sh-card span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sh-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
}
.final-card.active {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 50px rgba(255, 215, 0, 0.2);
}
.final-card.active h3 {
    color: #ffd700;
}
@media (max-width: 768px) {
    .t-scrolly-hud {
        top: 80px;
        left: 20px;
        right: 20px;
    }
    .sh-card {
        width: 260px;
        padding: 16px;
        /* Optimisation: désactiver les blurs coûteux sur mobile pour les cartes volantes */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(15, 15, 18, 0.98);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
}

/* ======== DECORATIONS CARTE ======== */
.map-deco {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.map-deco.visible {
    opacity: 1;
    transform: scale(1);
}
.map-deco-water .deco-icon {
    animation: waterWave 3s ease-in-out infinite;
}
@keyframes waterWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* Icônes PNG */
.deco-icon {
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.deco-icon.deco-xs { width: 35px; height: auto; opacity: 0.55; }
.deco-icon.deco-sm { width: 48px; height: auto; opacity: 0.6; }
.deco-icon.deco-md { width: 62px; height: auto; opacity: 0.65; }
.deco-icon.deco-lg { width: 78px; height: auto; opacity: 0.7; }
.deco-icon.deco-xl { width: 95px; height: auto; opacity: 0.7; }
.deco-icon.deco-wave { width: 70px; height: auto; opacity: 0.35; }
.deco-icon.deco-wave-sm { width: 50px; opacity: 0.28; }
.deco-icon.deco-dune { width: 140px; height: auto; opacity: 0.3; }
.deco-icon.deco-dune-sm { width: 110px; opacity: 0.25; }
.deco-icon.deco-dune-xs { width: 85px; opacity: 0.2; }

/* Voiture PNG */
.car-icon {
    width: 35px;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 0 10px rgba(255,107,53,0.5));
}

.sponsor-logo a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
